+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
{{ $t('cancel') }}
{{ $t('confirm') }}
@@ -107,11 +201,29 @@
+
From 8656adfe92622248751fcc42da482829b749d4eb Mon Sep 17 00:00:00 2001
From: wanggongfeng <1305282856@qq.com>
Date: Fri, 26 Aug 2022 10:28:51 +0800
Subject: [PATCH 04/14] =?UTF-8?q?=E6=A0=B8=E9=85=B8=E6=A3=80=E6=B5=8B?=
=?UTF-8?q?=E4=BA=BA=E5=91=98=E4=BF=A1=E6=81=AF?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/modules/sys/icvaccineprarmeter.vue | 30 +++++++++++++++++++-
1 file changed, 29 insertions(+), 1 deletion(-)
diff --git a/src/views/modules/sys/icvaccineprarmeter.vue b/src/views/modules/sys/icvaccineprarmeter.vue
index 06acdfdbb..5935a45dc 100644
--- a/src/views/modules/sys/icvaccineprarmeter.vue
+++ b/src/views/modules/sys/icvaccineprarmeter.vue
@@ -199,7 +199,7 @@
{{ $t('update') }}
- {{ $t('delete') }}
+ {{ $t('delete') }}
审核
@@ -281,6 +281,34 @@ export default {
this.getValiheList()
},
methods:{
+ async handleDelete(id) {
+ this.$confirm("确认删除?", "提示", {
+ confirmButtonText: "确定",
+ cancelButtonText: "取消",
+ type: "warning",
+ })
+ .then(() => {
+ this.deleteNat(id);
+ })
+ .catch((err) => {
+ if (err == "cancel") {
+ }
+ });
+ },
+ async deleteNat(id) {
+ const url = "/epmetuser/icVaccinePrarmeter/delete";
+ let params = [id];
+ const { data, code, msg } = await requestPost(url, params);
+ if (code === 0) {
+ this.$message({
+ type: "success",
+ message: "删除成功",
+ });
+ this.loadTable();
+ } else {
+ this.$message.error(msg);
+ }
+ },
// 审核
async handleWatch(row) {
await nextTick();
From 40219b1e2a9c482e04096b30d11850cfcb6f3c2a Mon Sep 17 00:00:00 2001
From: wanggongfeng <1305282856@qq.com>
Date: Fri, 26 Aug 2022 10:58:50 +0800
Subject: [PATCH 05/14] =?UTF-8?q?=E6=A0=B8=E9=85=B8=E6=A3=80=E6=B5=8B?=
=?UTF-8?q?=E4=BA=BA=E5=91=98=E4=BF=A1=E6=81=AF?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/modules/sys/icvaccineprarmeter.vue | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/views/modules/sys/icvaccineprarmeter.vue b/src/views/modules/sys/icvaccineprarmeter.vue
index 5935a45dc..f3f1145d6 100644
--- a/src/views/modules/sys/icvaccineprarmeter.vue
+++ b/src/views/modules/sys/icvaccineprarmeter.vue
@@ -304,7 +304,7 @@ export default {
type: "success",
message: "删除成功",
});
- this.loadTable();
+ this.getDataList();
} else {
this.$message.error(msg);
}
From 7eadcb1036df827800c3acb15ea9ab69c7744cc8 Mon Sep 17 00:00:00 2001
From: wanggongfeng <1305282856@qq.com>
Date: Fri, 26 Aug 2022 15:51:18 +0800
Subject: [PATCH 06/14] =?UTF-8?q?=E6=A0=B8=E9=85=B8=E6=A3=80=E6=B5=8B?=
=?UTF-8?q?=E4=BA=BA=E5=91=98=E4=BF=A1=E6=81=AF?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../sys/icvaccineprarmeter-add-or-update.vue | 17 ++++++---
src/views/modules/sys/icvaccineprarmeter.vue | 38 +++++++++++--------
2 files changed, 33 insertions(+), 22 deletions(-)
diff --git a/src/views/modules/sys/icvaccineprarmeter-add-or-update.vue b/src/views/modules/sys/icvaccineprarmeter-add-or-update.vue
index 088537fa8..52a10a142 100644
--- a/src/views/modules/sys/icvaccineprarmeter-add-or-update.vue
+++ b/src/views/modules/sys/icvaccineprarmeter-add-or-update.vue
@@ -2,7 +2,7 @@
+ left>
-
+
-
+
-
+
-
+
-
+
{
diff --git a/src/views/modules/sys/icvaccineprarmeter.vue b/src/views/modules/sys/icvaccineprarmeter.vue
index f3f1145d6..c40d61212 100644
--- a/src/views/modules/sys/icvaccineprarmeter.vue
+++ b/src/views/modules/sys/icvaccineprarmeter.vue
@@ -112,10 +112,10 @@
clearable
>
-
+
@@ -169,31 +169,35 @@
导出
-
+
{{scope.$index+1}}
-
-
-
+
+
+
-
+
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
@@ -615,6 +619,8 @@ export default {
diff --git a/src/views/modules/sys/icvaccineprarmeter.vue b/src/views/modules/sys/icvaccineprarmeter.vue
index 66a5bd94a..cc6d02fe6 100644
--- a/src/views/modules/sys/icvaccineprarmeter.vue
+++ b/src/views/modules/sys/icvaccineprarmeter.vue
@@ -237,6 +237,23 @@
@dialogOk="addFormOk">
+
+
+
+
@@ -279,7 +296,11 @@ export default {
optionsD: [],
optionsG: [],
checkVisible: false,
- formTitle:"新增"
+ formTitle:"新增",
+ // 审核
+ formShow: false,
+ formTitle_shenhe: "审核",
+ // 审核 end
}
},
components: {
@@ -308,6 +329,19 @@ export default {
this.getValiheList()
},
methods:{
+ // 审核 s
+ diaClose() {
+ // this.$refs.icvaccineprarmeter_check.resetData();
+ this.formShow = false;
+ },
+ addFormCancle() {
+ this.formShow = false;
+ },
+ addFormOk_shenhe() {
+ this.formShow = false;
+ this.getDataList();
+ },
+ // 审核 end
//新增
handleAdd() {
this.formTitle = "新增";
@@ -371,14 +405,25 @@ export default {
this.$message.success(data.msg);
}else{
// 打开审核页面
- this.checkVisible = true
+ // this.checkVisible = true
+ // this.$nextTick(() => {
+ // this.$refs.checkPage.dataForm.id = row.id
+ // // 是否新增房屋:0:否;1:是
+ // this.$refs.checkPage.isAdd = data.isAdd
+ // // 单元ID
+ // this.$refs.checkPage.unitId = data.unitId
+ // this.$refs.checkPage.init()
+ // })
+ // 打开审核页面
+ this.formShow = true;
this.$nextTick(() => {
- this.$refs.checkPage.dataForm.id = row.id
- // 是否新增房屋:0:否;1:是
- this.$refs.checkPage.isAdd = data.isAdd
- // 单元ID
- this.$refs.checkPage.unitId = data.unitId
- this.$refs.checkPage.init()
+ this.$refs.icvaccineprarmeter_check.initForm("add", row.id, data.isAdd, data.unitId, data);
+ // this.$refs.checkPage.dataForm.id = row.id
+ // // 是否新增房屋:0:否;1:是
+ // this.$refs.checkPage.isAdd = data.isAdd
+ // // 单元ID
+ // this.$refs.checkPage.unitId = data.unitId
+ // this.$refs.checkPage.init()
})
}
diff --git a/src/views/modules/sys/roomForm.vue b/src/views/modules/sys/roomForm.vue
new file mode 100644
index 000000000..d7a3f6723
--- /dev/null
+++ b/src/views/modules/sys/roomForm.vue
@@ -0,0 +1,461 @@
+
+
+
+
+
+
+ {{ agencyObj.neighborHoodName }}-{{agencyObj.label}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 生成
+
+
+
+
+
+
+ 楼房
+ 平房
+ 别墅
+
+
+
+
+
+
+ 住宅
+ 商业
+ 办公
+ 工业
+ 仓储
+ 商住混用
+ 其他
+
+
+
+
+
+
+ 出租
+ 闲置
+ 自住
+ 未出售
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 取 消
+ 确 定
+
+
+
+
+
+
From 238feec4b3a8434547d1f8428538afc24f093d73 Mon Sep 17 00:00:00 2001
From: zhaoyongnian <541231643@qq.com>
Date: Fri, 26 Aug 2022 18:22:28 +0800
Subject: [PATCH 11/14] =?UTF-8?q?=E4=BC=98=E5=8C=96?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/modules/sys/icvaccineprarmeter-check.vue | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/src/views/modules/sys/icvaccineprarmeter-check.vue b/src/views/modules/sys/icvaccineprarmeter-check.vue
index e91393ca7..fefd848f0 100644
--- a/src/views/modules/sys/icvaccineprarmeter-check.vue
+++ b/src/views/modules/sys/icvaccineprarmeter-check.vue
@@ -364,7 +364,11 @@ export default {
checkState: type, // 0-未审核 1-未通过 2-已通过
checkReason: '',
unitId: this.unitId || '',
- homeName: this.dataForm.homeName || ''
+ homeName: this.agencyObj.homeName || '',
+ villageId: this.agencyObj.villageId || '',
+ buildId: this.agencyObj.buildId || '',
+ unitId: this.agencyObj.unitId || '',
+ homeId: this.agencyObj.homeId || ''
}
if (type == '1') {
this.$prompt('请输入不通过的原因', '提示', {
From 4983e4225c991be5af4e5ec7a93f9de60dad5bcd Mon Sep 17 00:00:00 2001
From: wanggongfeng <1305282856@qq.com>
Date: Fri, 26 Aug 2022 20:04:47 +0800
Subject: [PATCH 12/14] =?UTF-8?q?=E6=A0=B8=E9=85=B8=E6=A3=80=E6=B5=8B?=
=?UTF-8?q?=E4=BA=BA=E5=91=98=E4=BF=A1=E6=81=AF?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../sys/icvaccineprarmeter-add-or-update.vue | 17 ++++---
.../modules/sys/icvaccineprarmeter-check.vue | 45 ++++++++++++++-----
src/views/modules/sys/icvaccineprarmeter.vue | 17 ++++---
3 files changed, 57 insertions(+), 22 deletions(-)
diff --git a/src/views/modules/sys/icvaccineprarmeter-add-or-update.vue b/src/views/modules/sys/icvaccineprarmeter-add-or-update.vue
index 7c52db1e9..7527c1d79 100644
--- a/src/views/modules/sys/icvaccineprarmeter-add-or-update.vue
+++ b/src/views/modules/sys/icvaccineprarmeter-add-or-update.vue
@@ -5,7 +5,7 @@
-
+
{{ $t('cancel') }}
- {{ $t('confirm') }}
+ {{ $t('confirm') }}
@@ -310,7 +310,8 @@
note: '',
checkState: '0',
checkReason: '',
- }
+ },
+ isLook: false
}
},
computed: {
@@ -417,7 +418,12 @@
this.getHouseList()
},
methods: {
- async init (row) {
+ async init (row,isLook) {
+ if(isLook){
+ this.isLook = true
+ }else{
+ this.isLook = false
+ }
if (row) {
this.dataForm.id = row.id
}
@@ -510,7 +516,8 @@
async loadGrid () {
const url = "/gov/org/customergrid/gridoption"
let params = {
- agencyId: this.agencyId
+ agencyId: this.agencyId,
+ purpose: 'addorupdate'
}
const { data, code, msg } = await requestPost(url, params)
if (code === 0) {
diff --git a/src/views/modules/sys/icvaccineprarmeter-check.vue b/src/views/modules/sys/icvaccineprarmeter-check.vue
index fefd848f0..a21e361b4 100644
--- a/src/views/modules/sys/icvaccineprarmeter-check.vue
+++ b/src/views/modules/sys/icvaccineprarmeter-check.vue
@@ -67,11 +67,17 @@
prop="householdType"
label-width="150px"
style="display: block">
-
-
+
+
+
+
-
-
+
+
+
+
@@ -206,7 +219,7 @@
v-model="dataForm.note"
disabled>
-
+
@@ -280,6 +293,14 @@ export default {
},
isAdd: '',
unitId: '',
+ household: [
+ { value: '0', label: '户籍' },
+ { value: '1', label: '外来' },
+ ],
+ isVaccinationOption: [
+ { value: '0', label: '否' },
+ { value: '1', label: '是' },
+ ],
// 审核
formShow: false,
agencyObj: {}
@@ -423,7 +444,7 @@ export default {
computed: {
dataRule () {
return {
-
+
}
},
diff --git a/src/views/modules/sys/icvaccineprarmeter.vue b/src/views/modules/sys/icvaccineprarmeter.vue
index cc6d02fe6..6000b8d82 100644
--- a/src/views/modules/sys/icvaccineprarmeter.vue
+++ b/src/views/modules/sys/icvaccineprarmeter.vue
@@ -201,12 +201,12 @@
-
+
{{ $t('update') }}
- {{ $t('delete') }}
- 审核
+ {{ $t('delete') }}
+ 审核
+ 查看
@@ -436,6 +436,13 @@ export default {
this.$message.success("操作失败!");
}
},
+
+ async handleLook(rowIndex) {
+ this.formTitle = "查看";
+ this.checkVisible = true;
+ await nextTick();
+ this.$refs.add_parameter.init(this.dataList[rowIndex],true);
+ },
handleClearVillage() {
this.dataForm.buildId = ''
this.dataForm.homeId = ''
@@ -488,7 +495,7 @@ export default {
this.$http
.post('/gov/org/customergrid/gridoption', {
agencyId: user.agencyId,
- purpose: 'query'
+ purpose: 'addorupdate'
})
.then(({ data: res }) => {
if (res.code !== 0) {
From 8da75e067b8e746e3c655238eb28fec8a46c4ea5 Mon Sep 17 00:00:00 2001
From: wanggongfeng <1305282856@qq.com>
Date: Mon, 29 Aug 2022 15:11:32 +0800
Subject: [PATCH 13/14] =?UTF-8?q?=E6=A0=B8=E9=85=B8=E6=A3=80=E6=B5=8B?=
=?UTF-8?q?=E4=BA=BA=E5=91=98=E4=BF=A1=E6=81=AF?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/modules/sys/icvaccineprarmeter.vue | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/views/modules/sys/icvaccineprarmeter.vue b/src/views/modules/sys/icvaccineprarmeter.vue
index 6000b8d82..6ed228b78 100644
--- a/src/views/modules/sys/icvaccineprarmeter.vue
+++ b/src/views/modules/sys/icvaccineprarmeter.vue
@@ -181,15 +181,15 @@
{{scope.$index+1}}
-
-
+
+
-
-
+
+
From b999e5663889c5b0d9c87d260a6e17fd5589e275 Mon Sep 17 00:00:00 2001
From: wanggongfeng <1305282856@qq.com>
Date: Mon, 29 Aug 2022 16:31:46 +0800
Subject: [PATCH 14/14] =?UTF-8?q?=E6=A0=B8=E9=85=B8=E6=A3=80=E6=B5=8B?=
=?UTF-8?q?=E4=BA=BA=E5=91=98=E4=BF=A1=E6=81=AF?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../sys/icvaccineprarmeter-add-or-update.vue | 14 +++++++++++++-
1 file changed, 13 insertions(+), 1 deletion(-)
diff --git a/src/views/modules/sys/icvaccineprarmeter-add-or-update.vue b/src/views/modules/sys/icvaccineprarmeter-add-or-update.vue
index 7527c1d79..1da25ea10 100644
--- a/src/views/modules/sys/icvaccineprarmeter-add-or-update.vue
+++ b/src/views/modules/sys/icvaccineprarmeter-add-or-update.vue
@@ -21,7 +21,19 @@
-
+
+
+
+
+
+
+
+
+
+
+
+
+