diff --git a/src/project/pingchang/AppCheckpointRegistration/AppCheckpointRegistration.vue b/src/project/pingchang/AppCheckpointRegistration/AppCheckpointRegistration.vue
index 9e0b734b..550c79b8 100644
--- a/src/project/pingchang/AppCheckpointRegistration/AppCheckpointRegistration.vue
+++ b/src/project/pingchang/AppCheckpointRegistration/AppCheckpointRegistration.vue
@@ -50,7 +50,7 @@
-
管控人:{{item.handleUserName}}
+
处置人:{{item.handleUserName}}
diff --git a/src/project/pingchang/AppCheckpointRegistration/UserInfo.vue b/src/project/pingchang/AppCheckpointRegistration/UserInfo.vue
index ad868ba9..1707a06a 100644
--- a/src/project/pingchang/AppCheckpointRegistration/UserInfo.vue
+++ b/src/project/pingchang/AppCheckpointRegistration/UserInfo.vue
@@ -49,7 +49,7 @@
{{info.trainNo}}
出发时间
-
{{info.startTime.substring(0, 16)}}
+
{{info.startTime.substring(0, 16)}}
抵平时间
-
{{info.arriveTime.substring(0, 16)}}
+
{{info.arriveTime.substring(0, 16)}}
到达地区
@@ -110,6 +110,91 @@
+
+
+
处置意见
+
+
+
+
处置意见
+
{{ $dict.getLabel('EP_handleType', item.handleType) }}
+
+
+
集中隔离地
+
{{ $dict.getLabel('EP_quarantineAddress', item.quarantineAddress) }}
+
+
+
隔离时间
+
{{item.quarantineBeginTime}}至{{item.quarantineEndTime}}
+
+
+
隔离策略
+
{{ $dict.getLabel('EP_quarantineStrategy', item.quarantineStrategy) }}
+
+
+
+
+
+
处置意见
+
{{ $dict.getLabel('EP_handleType', item.handleType) }}
+
+
+
居家状态
+
{{ $dict.getLabel('EP_homeStatus', item.homeStatus) }}
+
+
+
隔离时间
+
{{item.quarantineBeginTime}}至{{item.quarantineEndTime}}
+
+
+
隔离策略
+
{{ $dict.getLabel('EP_quarantineStrategy', item.quarantineStrategy) }}
+
+
+
管控方式
+
{{ $dict.getLabel('EP_controlMethod', item.controlMethod) }}
+
+
+
{{item.remarks}}
+
+
+
+
+
处置意见
+
{{ $dict.getLabel('EP_handleType', item.handleType) }}
+
+
+
移交对象
+
{{ $dict.getLabel('EP_handoverObject', item.handoverObject) }}
+
+
+
移交方式
+
{{ $dict.getLabel('EP_handoverMethod', item.handoverMethod) }}
+
+
+
交接人姓名
+
{{item.handoverPersonName}}
+
+
+
手机号
+
+
![]()
+ {{item.handoverPersonPhone}}
+
+
+
+
![]()
+
+
+
+
+
+
+
diff --git a/src/project/pingchang/AppCommunityManagement/Detail.vue b/src/project/pingchang/AppCommunityManagement/Detail.vue
index 8ae421cc..2543e5ee 100644
--- a/src/project/pingchang/AppCommunityManagement/Detail.vue
+++ b/src/project/pingchang/AppCommunityManagement/Detail.vue
@@ -26,7 +26,7 @@
隔离时间
-
{{info.quarantineBeginTime.substring(0, 10)}} 至 {{info.quarantineEndTime.substring(0, 10)}}
+
{{info.quarantineBeginTime.substring(0, 10)}} 至 {{info.quarantineEndTime.substring(0, 10)}}
-
-
-
管控内容
+
+
+
+
{{info.controllerContent}}
-
{{info.controllerContent}}
-
-
-
![]()
+
+
+
+
![]()
+
-
-
@@ -106,14 +106,13 @@ export default {
this.id = option.id
this.getDetail()
})
- var myDate = new Date();
- var month = myDate.getMonth()+1
- if(month < 10) {
- month = '0'+`${month}`
- }
+
this.form.createUserName = this.user.name
this.form.createUserPhone = this.user.phone
- this.form.createTime = `${myDate.getFullYear()}-${month}-${myDate.getDate()} ${myDate.getHours()}:${myDate.getMinutes()}:${myDate.getSeconds()}`
+
+ var myDate = new Date();
+ this.form.createTime = `${myDate.getFullYear()}-${this.isNum(myDate.getMonth()+1)}-${this.isNum(myDate.getDate())}
+ ${this.isNum(myDate.getHours())}:${this.isNum(myDate.getMinutes())}:${this.isNum(myDate.getSeconds())}`
},
onShow() {
document.title = '核酸采样'
@@ -157,6 +156,12 @@ export default {
}
})
},
+ isNum(num) {
+ if(num < 10) {
+ num = '0'+`${num}`
+ }
+ return num
+ },
},
}
diff --git a/src/project/pingchang/AppNucleicAcidSampling/Detail.vue b/src/project/pingchang/AppNucleicAcidSampling/Detail.vue
index e293a117..50ac1173 100644
--- a/src/project/pingchang/AppNucleicAcidSampling/Detail.vue
+++ b/src/project/pingchang/AppNucleicAcidSampling/Detail.vue
@@ -47,7 +47,7 @@
-
+
@@ -59,6 +59,7 @@ export default {
return {
id: '',
info: {},
+ isHideBtn: 0
}
},
computed: { ...mapState(['user']) },
@@ -73,6 +74,7 @@ export default {
uni.$on('updateDetail', () => {
this.getDetail()
})
+ this.isHideBtn = option.isHideBtn || 0
},
methods: {
getDetail() {