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 @@
* -

到达时间

+

抵平时间

@@ -284,13 +284,12 @@
-
同行人信息
-
+
*同行人信息
+
-
添加同行人
- +
添加同行人
@@ -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 @@ @@ -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 {