diff --git a/src/components/student/TableStudent.vue b/src/components/student/TableStudent.vue index f7b15950..d87f89cd 100644 --- a/src/components/student/TableStudent.vue +++ b/src/components/student/TableStudent.vue @@ -585,7 +585,7 @@ const hrAuditResultList = ref([ { id: 3, value: 3, - label: "审核通过", + label: "审核已通过", }, { id: 4, @@ -595,19 +595,19 @@ const hrAuditResultList = ref([ ]); const learnStatusList = ref([ + { + id: 0, + value: 0, + label: "未开始", + }, { id: 1, value: 1, - label: "未开始", + label: "进行中", }, { id: 2, value: 2, - label: "进行中", - }, - { - id: 3, - value: 3, label: "已完成", }, ]); @@ -741,7 +741,7 @@ const tablecolumns = ref([ ({ // 1: "报名失败", 2: "审核中", - 3: "审核通过", + 3: "审核已通过", 4: "审核驳回", }[hrAuditResult]), }, @@ -848,7 +848,7 @@ function exportTaskStu() { if(props.isNewEmployee){ window.open( `${process.env.VUE_APP_BASE_API - }/admin/student/exportProjectStudent?type=${1}&taskType=${0}&thirdType=${10}&pid=${props.id}&studentName=${tableParam.value.studentName === null ? '' : tableParam.value.studentName}&studentDepartName=${tableParam.value.studentDepartName === null ? '' : tableParam.value.studentDepartName}&topFlag=${tableParam.value.topFlag === null ? '' : tableParam.value.topFlag}&approvalResults=${tableParam.value.approvalResults === null ? '' : tableParam.value.approvalResults}&studyStatus=${tableParam.value.studyStatus === null ? '' : tableParam.value.studyStatus}&enrollYear=${tableParam.value.enrollYear === null ? '' : tableParam.value.enrollYear}` + }/admin/student/exportProjectStudent?type=${1}&taskType=${0}&thirdType=${10}&pid=${props.id}&studentName=${tableParam.value.studentName === null ? '' : tableParam.value.studentName}&studentDepartName=${tableParam.value.studentDepartName === null ? '' : tableParam.value.studentDepartName}&topFlag=${tableParam.value.topFlag === null ? '' : tableParam.value.topFlag}&approvalResults=${!tableParam.value.approvalResults ? '' : tableParam.value.approvalResults}&studyStatus=${!tableParam.value.studyStatus ? '' : tableParam.value.studyStatus}&enrollYear=${!tableParam.value.enrollYear ? '' : tableParam.value.enrollYear}` ); return; }