|
@@ -106,6 +106,7 @@
|
|
|
<p>职务:{{ item.duties }}</p>
|
|
|
</a-timeline-item>
|
|
|
</a-timeline>
|
|
|
+ <a-empty :image="simpleImage" v-if="experienceData.length==0" ></a-empty>
|
|
|
<a-divider orientation="left">附件</a-divider>
|
|
|
<b-upload-file :fileRefId="jobUserInfo.jobUserID" :readonly="true" :multiple="true" style="width: 100%;"
|
|
|
:setFileList="setFileList" :accept="'.pdf,.png,.jpg'"></b-upload-file>
|
|
@@ -125,6 +126,7 @@ import {getJobHuntList} from "@/api/jobUserManager/jobhunt";
|
|
|
import {useUserStore} from "@/store/modules/user";
|
|
|
import crtyptoHelp from "@/utils/crypto";
|
|
|
import BUploadFile from "@/components/file/uploadFile.vue";
|
|
|
+import {Empty} from "ant-design-vue";
|
|
|
|
|
|
const userStore = useUserStore();
|
|
|
const userInfo = ref(userStore.getUserInfo)
|
|
@@ -153,6 +155,7 @@ const jobUserInfo = reactive({
|
|
|
})
|
|
|
// 受教育经历
|
|
|
const educationData = ref<Array<any>>([]);
|
|
|
+const simpleImage = Empty.PRESENTED_IMAGE_SIMPLE;
|
|
|
// 受教育经历表格定义
|
|
|
const educationColumns: TableColumnsType = [
|
|
|
{
|