mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-06 09:26:44 +08:00
fix:查询条件枚举值修改
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user