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}`}) } }, }