a
This commit is contained in:
@@ -699,7 +699,7 @@ export default {
|
||||
if (query !== '') {
|
||||
setTimeout(() => {
|
||||
queryTeacherBaseByNo(query).then(response => {
|
||||
this.teacherList = response.data.data
|
||||
this.teacherList = response.data
|
||||
})
|
||||
}, 200);
|
||||
}
|
||||
@@ -910,22 +910,22 @@ export default {
|
||||
init() {
|
||||
//查询二级学院信息
|
||||
getDeptList().then(data => {
|
||||
this.deptList = data.data.data
|
||||
this.deptList = data.data
|
||||
})
|
||||
list().then(data => {
|
||||
this.planList = data.data.data
|
||||
this.planList = data.data
|
||||
this.dataForm.groupId = this.planList[0].id;
|
||||
this.getDataList()
|
||||
this.chanMajor()
|
||||
});
|
||||
getTypeValue('finance_student_source').then(res => {
|
||||
this.eduList = res.data.data
|
||||
this.eduList = res.data
|
||||
})
|
||||
//所有经办人
|
||||
getUserListByRole(ROLE_CODE.ROLE_RECRUIT_SECOND).then(res => {
|
||||
this.auditorList = res.data.data;
|
||||
this.auditorList = res.data;
|
||||
getUserListByRole(ROLE_CODE.ROLE_RECRUIT).then(re => {
|
||||
re.data.data.forEach(r => {
|
||||
re.data.forEach(r => {
|
||||
this.auditorList.push(r)
|
||||
});
|
||||
this.auditorList = this.unique(this.auditorList);
|
||||
@@ -949,7 +949,7 @@ export default {
|
||||
chanMajor() {
|
||||
this.planMajorList = [];
|
||||
planMajor({groupId: this.dataForm.groupId}).then(data => {
|
||||
this.planMajorList = data.data.data;
|
||||
this.planMajorList = data.data;
|
||||
});
|
||||
},
|
||||
handleFilter() {
|
||||
@@ -964,8 +964,8 @@ export default {
|
||||
current: this.pageIndex,
|
||||
size: this.pageSize
|
||||
}, this.dataForm)).then(response => {
|
||||
this.dataList = response.data.data.records
|
||||
this.totalPage = response.data.data.total
|
||||
this.dataList = response.data.records
|
||||
this.totalPage = response.data.total
|
||||
})
|
||||
this.dataListLoading = false
|
||||
},
|
||||
@@ -1065,7 +1065,7 @@ export default {
|
||||
this.lqtzsShow = false;
|
||||
}
|
||||
toWord(row).then(res => {
|
||||
this.pdfPath = "/recruit/file/previewPdf?filePath=" + encodeURIComponent(res.data.data);
|
||||
this.pdfPath = "/recruit/file/previewPdf?filePath=" + encodeURIComponent(res.data);
|
||||
this.lqtzsVisible = true;
|
||||
});
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user