-
-
核酸证明
+
+
+
{{controllInfo.lastRiskDisposal.remarks}}
-
-
![]()
-
-
-
-
-
备注
+
+
-
{{info.lastRiskDisposal.remarks}}
-
-
-
-
@@ -94,7 +215,26 @@ export default {
data() {
return {
id: '',
- info: {},
+ controllInfo: {},
+ tabList: [
+ {
+ name: '排查管理',
+ },
+ {
+ name: '人员详情',
+ },
+ ],
+ barStyle: {
+ 'width': '24px',
+ 'height': '2px',
+ 'border-radius': '0',
+ 'bottom': '5px'
+ },
+ activeStyle: {
+ 'font-weight' : '400',
+ },
+ currentTabs: 0,
+ info: {}
}
},
computed: { ...mapState(['user']) },
@@ -111,17 +251,23 @@ export default {
})
},
methods: {
+ change(index) {
+ this.currentTabs = index
+ },
getDetail() {
this.$http.post(`/app/appepidemicpreventioncommunitymanagement/queryDetailById?id=${this.id}`).then((res) => {
if (res.code == 0) {
- this.info = res.data
+ this.controllInfo = res.data
+ this.controllInfo.idNumberText = res.data.idNumber.replace(/(.{6}).*(.{4})/,"$1********$2")
+ this.info = res.data.registerInfo
+ this.info.travelTypeList = this.info.travelType.split(',')
this.info.idNumberText = res.data.idNumber.replace(/(.{6}).*(.{4})/,"$1********$2")
}
})
},
changeStatus() {
- this.info.status = 2
- this.$http.post(`/app/appepidemicpreventioncommunitymanagement/troubleshooting`, this.info).then((res) => {
+ this.controllInfo.status = 2
+ this.$http.post(`/app/appepidemicpreventioncommunitymanagement/troubleshooting`, this.controllInfo).then((res) => {
if (res.code == 0) {
this.$u.toast('提交成功')
uni.$emit('updateList')
@@ -144,112 +290,328 @@ export default {
toNucleAcidDetail() {
uni.navigateTo({url: `../AppNucleicAcidSampling/Detail?id=${this.id}&isHideBtn=1`})
},
+ cancelRelieve() {
+ this.$confirm(`是否撤销对${this.info.name}的风险解除`).then(() => {
+ this.$http.post(`/app/appepidemicpreventioncommunitymanagement/cancel?id=${this.id}`, ).then((res) => {
+ if (res.code == 0) {
+ this.$u.toast('撤销成功')
+ uni.$emit('updateList')
+ setTimeout(() => {
+ uni.navigateBack()
+ }, 600)
+ }
+ })
+ })
+ }
},
}
diff --git a/src/project/pingchang/AppCommunityManagement/TransferUser.vue b/src/project/pingchang/AppCommunityManagement/TransferUser.vue
new file mode 100644
index 00000000..73fdd04f
--- /dev/null
+++ b/src/project/pingchang/AppCommunityManagement/TransferUser.vue
@@ -0,0 +1,270 @@
+
+
+
+
+
+ *移交对象
+
+
+ {{ $dict.getLabel('EP_handoverObject', form.handoverObject) || '请选择'}}
+
+
+
+
+
+ *移交方式
+
+
+ {{ $dict.getLabel('EP_handoverMethod', form.handoverMethod) || '请选择'}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+