This commit is contained in:
guochunsi
2026-01-14 11:41:04 +08:00
parent d0c8ea0223
commit 6055033289
49 changed files with 2043 additions and 1740 deletions

View File

@@ -538,7 +538,7 @@ export default {
//查找所有班级
getClassData(){
getClassListByRole().then(data=>{
this.classList = data.data.data
this.classList = data.data
})
},
sendImg(){
@@ -765,23 +765,23 @@ export default {
init(){
//查询二级学院信息
getDeptList().then(data => {
this.deptList = data.data.data
this.deptList = data.data
})
this.getClassData();
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);
@@ -805,7 +805,7 @@ export default {
chanMajor(){
this.planMajorList=[];
planMajor({groupId: this.dataForm.groupId}).then(data =>{
this.planMajorList = data.data.data;
this.planMajorList = data.data;
});
},
handleFilter(){
@@ -821,8 +821,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
},
@@ -840,7 +840,7 @@ export default {
changeclass(row){
this.changeClassList=[];
getMajorClass(row).then(response => {
this.changeClassList = response.data.data
this.changeClassList = response.data
this.changeClassVisible = true
this.changeForm.id=row.id;
@@ -964,7 +964,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;
});
},