2022-01-10 15:13:54 +08:00
|
|
|
<template>
|
|
|
|
|
<div class="BackUserList">
|
|
|
|
|
<div class="header">
|
|
|
|
|
<div class="tab-item">
|
|
|
|
|
<h2 style="color:#2C51CE;">274</h2>
|
|
|
|
|
<p>返乡人员</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="tab-item">
|
|
|
|
|
<h2 style="color:#5AAD6A;">274</h2>
|
|
|
|
|
<p>今日返乡</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="tab-item">
|
|
|
|
|
<h2 style="color:#F5A319;">274</h2>
|
|
|
|
|
<p>今日异常</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="tab-item">
|
|
|
|
|
<h2 style="color:#CD413A;border-right:0;">274</h2>
|
|
|
|
|
<p>异常处理</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="search">
|
|
|
|
|
<div class="left">
|
|
|
|
|
<AiAreaPicker v-model="areaId" all :areaId="user.areaId" @select="areaSelect" :name.sync="areaName" style="color: #666">
|
|
|
|
|
<u-icon name="map-fill" color="#3192F4" size="20px" style="vertical-align: text-bottom"></u-icon>
|
|
|
|
|
<span style="margin-left: 4px" v-if="areaName">{{ areaName }}</span>
|
|
|
|
|
<span v-else>请选择</span>
|
|
|
|
|
<u-icon name="arrow-down" color="#666" size="28" style="margin-left: 4px" />
|
|
|
|
|
</AiAreaPicker>
|
|
|
|
|
</div>
|
|
|
|
|
<u-search v-model="keyword" :clearabled="true" placeholder="请输入姓名" :show-action="false" bg-color="#F5F5F5" search-icon-color="#999" color="#999" height="58" @search="handerSearch" @clear="handerClear"></u-search>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="tab-select">
|
|
|
|
|
<div class="item active">返乡人员<span></span></div>
|
|
|
|
|
<div class="item">异常人员<span></span></div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="user-list">
|
|
|
|
|
<div class="item" @click="toUser">
|
|
|
|
|
<h2 class="name">林益丰<span class="status">有异常</span></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>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import { mapState } from 'vuex'
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
areaId: '',
|
|
|
|
|
areaName: ''
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
computed: { ...mapState(['user']) },
|
|
|
|
|
onShow() {},
|
|
|
|
|
methods: {
|
|
|
|
|
areaSelect() {
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
toUser() {
|
2022-01-10 17:55:30 +08:00
|
|
|
uni.navigateTo({url: './ErrorDetail'})
|
2022-01-10 15:13:54 +08:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
.BackUserList {
|
|
|
|
|
.header{
|
|
|
|
|
padding: 54px 32px 48px 32px;
|
|
|
|
|
display: flex;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
margin-bottom: 4px;
|
|
|
|
|
.tab-item{
|
|
|
|
|
flex: 1;
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
|
|
h2{
|
|
|
|
|
font-size: 52px;
|
|
|
|
|
font-family: DINAlternate-Bold, DINAlternate;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
height: 80px;
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
letter-spacing: -4px;
|
|
|
|
|
border-right: 1px solid #ddd;
|
|
|
|
|
line-height: 44px;
|
|
|
|
|
}
|
|
|
|
|
p{
|
|
|
|
|
font-size: 28px;
|
|
|
|
|
font-family: PingFangSC-Regular, PingFang SC;
|
|
|
|
|
color: #999;
|
|
|
|
|
line-height: 40px;
|
|
|
|
|
margin-top: -22px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.tab-item:nth-last-of-type(1) {
|
|
|
|
|
border-right: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.search{
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 112px;
|
|
|
|
|
padding: 32px;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
background: #FFF;
|
|
|
|
|
display: flex;
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
.left{
|
|
|
|
|
width: calc(100% - 402px);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.tab-select{
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 96px;
|
|
|
|
|
background: #FFF;
|
|
|
|
|
display: flex;
|
|
|
|
|
margin-bottom: 4px;
|
|
|
|
|
.item{
|
|
|
|
|
flex: 1;
|
|
|
|
|
font-size: 32px;
|
|
|
|
|
line-height: 96px;
|
|
|
|
|
font-family: PingFangSC-Regular, PingFang SC;
|
|
|
|
|
color: #333;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
.active{
|
|
|
|
|
color: #135AB8;
|
|
|
|
|
position: relative;
|
|
|
|
|
span{
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
left: 92px;
|
|
|
|
|
width: 192px;
|
|
|
|
|
border-bottom: 4px solid #135AB8;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.user-list{
|
|
|
|
|
.item{
|
|
|
|
|
padding: 32px 64px 24px;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
.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;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|