diff --git a/src/project/pingchang/AppGetwayRegister/AddGetway.vue b/src/project/pingchang/AppGetwayRegister/AddGetway.vue
index cf0d530..05f07c6 100644
--- a/src/project/pingchang/AppGetwayRegister/AddGetway.vue
+++ b/src/project/pingchang/AppGetwayRegister/AddGetway.vue
@@ -159,7 +159,7 @@
- 同行人信息
-
@@ -494,7 +493,7 @@ export default {
}
if (!this.form.arriveTime) {
- return this.$toast('请选择到达时间')
+ return this.$toast('请选择抵平时间')
}
if (new Date(this.form.startTime.replace(/-/g, '/')).getTime() >= new Date(this.form.arriveTime.replace(/-/g, '/')).getTime()) {
diff --git a/src/project/pingchang/AppGetwayRegister/AppGetwayRegister.vue b/src/project/pingchang/AppGetwayRegister/AppGetwayRegister.vue
index 525a5e3..c763ac5 100644
--- a/src/project/pingchang/AppGetwayRegister/AppGetwayRegister.vue
+++ b/src/project/pingchang/AppGetwayRegister/AppGetwayRegister.vue
@@ -13,7 +13,7 @@
v-for="(item, index) in list" :key="index">
{{ item.name }}
- 有异常情况
+ {{ item.phone }}
{{ item.idNumber.replace(/^(\d{6})\d{8}(.{4}$)/g, `$1${Array(9).join('*')}$2`) }}
@@ -171,7 +171,6 @@ export default {
.item-top {
display: flex;
align-items: center;
- justify-content: space-between;
height: 50px;
h2 {
@@ -182,7 +181,8 @@ export default {
span {
font-size: 28px;
- color: #FF4466;
+ color: #999999;
+ margin-left: 16px;
}
}
diff --git a/src/project/pingchang/AppGetwayRegister/DetailGetway.vue b/src/project/pingchang/AppGetwayRegister/DetailGetway.vue
index 3dadb63..d27b571 100644
--- a/src/project/pingchang/AppGetwayRegister/DetailGetway.vue
+++ b/src/project/pingchang/AppGetwayRegister/DetailGetway.vue
@@ -1,5 +1,6 @@
-
+
+
@@ -37,7 +42,7 @@
-
+
@@ -49,9 +54,7 @@
- {{
- $dict.getLabel('epidemicMemberType', info.type)
- }}
+ {{ $dict.getLabel('EP_registerPersonType', info.type) }}
@@ -65,6 +68,14 @@
{{ $dict.getLabel('epidemicRecentTravel', info.travelType) }}
+
+
+
+
+
+ {{ info.trainNo }}
+
+
@@ -91,7 +102,15 @@
-
+
+
+
+ {{ info.description }}
+
+
+
+
+
{{ info.arriveTime && info.arriveTime.substr(0, info.arriveTime.length - 3) }}
@@ -113,62 +132,23 @@
{{ info.arriveAddress }}
-
-
-
-
-
- {{ info.description }}
-
-
-
-
-
核酸检测信息
-
-
-
-
-
- {{ info.checkTime.split(' ')[0] }}
-
-
-
-
-
-
-
- {{
- $dict.getLabel('epidemicRecentTestResult', info.checkResult)
- }}
-
-
-
-
-
-
-
-
-
-
健康状况
-
+
- {{ info.temperature }}℃
+ {{ $dict.getLabel('yesOrNo',info.fromHighRiskArea) }}
-
+
- {{
- $dict.getLabel('epidemicTouchInFourteen', info.touchInFourteen)
- }}
+ {{ $dict.getLabel('epidemicTouchInFourteen', info.contactPatients) }}
@@ -176,10 +156,27 @@
- {{ info.healthName }}
+ {{ $dict.getLabel('EP_abnormalType',info.abnormalType) || '没有出现症状' }}
+
+
同行情况
+
+
+
+
+
+ {{ info.companionCount }}
+
+
+
+ 小伙伴表格
+
+
+
@@ -189,7 +186,7 @@ export default {
data() {
return {
info: {},
- pageShow: false
+ // pageShow: false
}
},
@@ -209,29 +206,19 @@ export default {
},
getInfo(id) {
- this.$instance.post(`/app/appepidemicbackhomerecord/queryDetailById?id=${id}`).then(res => {
- if (res.code === 0) {
+ this.$instance.post(`/app/appepidemicpreventionregisterinfo/queryDetailById?id=${id}`).then(res => {
+ if (res?.data) {
this.info = res.data
- this.info.checkPhoto = JSON.parse(res.data.checkPhoto)
- let healthName = ''
- this.info.isHealth = false
- res.data.health.split(',').forEach(v => {
- if (v > 0) {
- this.info.isHealth = true
- }
- healthName = healthName + this.$dict.getLabel('epidemicRecentHealth', v)
- })
- this.info.healthName = healthName
-
- this.$nextTick(() => {
- this.pageShow = true
- })
}
this.$hideLoading()
})
},
+ toEdit() {
+ console.log('编辑');
+ },
+
call(phone) {
uni.makePhoneCall({
phoneNumber: phone
@@ -243,7 +230,7 @@ export default {