12345678910111213141516171819202122 |
- <template>
- <view>
- <button class="send-button">从微信导入简历</button>
- </view>
- </template>
- <script setup>
- import { ref } from 'vue'
- import { getPersonResumeCv } from '@/api/user'
- // 获取附件
- const attachmentList = ref([])
- const getList = async () => {
- const data = await getPersonResumeCv()
- attachmentList.value = data
- }
- getList()
- </script>
- <style scoped lang="scss">
- </style>
|