diff --git a/package.json b/package.json index 420d28535..eb546eae6 100644 --- a/package.json +++ b/package.json @@ -16,9 +16,9 @@ "et:list": "gulp themes" }, "dependencies": { - "@antv/l7": "^2.9.14", - "@antv/l7-draw": "^3.0.5", - "@antv/l7-maps": "^2.9.14", + "@antv/l7": "2.9.14", + "@antv/l7-draw": "3.0.5", + "@antv/l7-maps": "2.9.14", "@riophae/vue-treeselect": "^0.4.0", "@tinymce/tinymce-vue": "^3.2.8", "async-validator": "^4.2.5", diff --git a/src/assets/img/shuju/grid/IS_KC.png b/src/assets/img/shuju/grid/IS_KC.png new file mode 100644 index 000000000..48bd3208c Binary files /dev/null and b/src/assets/img/shuju/grid/IS_KC.png differ diff --git a/src/assets/img/shuju/grid/sr_gc.png b/src/assets/img/shuju/grid/sr_gc.png new file mode 100644 index 000000000..c5a00bb7e Binary files /dev/null and b/src/assets/img/shuju/grid/sr_gc.png differ diff --git a/src/router/index.js b/src/router/index.js index 4d1816bd5..4f7d688fa 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -121,20 +121,20 @@ function cookApiDataItem(item) { function n2one(v) { let ret = []; for (let i = 0; i < v.length; i++) { - console.log("xxxxx", v[i]); + // console.log("xxxxx", v[i]); ret.push(v[i]); if (Array.isArray(v[i].children) && v[i].children.length > 0) { ret.push(...n2one(v[i].children)); } } - console.log("aaaa", ret); + // console.log("aaaa", ret); return ret; } let allChildrenUrl = n2one(item.children) .filter((i) => i.url != "" && i.showFlag == 1) .map((i) => i.url); - console.log("))))))))))))", allChildrenUrl); + // console.log("))))))))))))", allChildrenUrl); if (item.children.length > 0) { if (item.url == "" || !allChildrenUrl.find((i) => i.url == item.url)) { diff --git a/src/views/modules/base/epidemic/natFocus/natFocusAdd.vue b/src/views/modules/base/epidemic/natFocus/natFocusAdd.vue index 2562d8bb7..1912e820b 100644 --- a/src/views/modules/base/epidemic/natFocus/natFocusAdd.vue +++ b/src/views/modules/base/epidemic/natFocus/natFocusAdd.vue @@ -159,15 +159,16 @@ :inline="true" :model="formDataSearch" ref="ref_formSearch" - :label-width="'90px'" + label-width="90px" > - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + { + if (res.code !== 0) { + return this.$message.error(res.msg); + } else { + console.log("获取查询详情成功", res.data); + this.optionsV = res.data; + } + }) + .catch(() => { + return this.$message.error("网络错误"); + }); + }, + getBuildList() { + this.$http + .post("/gov/org/icbuilding/buildingoption", { + neighborHoodId: this.formDataSearch.neighborId, + }) + .then(({ data: res }) => { + if (res.code !== 0) { + return this.$message.error(res.msg); + } else { + console.log("获取查询详情成功", res.data); + this.optionsB = res.data; + } + }) + .catch(() => { + return this.$message.error("网络错误"); + }); + }, + getUniList() { + this.$http + .post("/gov/org/icbuildingunit/unitoption", { + buildingId: this.formDataSearch.buildingId, + }) + .then(({ data: res }) => { + if (res.code !== 0) { + return this.$message.error(res.msg); + } else { + console.log("获取查询详情成功", res.data); + this.optionsD = res.data; + } + }) + .catch(() => { + return this.$message.error("网络错误"); + }); + }, + getHouseList() { + this.$http + .post("/gov/org/ichouse/houseoption", { + unitId: this.formDataSearch.unitId, + }) + .then(({ data: res }) => { + if (res.code !== 0) { + return this.$message.error(res.msg); + } else { + console.log("获取查询详情成功", res.data); + this.optionsH = res.data; + } + }) + .catch(() => { + return this.$message.error("网络错误"); + }); + }, + handleComfirm() { if (this.activeName === "first") { this.$refs["ref_form1"].validate((valid, messageObj) => { diff --git a/src/views/modules/base/epidemic/natFocus/nfVisiteList.vue b/src/views/modules/base/epidemic/natFocus/nfVisiteList.vue index 31792bc5b..a0dd6da8e 100644 --- a/src/views/modules/base/epidemic/natFocus/nfVisiteList.vue +++ b/src/views/modules/base/epidemic/natFocus/nfVisiteList.vue @@ -131,7 +131,7 @@ export default { formData: { visitTime: '',//随访时间 content: '',//内容 - realIdCard: '', + idCard: '', name: '', mobile: '', origin: '' @@ -150,7 +150,7 @@ export default { async initTable (row, origin) { - this.formData.realIdCard = row.realIdCard + this.formData.idCard = row.realIdCard this.formData.name = row.name this.formData.mobile = row.mobile this.formData.origin = origin @@ -167,7 +167,7 @@ export default { // const url = 'http://yapi.elinkservice.cn/mock/245/epmetuser/followup/page' let params = { name: this.formData.name, - idCard: this.formData.realIdCard, + idCard: this.formData.idCard, pageNo: this.pageNo, pageSize: this.pageSize, origin: this.formData.origin @@ -225,7 +225,7 @@ export default { const url = "/epmetuser/followup/export" let params = { - idCard: this.formData.realIdCard, + idCard: this.formData.idCard, name: this.formData.name, origin: this.formData.origin } diff --git a/src/views/modules/plugins/rent/rentcontractinfo-add-or-update.vue b/src/views/modules/plugins/rent/rentcontractinfo-add-or-update.vue index af71bc574..a472ca5a9 100644 --- a/src/views/modules/plugins/rent/rentcontractinfo-add-or-update.vue +++ b/src/views/modules/plugins/rent/rentcontractinfo-add-or-update.vue @@ -286,11 +286,36 @@
- + + + + + + + +