|
|
@ -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) => {
|
|
|
|