提交修改

new-exam
dshclm 5 months ago
parent 36a30b7b22
commit b0534e06ec

@ -438,6 +438,7 @@
data:this.params, data:this.params,
success:((res)=>{ success:((res)=>{
this.AreaList = res.data this.AreaList = res.data
this.postForm.area = ''
}) , }) ,
}); });
}, },

@ -303,7 +303,7 @@
// 初始化地市列表 // 初始化地市列表
this.getCityList(); this.getCityList();
if (this.postForm.framework){ if (this.postForm.framework){
this.getAreaList() this.getAreaList('mounted')
} }
this.getCheckView() this.getCheckView()
// var date = new Date(); // var date = new Date();
@ -511,17 +511,31 @@
}) , }) ,
}); });
}, },
getAreaList(){ getAreaList(type){
this.params.parentId = this.postForm.framework if (type === 'mounted'){
// this.postForm.area = '' this.params.parentId = this.postForm.framework
$.ajax({ // this.postForm.area = ''
url: ctx + "system/area/getSysAreaList", $.ajax({
type: 'GET', url: ctx + "system/area/getSysAreaList",
data:this.params, type: 'GET',
success:((res)=>{ data:this.params,
this.AreaList = res.data success:((res)=>{
}) , this.AreaList = res.data
}); }) ,
});
}else{
this.params.parentId = this.postForm.framework
this.postForm.area = ''
$.ajax({
url: ctx + "system/area/getSysAreaList",
type: 'GET',
data:this.params,
success:((res)=>{
this.AreaList = res.data
}) ,
});
}
}, },
submitForm() { submitForm() {
this.$refs.postForm.validate((valid) => { this.$refs.postForm.validate((valid) => {

Loading…
Cancel
Save