From 9aea0328ed4003fd4c5558fcece2d2c7f78efbd6 Mon Sep 17 00:00:00 2001 From: liuye Date: Thu, 29 Sep 2022 13:59:33 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8D=A1=E5=8F=A3=E7=99=BB=E8=AE=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../AppCheckpointRegistration/ManagementContent.vue | 4 ++-- .../pingchang/AppCheckpointRegistration/RiskContent.vue | 5 +++-- src/project/pingchang/AppCheckpointRegistration/UserInfo.vue | 3 ++- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/src/project/pingchang/AppCheckpointRegistration/ManagementContent.vue b/src/project/pingchang/AppCheckpointRegistration/ManagementContent.vue index c9d631e0..16d3c4ad 100644 --- a/src/project/pingchang/AppCheckpointRegistration/ManagementContent.vue +++ b/src/project/pingchang/AppCheckpointRegistration/ManagementContent.vue @@ -6,7 +6,7 @@ *处置意见 -
+
{{item.dictName}}
@@ -177,7 +177,7 @@ export default { showDictSelect: false, selectDictName: '', selectFormName: '', - haveHomeQuarantineBtn: true + haveHomeQuarantineBtn: 1, //0隐藏居家 1不隐藏 } }, computed: { diff --git a/src/project/pingchang/AppCheckpointRegistration/RiskContent.vue b/src/project/pingchang/AppCheckpointRegistration/RiskContent.vue index 42cde140..f4c72a0a 100644 --- a/src/project/pingchang/AppCheckpointRegistration/RiskContent.vue +++ b/src/project/pingchang/AppCheckpointRegistration/RiskContent.vue @@ -24,7 +24,8 @@
联系方式
- {{info.phone}}
+ {{info.phone}} +
人员类别
@@ -232,7 +233,7 @@ export default { if(this.form.communityHandleType == 1 && this.form.quarantineStrategy === '') { return this.$u.toast('请选择隔离策略') } - + this.$http.post(`/app/appepidemicpreventionregisterinfo/riskDisposal?homeQuarantineOperation=2`, this.form).then((res) => { if (res.code == 0) { this.$u.toast('提交成功') diff --git a/src/project/pingchang/AppCheckpointRegistration/UserInfo.vue b/src/project/pingchang/AppCheckpointRegistration/UserInfo.vue index 3dd76687..8d34653d 100644 --- a/src/project/pingchang/AppCheckpointRegistration/UserInfo.vue +++ b/src/project/pingchang/AppCheckpointRegistration/UserInfo.vue @@ -245,7 +245,8 @@ export default { }) }, toContent() { - uni.navigateTo({url: `./ManagementContent?id=${this.id}&idNumber=${this.info.idNumber}&haveHomeQuarantineBtn=${this.info.haveHomeQuarantineBtn}`}) + var haveHomeQuarantineBtn = this.info.haveHomeQuarantineBtn ? 1 : 0 + uni.navigateTo({url: `./ManagementContent?id=${this.id}&idNumber=${this.info.idNumber}&haveHomeQuarantineBtn=${haveHomeQuarantineBtn}`}) } }, }