ErrorDetail

This commit is contained in:
花有清香月有阴
2022-01-10 15:28:18 +08:00
parent 48efda4bd4
commit 79b2de0cdd
2 changed files with 187 additions and 20 deletions

View File

@@ -57,6 +57,8 @@
</template>
<script>
import { mapState } from 'vuex'
export default {
name: 'HealthDetail',
components: {},
@@ -66,7 +68,9 @@ export default {
data: [],
}
},
computed: {},
computed: {
...mapState(['user']),
},
watch: {},
onLoad() {},
onShow() {},

View File

@@ -1,20 +1,79 @@
<template>
<div class="UserDetail">
<div class="top">
<div class="topTitle">张铭的返乡登记信息</div>
<div class="msg">
<div class="lineMsg"></div>
<div></div>
<div class="user-list">
<div class="item">
<h2 class="name">林益丰</h2>
<p class="color-999">420107********3274</p>
<p><img src="./components/img/blue-icon.png" alt="" />湖北省武汉市洪山区</p>
<p><img src="./components/img/org-icon.png" alt="" />重庆市荣昌区</p>
<p><img src="./components/img/time-icon.png" alt="" />2021-12-06 13:23</p>
</div>
</div>
<div></div>
<div class="info">
<div class="title">基本信息</div>
<div class="item-flex">
<div class="label">姓名</div>
<div class="value">陈晨</div>
</div>
<div class="item-flex">
<div class="label">身份证号</div>
<div class="value">422132199412038273</div>
</div>
<div class="item-flex">
<div class="label">联系方式</div>
<div class="value" style="color: #4181ff">
<img :src="$cdn + 'common/phone.png'" alt="" @click="callPhone('112')" class="phone-icon" />
152738193323
</div>
</div>
<div class="item-flex">
<div class="label">人员类别</div>
<div class="value" style="color: #42d784">跨省返乡人员</div>
</div>
</div>
<div class="line-bg"></div>
<div class="info">
<div class="title">健康状况</div>
<div class="item-flex">
<div class="label">当前体温</div>
<div class="value temperature">36</div>
</div>
<div class="item-flex">
<div class="label" style="width: 360px">14天内是否接触新冠确诊或疑似患者</div>
<div class="value" style="color: #42d784"></div>
</div>
<div class="item-flex">
<div class="label">当前健康状况</div>
<div class="value" style="color: #ff4466">感冒症状;乏力咳嗽发烧肌肉痛头痛</div>
</div>
</div>
<div class="line-bg"></div>
<div class="info">
<div class="title">核酸检测信息</div>
<div class="item-flex">
<div class="label">核酸检测日期</div>
<div class="value">2021-10-19</div>
</div>
<div class="item-flex">
<div class="label">核酸检测结果</div>
<div class="value" style="color: #42d784">阴性</div>
</div>
<div class="item-flex">
<div style="color: #999">本人健康码截图或核酸检测报告</div>
</div>
<div class="img-list">
<img src="./components/img/time-icon.png" alt="" />
</div>
</div>
</div>
</template>
<script>
import { mapState } from 'vuex'
export default {
name: 'UserDetail',
components: {},
@@ -22,28 +81,132 @@ export default {
data() {
return {}
},
computed: {},
computed: {
...mapState(['user']),
},
watch: {},
onLoad() {},
onShow() {},
methods: {},
methods: {
callPhone(phone) {
uni.makePhoneCall({ phoneNumber: phone })
},
previewImage(images, img) {
uni.previewImage({
urls: images.map((v) => v.url),
current: img,
})
},
},
}
</script>
<style scoped lang="scss">
.UserDetail {
height: 100%;
.top {
padding: 32px;
.topTitle {
font-size: 40px;
.user-list {
margin-bottom: 24px;
.item {
padding: 32px;
background-color: #fff;
.name {
font-size: 36px;
font-family: PingFangSC-Medium, PingFang SC;
font-weight: 500;
color: #333;
line-height: 50px;
margin-bottom: 8px;
.status {
float: right;
font-size: 28px;
font-family: PingFangSC-Regular, PingFang SC;
color: #ff4466;
line-height: 40px;
}
}
p {
font-size: 28px;
font-family: PingFangSC-Regular, PingFang SC;
color: #333;
line-height: 40px;
margin-bottom: 8px;
img {
width: 32px;
height: 32px;
margin-right: 18px;
vertical-align: middle;
}
}
.color-999 {
margin-bottom: 24px;
color: #999;
}
}
}
.info {
background-color: #fff;
padding: 0 32px;
.title {
line-height: 116px;
background: #fff;
font-size: 38px;
font-family: PingFangSC-Semibold, PingFang SC;
font-weight: 600;
color: #333333;
color: #333;
}
.msg{
.item-flex {
padding: 34px 0;
border-bottom: 1px solid #ddd;
display: flex;
justify-content: space-between;
line-height: 44px;
font-size: 32px;
font-family: PingFangSC-Regular, PingFang SC;
.label {
width: 206px;
color: #999;
}
.value {
width: calc(100% - 206px);
word-break: break-all;
color: #333;
text-align: right;
.phone-icon {
width: 40px;
height: 40px;
vertical-align: middle;
margin-right: 8px;
}
}
.temperature {
color: #ff4466;
}
}
.img-list {
img {
width: 320px;
height: 320px;
}
}
.item-flex:nth-last-of-type(1) {
border-bottom: 0;
}
}
.line-bg {
width: 100%;
height: 24px;
background-color: #f3f6f9;
}
.footer {
width: 100%;
height: 112px;
line-height: 112px;
background: #1365dd;
box-shadow: inset 0px 1px 0px 0px #eeeeee;
font-size: 32px;
font-family: PingFangSC-Medium, PingFang SC;
font-weight: 500;
color: #fff;
text-align: center;
}
}
</style>