You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

143 lines
3.3 KiB

3 years ago
<template>
<view>
<uni-card :is-shadow="false" :border="false" is-full spacing="0" margin="20">
3 years ago
<uni-search-bar class="search" radius="5" placeholder="请输入成员名称" clearButton="auto" cancelButton="none" v-model="keyword" />
3 years ago
</uni-card>
<template v-if="list.length">
<ul class="list">
<li v-for="item in list">
<image class="avatar" src="@/static/image/avatar.png" mode=""></image>
<view class="info">
<view class="c-name">{{ item.userName }}</view>
<view class="line">
<text class="name">手机号码</text>
<text class="val">{{ item.phone }}</text>
</view>
<view class="line">
<text class="name">加入时间</text>
<text class="val">{{ item.lastLoginTime.split(' ')[0] }}</text>
</view>
</view>
</li>
</ul>
<uni-load-more :status="status" />
</template>
<empty v-else></empty>
3 years ago
3 years ago
<uni-icons class="plus" type="plus-filled" size="60" color="#007eff" @click="$util.to('../addStaff/addStaff')"></uni-icons>
3 years ago
</view>
</template>
<script>
3 years ago
import { teamList } from '@/apis/modules/parner.js'
3 years ago
export default {
data() {
return {
3 years ago
reachBottom: 0, // 是否是上拉加载。0->否,1->是,-1->加载完所有数据
status: 'more', // 上拉加载状态 more|loading|noMore
searchTimer: null,
keyword: '',
list: [],
page: 1,
pageSize: 10
3 years ago
}
},
3 years ago
watch: {
keyword () {
clearTimeout(this.searchTimer)
this.searchTimer = setTimeout(() => {
this.initList()
}, 500)
}
},
// 下拉刷新
onPullDownRefresh() {
this.initList()
setTimeout(() => {
uni.stopPullDownRefresh()
}, 1500)
},
// 上拉加载
onReachBottom() {
if (this.reachBottom >= 0) {
this.reachBottom = 1
this.status = 'loading'
this.getList()
}
},
onShow() {
this.initList()
},
3 years ago
methods: {
3 years ago
getList() {
teamList({
pageNum: this.page,
pageSize: this.pageSize,
keyWord: this.keyword,
partnerClassificationId: uni.getStorageSync('team').teamId
}).then(({ pageList }) => {
const { records } = pageList
3 years ago
// 未加载完所有数据,并且不是筛选,则拼接list,否则直接赋值
this.list = this.reachBottom > 0 ? [...this.list, ...records] : records
3 years ago
this.page++ // 每次获取了数据后page+1
const noMore = this.list.length === pageList.total // 是否加载完所有数据
3 years ago
this.status = noMore ? 'noMore' : 'more' // 加载完了则设置为noMore
this.reachBottom = noMore ? -1 : 0 // 加载完了则设置为-1
}).catch(e => {})
3 years ago
},
3 years ago
initList() {
this.page = 1
this.reachBottom = 0
this.getList()
3 years ago
}
}
}
</script>
<style scoped lang="scss">
.list {
margin-top: 20rpx;
3 years ago
background-color: #fff;
li {
display: flex;
align-items: center;
padding: 20rpx 40rpx;
3 years ago
border-bottom: 1px solid #f7f7f7;
&:last-child {
border-bottom: 0;
}
}
.avatar {
width: 100rpx;
height: 100rpx;
margin-right: 30rpx;
3 years ago
border-radius: 50%;
}
.c-name {
margin-bottom: 6rpx;
font-size: 30rpx;
3 years ago
color: #333;
}
.line {
display: flex;
padding: 2rpx 0;
}
.name {
margin-right: 10rpx;
white-space: nowrap;
font-size: 28rpx;
color: #999;
}
.val {
font-size: 28rpx;
color: #333;
3 years ago
}
}
.plus {
position: fixed;
bottom: 40rpx;
right: 40rpx;
3 years ago
}
</style>