index.vue 403 B

12345678910111213141516171819202122
  1. <template>
  2. <view>
  3. <button class="send-button">从微信导入简历</button>
  4. </view>
  5. </template>
  6. <script setup>
  7. import { ref } from 'vue'
  8. import { getPersonResumeCv } from '@/api/user'
  9. // 获取附件
  10. const attachmentList = ref([])
  11. const getList = async () => {
  12. const data = await getPersonResumeCv()
  13. attachmentList.value = data
  14. }
  15. getList()
  16. </script>
  17. <style scoped lang="scss">
  18. </style>