|
@@ -0,0 +1,166 @@
|
|
|
+<template>
|
|
|
+ <div>
|
|
|
+ <div v-if="shows">
|
|
|
+ <van-nav-bar
|
|
|
+ title="填报列表"
|
|
|
+ left-arrow
|
|
|
+ left-text="返回"
|
|
|
+ @click-left="onClickLeft"
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ <div class="contents">
|
|
|
+ <div class="contents_headers_img">
|
|
|
+ <img src="../../../assets/images/zaoquan/yiqing/日期.png" alt="" />
|
|
|
+ <span>2021-08-08 08:20:35</span>
|
|
|
+ </div>
|
|
|
+ <div class="contents_one">
|
|
|
+ <img src="../../../assets/images/zaoquan/yiqing/定位.png" alt="" />
|
|
|
+ <p>宁夏自治区灵武市枣泉煤矿东大门</p>
|
|
|
+ </div>
|
|
|
+ <div class="contents_two">
|
|
|
+ <div class="contents_three">
|
|
|
+ <div class="contents_four">
|
|
|
+ <span>姓名</span>
|
|
|
+ <span class="contents_four_span">张值绫</span>
|
|
|
+ </div>
|
|
|
+ <div class="contents_five">
|
|
|
+ <span>是否接种疫苗</span>
|
|
|
+ <span class="contents_five_span">是</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="contents_three">
|
|
|
+ <div class="contents_four">
|
|
|
+ <span>部门</span>
|
|
|
+ <span class="contents_four_span">部门名称</span>
|
|
|
+ </div>
|
|
|
+ <div class="contents_five">
|
|
|
+ <span>是否做过核算检测</span>
|
|
|
+ <span class="contents_five_span">是</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="contents_three">
|
|
|
+ <div class="contents_four">
|
|
|
+ <span>体温</span>
|
|
|
+ <span class="contents_four_span">36.5</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div v-if="showdiv=='否'">
|
|
|
+ <p class="contents_six">未接种疫苗原因</p>
|
|
|
+ <p class="contents_serve">原因我也不知道</p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+export default {
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ shows: true,
|
|
|
+ showdiv:"是"
|
|
|
+ };
|
|
|
+ },
|
|
|
+ methods: {},
|
|
|
+ mounted() {
|
|
|
+ document.body.style.backgroundColor = "#39f"; //背景色
|
|
|
+ },
|
|
|
+};
|
|
|
+</script>
|
|
|
+
|
|
|
+<style scoped>
|
|
|
+>>> .van-nav-bar {
|
|
|
+ background: #39f;
|
|
|
+}
|
|
|
+>>> .van-nav-bar__title {
|
|
|
+ color: #fff;
|
|
|
+}
|
|
|
+>>> .van-nav-bar .van-icon {
|
|
|
+ color: #fff;
|
|
|
+}
|
|
|
+>>> .van-nav-bar__text {
|
|
|
+ color: #fff;
|
|
|
+}
|
|
|
+[class*="van-hairline"]:after {
|
|
|
+ border: none;
|
|
|
+}
|
|
|
+.contents {
|
|
|
+ width: 92%;
|
|
|
+ margin: 0 auto 10px;
|
|
|
+ background: #fff;
|
|
|
+ border-radius: 10px;
|
|
|
+ border: 1px solid transparent;
|
|
|
+}
|
|
|
+.contents_one {
|
|
|
+ width: 95%;
|
|
|
+ margin: 5px auto;
|
|
|
+ padding-bottom: 10px;
|
|
|
+ display: flex;
|
|
|
+ justify-content: left;
|
|
|
+ border-bottom: 1px solid #f0f0f0;
|
|
|
+}
|
|
|
+.contents_one > img {
|
|
|
+ width: 30px;
|
|
|
+ height: 30px;
|
|
|
+}
|
|
|
+.contents_one > p {
|
|
|
+ font-size: 14px;
|
|
|
+ margin-left: 15px;
|
|
|
+ margin-top: 5px;
|
|
|
+ color: #00a1e9;
|
|
|
+}
|
|
|
+.contents_headers_img {
|
|
|
+ width: 50%;
|
|
|
+ height: 30px;
|
|
|
+ margin-top: 10px;
|
|
|
+ line-height: 22px;
|
|
|
+ background: #39f;
|
|
|
+ border-radius: 0px 5px 5px 0px;
|
|
|
+ display: flex;
|
|
|
+ justify-content: left;
|
|
|
+}
|
|
|
+.contents_headers_img > img {
|
|
|
+ width: 18px;
|
|
|
+ height: 18px;
|
|
|
+ margin-left: 10px;
|
|
|
+ margin-top: 6px;
|
|
|
+}
|
|
|
+.contents_headers_img > span {
|
|
|
+ font-size: 14px;
|
|
|
+ color: #fff;
|
|
|
+ margin-top: 5px;
|
|
|
+ margin-left: 5px;
|
|
|
+}
|
|
|
+.contents_two {
|
|
|
+ width: 95%;
|
|
|
+ margin: 5px auto;
|
|
|
+ padding-bottom: 10px;
|
|
|
+}
|
|
|
+.contents_three {
|
|
|
+ margin: 5px auto;
|
|
|
+ padding-bottom: 10px;
|
|
|
+ border-bottom: 1px solid #f0f0f0;
|
|
|
+ display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
+}
|
|
|
+.contents_four {
|
|
|
+ width: 50%;
|
|
|
+}
|
|
|
+.contents_five {
|
|
|
+ width: 50%;
|
|
|
+}
|
|
|
+.contents_four_span {
|
|
|
+ margin-left: 8px;
|
|
|
+ color: #9b9b9b;
|
|
|
+}
|
|
|
+.contents_five_span {
|
|
|
+ float: right;
|
|
|
+ color: #9b9b9b;
|
|
|
+}
|
|
|
+.contents_six {
|
|
|
+ margin: 5px auto;
|
|
|
+}
|
|
|
+.contents_serve {
|
|
|
+ color: #9b9b9b;
|
|
|
+}
|
|
|
+</style>
|