diff --git a/doc/保密业务综合管理系统-单元测试记录.doc b/doc/保密业务综合管理系统-单元测试记录.doc index 54bde65..8d9cf59 100644 Binary files a/doc/保密业务综合管理系统-单元测试记录.doc and b/doc/保密业务综合管理系统-单元测试记录.doc differ diff --git a/doc/保密业务综合管理系统-操作手册.doc b/doc/保密业务综合管理系统-操作手册.doc index 045fa51..469778f 100644 Binary files a/doc/保密业务综合管理系统-操作手册.doc and b/doc/保密业务综合管理系统-操作手册.doc differ diff --git a/doc/保密业务综合管理系统-界面设计.doc b/doc/保密业务综合管理系统-界面设计.doc index 6e24e0a..d5adbd7 100644 Binary files a/doc/保密业务综合管理系统-界面设计.doc and b/doc/保密业务综合管理系统-界面设计.doc differ diff --git a/doc/保密业务综合管理系统三折页.pdf b/doc/保密业务综合管理系统三折页.pdf index bf71166..4de766d 100644 Binary files a/doc/保密业务综合管理系统三折页.pdf and b/doc/保密业务综合管理系统三折页.pdf differ diff --git a/ruoyi-admin/src/main/resources/templates/system/checkReport/add.html b/ruoyi-admin/src/main/resources/templates/system/checkReport/add.html index 1644b00..e98c6ff 100644 --- a/ruoyi-admin/src/main/resources/templates/system/checkReport/add.html +++ b/ruoyi-admin/src/main/resources/templates/system/checkReport/add.html @@ -438,6 +438,7 @@ data:this.params, success:((res)=>{ this.AreaList = res.data + this.postForm.area = '' }) , }); }, diff --git a/ruoyi-admin/src/main/resources/templates/system/checkReport/edit.html b/ruoyi-admin/src/main/resources/templates/system/checkReport/edit.html index d2d8ca6..106756d 100644 --- a/ruoyi-admin/src/main/resources/templates/system/checkReport/edit.html +++ b/ruoyi-admin/src/main/resources/templates/system/checkReport/edit.html @@ -303,7 +303,7 @@ // 初始化地市列表 this.getCityList(); if (this.postForm.framework){ - this.getAreaList() + this.getAreaList('mounted') } this.getCheckView() // var date = new Date(); @@ -511,17 +511,31 @@ }) , }); }, - getAreaList(){ - 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 - }) , - }); + getAreaList(type){ + if (type === 'mounted'){ + 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 + }) , + }); + }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() { this.$refs.postForm.validate((valid) => {