|
|
|
@ -379,7 +379,6 @@ export default {
|
|
|
|
},
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
created() {
|
|
|
|
this.getList();
|
|
|
|
this.getList();
|
|
|
|
// this.getParentOption();
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
methods: {
|
|
|
|
/** 查询目录列表 */
|
|
|
|
/** 查询目录列表 */
|
|
|
|
@ -456,7 +455,7 @@ export default {
|
|
|
|
this.form.pid = 0;
|
|
|
|
this.form.pid = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if(row&&row.id!==0){
|
|
|
|
if(row&&row.id!==0&&row.id!==undefined){
|
|
|
|
getCatalogNumber(row.id).then(response => {
|
|
|
|
getCatalogNumber(row.id).then(response => {
|
|
|
|
this.form.orderNum = response.orderNum;
|
|
|
|
this.form.orderNum = response.orderNum;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
@ -537,7 +536,7 @@ export default {
|
|
|
|
this.form.muName = this.dict.type.yw_type.find(option => option.value === val).label;
|
|
|
|
this.form.muName = this.dict.type.yw_type.find(option => option.value === val).label;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
/** 查询乡镇列表 */
|
|
|
|
/** 查询乡镇列表 */
|
|
|
|
/*getParentOption() {
|
|
|
|
getParentOption() {
|
|
|
|
listAreaSort({
|
|
|
|
listAreaSort({
|
|
|
|
pageNum: 1,
|
|
|
|
pageNum: 1,
|
|
|
|
pageSize: 1000000000,
|
|
|
|
pageSize: 1000000000,
|
|
|
|
@ -545,9 +544,10 @@ export default {
|
|
|
|
}).then(response => {
|
|
|
|
}).then(response => {
|
|
|
|
this.xzcsq.parentOption = response.rows;
|
|
|
|
this.xzcsq.parentOption = response.rows;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},*/
|
|
|
|
},
|
|
|
|
// 选择乡镇 村/社区
|
|
|
|
// 选择乡镇 村/社区
|
|
|
|
selectXZCSQ(areaType){
|
|
|
|
selectXZCSQ(areaType){
|
|
|
|
|
|
|
|
this.getParentOption();
|
|
|
|
this.xzcsq.list = [];
|
|
|
|
this.xzcsq.list = [];
|
|
|
|
this.xzcsq.queryParams.pageNum = 1;
|
|
|
|
this.xzcsq.queryParams.pageNum = 1;
|
|
|
|
this.xzcsq.queryParams.pageSize = 10;
|
|
|
|
this.xzcsq.queryParams.pageSize = 10;
|
|
|
|
@ -603,8 +603,7 @@ export default {
|
|
|
|
},
|
|
|
|
},
|
|
|
|
/** 查询档案图片信息记录列表 */
|
|
|
|
/** 查询档案图片信息记录列表 */
|
|
|
|
getListPicture(row) {
|
|
|
|
getListPicture(row) {
|
|
|
|
|
|
|
|
if(this.$store.state.user.admin || this.$store.state.user.permissions.indexOf('dangan:pictureRecard:list')>0){
|
|
|
|
if(this.$store.state.user.permissions.indexOf('dangan:pictureRecard:list')>0){
|
|
|
|
|
|
|
|
this.lssc.open = true;
|
|
|
|
this.lssc.open = true;
|
|
|
|
listPictureRecard({muId: row.id,pageSize: 1000000000}).then(response => {
|
|
|
|
listPictureRecard({muId: row.id,pageSize: 1000000000}).then(response => {
|
|
|
|
this.lssc.list = response.rows;
|
|
|
|
this.lssc.list = response.rows;
|
|
|
|
|