|
@@ -13,7 +13,7 @@
|
|
<div>
|
|
<div>
|
|
<span class="title">附件简历</span>
|
|
<span class="title">附件简历</span>
|
|
<span class="more-text">最多上传5份</span>
|
|
<span class="more-text">最多上传5份</span>
|
|
- <span class="upload--text">上传</span>
|
|
|
|
|
|
+ <span class="upload--text cursor-pointer" @click="handleUpload">上传</span>
|
|
</div>
|
|
</div>
|
|
<div class="d-flex attachment-item my-2 cursor-pointer" v-for="(k, i) in attachmentList" :key="i">
|
|
<div class="d-flex attachment-item my-2 cursor-pointer" v-for="(k, i) in attachmentList" :key="i">
|
|
<v-icon color="primary">mdi-file-account</v-icon>
|
|
<v-icon color="primary">mdi-file-account</v-icon>
|
|
@@ -28,6 +28,8 @@
|
|
|
|
|
|
<script setup>
|
|
<script setup>
|
|
defineOptions({ name: 'personal-center-right'})
|
|
defineOptions({ name: 'personal-center-right'})
|
|
|
|
+import { ref } from 'vue'
|
|
|
|
+import { getPersonResumeCv } from '@/api/resume'
|
|
|
|
|
|
const resumeList = [
|
|
const resumeList = [
|
|
{ icon: 'mdi-upload', title: '置顶简历', desc: '增加更多曝光度' },
|
|
{ icon: 'mdi-upload', title: '置顶简历', desc: '增加更多曝光度' },
|
|
@@ -40,6 +42,12 @@ const attachmentList = [
|
|
{ file_name: '陈芊芊-Web前端开发工程师-15425236412' },
|
|
{ file_name: '陈芊芊-Web前端开发工程师-15425236412' },
|
|
{ file_name: '陈芊芊-Web前端开发工程师-15425236412' }
|
|
{ file_name: '陈芊芊-Web前端开发工程师-15425236412' }
|
|
]
|
|
]
|
|
|
|
+const list = ref([])
|
|
|
|
+const getList = async () => {
|
|
|
|
+ const data = await getPersonResumeCv()
|
|
|
|
+ console.log(data, list.value, 'get-list')
|
|
|
|
+}
|
|
|
|
+getList()
|
|
</script>
|
|
</script>
|
|
|
|
|
|
<style scoped lang="scss">
|
|
<style scoped lang="scss">
|