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

@@ -822,15 +822,15 @@ export default {
this.areaHAList=[];
//获取数据字典
getDictByType("finance_student_source").then(edu => {
_this.eduList = edu.data.data
_this.eduList = edu.data
//获取数据字典代办费
getDictByType("agency_fee").then(fee => {
_this.agencyFeeList = fee.data.data
_this.agencyFeeList = fee.data
//获取数据字典学费
getDictByType("tuition_fee").then(res => {
_this.tuitionFeeList = res.data.data
_this.tuitionFeeList = res.data
getObj(this.dataForm.id).then(response => {
this.dataForm = response.data.data
this.dataForm = response.data
this.dataForm.scorePhotoList=[];
this.dataForm.graPicList=[];
this.dataForm.yyPicList=[];
@@ -865,7 +865,7 @@ export default {
}
});
listByEdu({groupId: this.dataForm.groupId,degreeOfEducation:this.dataForm.degreeOfEducation}).then(e=>{
_this.planMajorList = e.data.data;
_this.planMajorList = e.data;
if (1 != _this.dataForm.degreeOfEducation) {
_this.gzAuditChange();
}
@@ -888,12 +888,12 @@ export default {
});
//获取招生计划下的学校和分数线
scoreList({groupId:_this.dataForm.groupId}).then(data =>{
_this.schoolCodeList = data.data.data;
_this.schoolCodeList = data.data;
});
let areas = [];
//获取户口所在 省市区
areaList({type: 0}).then(data => {
areas = data.data.data;
areas = data.data;
//省
let pid = "";
areas.forEach(e=>{
@@ -1012,7 +1012,7 @@ export default {
this.sixMajorList=[];
this.sevenMajorList=[];
listByEdu({groupId: this.dataForm.groupId,degreeOfEducation:this.dataForm.degreeOfEducation}).then(e=>{
_this.planMajorList = e.data.data;
_this.planMajorList = e.data;
if (1 != _this.dataForm.degreeOfEducation) {
_this.gzAuditChange();
}
@@ -1043,14 +1043,14 @@ export default {
let _this = this;
//联系人(教职工)
queryAllTeacher().then(res =>{
_this.contactNameList = res.data.data
_this.contactNameList = res.data
});
//查询二级学院信息
getDeptList().then(data => {
_this.deptList = data.data.data
_this.deptList = data.data
})
list().then(data => {
_this.planList = data.data.data
_this.planList = data.data
});
@@ -1167,9 +1167,9 @@ export default {
}
areaSonList({code: code}).then(data => {
if(type==1){
this.areaCList = data.data.data;
this.areaCList = data.data;
}else{
this.areaAList = data.data.data;
this.areaAList = data.data;
}
});
@@ -1188,9 +1188,9 @@ export default {
}
areaSonList({code: code}).then(data => {
if(type==1){
this.areaHCList = data.data.data;
this.areaHCList = data.data;
}else{
this.areaHAList = data.data.data;
this.areaHAList = data.data;
}
});
},