2023-08-03 14:05:16 +08:00
|
|
|
<template>
|
|
|
|
<view class="page">
|
2023-08-04 16:09:05 +08:00
|
|
|
<!-- <view class="card" v-for="item in list" :key="item.id" @click="navTo('/subpkg/archives/archives?id='+item.id)">
|
2023-08-03 14:05:16 +08:00
|
|
|
<view class="top">
|
|
|
|
<u--image class="u_avatar" :showLoading="true" :src="item.avatar||'../../static/img/public/man.png'"
|
|
|
|
width="112.28rpx" height="112.28rpx" shape="circle">
|
|
|
|
</u--image>
|
|
|
|
<view class="text">
|
|
|
|
<view class="name">{{item.nickname}}</view>
|
|
|
|
<view class="mobile">
|
|
|
|
<uni-icons type="phone" color="#999999FF"></uni-icons>联系方式-<text>{{item.account}}</text>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view class="bottom">
|
|
|
|
<view class="left">
|
|
|
|
<view class="circle"></view>
|
|
|
|
<view class="green">片区</view>
|
|
|
|
<view class="b_l_text">{{item.area_name+item.street_name}}</view>
|
|
|
|
</view>
|
|
|
|
<view class="right">{{'管理户数: '+item.informationg_count+" 户"}}</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<u-loadmore :status="loadConfig.status" :loading-text="loadConfig.loadingText"
|
2023-08-04 16:09:05 +08:00
|
|
|
:loadmore-text="loadConfig.loadmoreText" :nomore-text="loadConfig.nomoreText" /> -->
|
|
|
|
<view class="personnel_list">
|
|
|
|
<block v-for="(item, index) in list" :key="item.id">
|
|
|
|
<view class="personnel_item" @click="navTo('/subpkg/archives/archives?id='+item.id)">
|
|
|
|
<view class="type" :class="item.is_contract?'type_blue':''">
|
|
|
|
<image v-if="item.is_contract" src="../../static/icons/ok_w.png"></image>
|
|
|
|
<image v-else src="../../static/icons/err_w.png"></image>
|
|
|
|
</view>
|
|
|
|
<view class="top" style="margin-bottom: 28rpx;">
|
|
|
|
<view class="left">
|
|
|
|
<u--image class="u_avatar" :showLoading="true" :src="item.avatar||'../../static/img/public/man.png'"
|
|
|
|
width="112.28rpx" height="112.28rpx" shape="circle"></u--image>
|
|
|
|
</view>
|
|
|
|
<view class="right">
|
|
|
|
<view class="info_top">
|
|
|
|
<view class="info_name">{{item.nickname}}</view>
|
|
|
|
<text class="phone">电话:</text>
|
|
|
|
<text class="tel">{{item.phone||item.account}}</text>
|
|
|
|
</view>
|
|
|
|
<view class="info_bottom">
|
|
|
|
<text class="item phone">
|
|
|
|
分管片区:
|
|
|
|
</text>
|
|
|
|
<view class="item">
|
|
|
|
<view class="location">{{ item.city_name+item.area_name+item.street_name }}</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view class="company">
|
|
|
|
<text>
|
|
|
|
所属公司:
|
|
|
|
</text>
|
|
|
|
<view class="itm" v-if="item.company">{{item.company.company_name}}</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<u-line color="#999999FF"></u-line>
|
|
|
|
<view class="bottom" style="margin-top: 28rpx;float: right;">
|
|
|
|
<view class="look">{{'管理户数: '+item.informationg_count+" 户"}}</view>
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</block>
|
|
|
|
<u-empty v-if="loadConfig.status=='nomore'&& list.length==0" icon="/static/img/empty/data.png"></u-empty>
|
|
|
|
<u-loadmore v-else :status="loadConfig.status" :loading-text="loadConfig.loadingText"
|
|
|
|
:loadmore-text="loadConfig.loadmoreText" :nomore-text="loadConfig.nomoreText" />
|
|
|
|
</view>
|
|
|
|
|
2023-08-03 14:05:16 +08:00
|
|
|
</view>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import { companyUser } from "@/api/company.js"
|
|
|
|
import { Toast } from '@/libs/uniApi.js'
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
list: [],
|
|
|
|
loadConfig: {
|
|
|
|
page: 1,
|
|
|
|
limit: 15,
|
|
|
|
lastpage: '',
|
|
|
|
loadingText: '努力加载中',
|
|
|
|
loadmoreText: '轻轻上拉',
|
|
|
|
nomoreText: '我也是有底线的~~',
|
|
|
|
status: 'loadmore'
|
|
|
|
},
|
|
|
|
}
|
|
|
|
},
|
|
|
|
onLoad() {
|
|
|
|
this.initLoad()
|
|
|
|
},
|
|
|
|
onShow() {},
|
|
|
|
onReachBottom() {
|
|
|
|
this.loadList();
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
navTo(url) {
|
|
|
|
url ?
|
|
|
|
uni.navigateTo({
|
|
|
|
url: url,
|
|
|
|
}) : Toast('暂未开放')
|
|
|
|
},
|
|
|
|
initLoad() {
|
|
|
|
this.loadConfig.page = 1;
|
|
|
|
this.loadConfig.status = "loadmore";
|
|
|
|
this.list = [];
|
|
|
|
this.loadList();
|
|
|
|
},
|
|
|
|
async loadList() {
|
|
|
|
if (this.loadConfig.status == "nomore") return;
|
|
|
|
this.loadConfig.status = "loading";
|
|
|
|
let res = await companyUser({
|
|
|
|
page: this.loadConfig.page,
|
|
|
|
limit: this.loadConfig.limit,
|
|
|
|
company_id: this.$store.state.app.userInfo.company_id,
|
|
|
|
is_captain: 1
|
|
|
|
})
|
|
|
|
this.loadConfig.status = "loadmore"
|
|
|
|
if (res.data.data.length < this.loadConfig.limit) {
|
|
|
|
this.loadConfig.status = "nomore"
|
|
|
|
} else {
|
|
|
|
this.loadConfig.page++;
|
|
|
|
}
|
|
|
|
this.list = [...this.list, ...res.data.data];
|
|
|
|
},
|
|
|
|
},
|
|
|
|
onPullDownRefresh() {
|
|
|
|
uni.stopPullDownRefresh()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
.page {
|
|
|
|
padding-top: 28rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card {
|
|
|
|
margin: 0 auto;
|
|
|
|
margin-bottom: 28rpx;
|
|
|
|
padding: 28rpx;
|
|
|
|
width: 694rpx;
|
|
|
|
height: 221rpx;
|
|
|
|
background: #FFFFFF;
|
|
|
|
border-radius: 14rpx 14rpx 14rpx 14rpx;
|
|
|
|
opacity: 1;
|
|
|
|
|
|
|
|
.top {
|
|
|
|
display: flex;
|
|
|
|
justify-content: left;
|
|
|
|
// align-items: center;
|
|
|
|
|
|
|
|
.avatar {
|
|
|
|
width: 88rpx;
|
|
|
|
height: 88rpx;
|
|
|
|
border-radius: 50%;
|
|
|
|
margin-right: 18rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.u_avatar {
|
|
|
|
margin-right: 18rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.text {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-around;
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
.name {
|
|
|
|
font-size: 32rpx;
|
|
|
|
font-weight: 500;
|
|
|
|
color: #333333;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mobile {
|
|
|
|
color: #999999;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.bottom {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
font-size: 25rpx;
|
|
|
|
font-weight: 400;
|
|
|
|
|
|
|
|
.left {
|
|
|
|
display: flex;
|
|
|
|
justify-content: left;
|
|
|
|
align-items: center;
|
|
|
|
margin-top: 20rpx;
|
|
|
|
|
|
|
|
.circle {
|
|
|
|
width: 11rpx;
|
|
|
|
height: 11rpx;
|
|
|
|
opacity: 1;
|
|
|
|
border: 2rpx solid #34A853;
|
|
|
|
margin-right: 10rpx;
|
|
|
|
border-radius: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.green {
|
|
|
|
font-weight: 400;
|
|
|
|
color: #34A853;
|
|
|
|
line-height: 0rpx;
|
|
|
|
margin-right: 18rpx;
|
|
|
|
-webkit-background-clip: text;
|
|
|
|
}
|
2023-08-04 16:09:05 +08:00
|
|
|
|
|
|
|
.b_l_text {
|
2023-08-03 14:05:16 +08:00
|
|
|
width: 360rpx;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.right {
|
|
|
|
color: #3274F9;
|
|
|
|
margin-top: 20rpx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-08-04 16:09:05 +08:00
|
|
|
|
|
|
|
.personnel_list {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
padding-bottom: 130rpx;
|
|
|
|
|
|
|
|
.personnel_item {
|
|
|
|
width: 694rpx;
|
|
|
|
// height: 407rpx;
|
|
|
|
background: #FFFFFF;
|
|
|
|
border-radius: 14rpx 14rpx 14rpx 14rpx;
|
|
|
|
margin-bottom: 32rpx;
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
|
|
|
padding: 28rpx;
|
|
|
|
|
|
|
|
.type {
|
|
|
|
width: 50rpx;
|
|
|
|
height: 50rpx;
|
|
|
|
background-color: #F02828;
|
|
|
|
border-radius: 50%;
|
|
|
|
font-size: 25rpx;
|
|
|
|
font-weight: 400;
|
|
|
|
color: #FFFFFF;
|
|
|
|
line-height: 35rpx;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
position: absolute;
|
|
|
|
top: 28rpx;
|
|
|
|
right: 28rpx;
|
|
|
|
|
|
|
|
image {
|
|
|
|
width: 18rpx;
|
|
|
|
height: 18rpx;
|
|
|
|
margin-right: 1rpx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.type_blue {
|
|
|
|
background-color: #34A853;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top {
|
|
|
|
// background-color: #3274F9;
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
.right {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-around;
|
|
|
|
margin-left: 28rpx;
|
|
|
|
font-size: 25rpx;
|
|
|
|
font-weight: 400;
|
|
|
|
overflow: hidden;
|
|
|
|
color: #999999;
|
|
|
|
|
|
|
|
.info_top {
|
|
|
|
display: flex;
|
|
|
|
align-items: flex-end;
|
|
|
|
font-size: 25rpx;
|
|
|
|
font-weight: 400;
|
|
|
|
color: $theme-oa-color;
|
|
|
|
margin-bottom: 10rpx;
|
|
|
|
|
|
|
|
.info_name {
|
|
|
|
font-size: 32rpx;
|
|
|
|
font-weight: 400;
|
|
|
|
color: #333333;
|
|
|
|
margin-right: 18rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phone {
|
|
|
|
margin-left: 30rpx;
|
|
|
|
color: #999999;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tel {
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.info_bottom {
|
|
|
|
display: flex;
|
|
|
|
margin-bottom: 8rpx;
|
|
|
|
|
|
|
|
.item {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phone {
|
|
|
|
margin-right: 28rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.location {
|
|
|
|
width: 320rpx;
|
|
|
|
white-space: nowrap;
|
|
|
|
/* 不换行 */
|
|
|
|
overflow: hidden;
|
|
|
|
/* 将超出文本隐藏 */
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
/* 使用省略号表示被隐藏的文本 */
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.company {
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
text {
|
|
|
|
margin-right: 30rpx;
|
|
|
|
}
|
|
|
|
|
|
|
|
.itm {
|
|
|
|
width: 320rpx;
|
|
|
|
white-space: nowrap;
|
|
|
|
/* 不换行 */
|
|
|
|
overflow: hidden;
|
|
|
|
/* 将超出文本隐藏 */
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
/* 使用省略号表示被隐藏的文本 */
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.center {
|
|
|
|
padding: 28rpx 0;
|
|
|
|
|
|
|
|
.top {
|
|
|
|
font-size: 28rpx;
|
|
|
|
font-weight: 400;
|
|
|
|
color: #666666FF;
|
|
|
|
margin-bottom: 20rpx;
|
|
|
|
|
|
|
|
.green {
|
|
|
|
color: #34A853FF;
|
|
|
|
}
|
|
|
|
|
|
|
|
.yellow {
|
|
|
|
color: #F9AA32FF;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.bottom {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-around;
|
|
|
|
font-size: 25rpx;
|
|
|
|
font-weight: 400;
|
|
|
|
color: #999999;
|
|
|
|
|
|
|
|
image {
|
|
|
|
width: 18rpx;
|
|
|
|
height: 18rpx;
|
|
|
|
margin-right: 9rpx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.bottom {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
.look {
|
|
|
|
height: 43rpx;
|
|
|
|
background: #FFFFFF;
|
|
|
|
border-radius: 26rpx 26rpx 26rpx 26rpx;
|
|
|
|
opacity: 1;
|
|
|
|
// border: 2rpx solid $theme-oa-color;
|
|
|
|
font-size: 28rpx;
|
|
|
|
font-weight: 400;
|
|
|
|
margin-left: 28rpx;
|
|
|
|
color: $theme-oa-color;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sign {
|
|
|
|
color: #34A853;
|
|
|
|
// border: 2rpx solid #34A853;
|
|
|
|
}
|
|
|
|
|
|
|
|
.red {
|
|
|
|
color: #F02828;
|
|
|
|
// border: 2rpx solid #F02828;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-08-03 14:05:16 +08:00
|
|
|
</style>
|