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.
238 lines
5.8 KiB
238 lines
5.8 KiB
<template> |
|
<view class="page"> |
|
<view class="filter"> |
|
<uni-search-bar class="search" radius="30" placeholder="请输入客户名称" v-model="keyword" clearButton="auto" cancelButton="none" /> |
|
<uni-icons class="icon" custom-prefix="iconfont" type="icon-filter" size="18" color="#007eff" @click="popup = true"></uni-icons> |
|
</view> |
|
<ul class="tab"> |
|
<li v-for="(tab, i) in tabs" :class="{active: curTab === tab.id}" @click="tabChange(tab)">{{ tab.name }}</li> |
|
</ul> |
|
|
|
<template v-if="list.length"> |
|
<ul class="list"> |
|
<li v-for="item in list" @click="toDetail(item)"> |
|
<view class="c-name">{{ item.customerName }}</view> |
|
<view class="info"> |
|
<view class="left"> |
|
<view class="line"> |
|
<text class="name">联系人:</text> |
|
<text class="val">{{ item.orderContact }}</text> |
|
</view> |
|
<view class="line"> |
|
<text class="name">账号:</text> |
|
<text class="val">{{ item.account }}</text> |
|
</view> |
|
<view class="line"> |
|
<text class="name">产品到期时间:</text> |
|
<text class="val">{{ item.expireDate.split(' ')[0] }}</text> |
|
</view> |
|
<view class="line"> |
|
<text class="name">商务经理:</text> |
|
<text class="val">{{ item.businessManagerName }}</text> |
|
</view> |
|
</view> |
|
<view class="type"> |
|
{{ filterData[0].data.find(e => e.value === item.customerType).title }}客户 |
|
</view> |
|
</view> |
|
</li> |
|
</ul> |
|
<uni-load-more :status="status" /> |
|
</template> |
|
<empty v-else></empty> |
|
|
|
<uni-icons class="plus" type="plus-filled" size="60" color="#007eff" @click="$util.to('../clientDetail/clientDetail')"></uni-icons> |
|
<filter-popup :data="filterData" :form.sync="filterForm" v-model="popup" title="全部筛选" height="1104rpx" @finsh="subFinsh"></filter-popup> |
|
</view> |
|
</template> |
|
|
|
<script> |
|
import { list, all } from '@/apis/modules/client.js' |
|
export default { |
|
data() { |
|
return { |
|
popup: false, |
|
//筛选表单数据 |
|
filterData: [ |
|
{ |
|
children: false,//是否有子项 |
|
title: "客户类型", |
|
key: "customerType", //键名 接收对象名字 |
|
keyValue: "value", //获取的值是哪个 |
|
isRadio: true, //是否单选 否则多选 |
|
data: [ |
|
{ |
|
title: '正式', |
|
value: 1 |
|
}, |
|
{ |
|
title: '试用', |
|
value: 2 |
|
}, |
|
{ |
|
title: '到期', |
|
value: 3 |
|
} |
|
], |
|
} |
|
], |
|
filterForm: { |
|
customerType: [] |
|
}, |
|
curTab: 0, |
|
tabs: [], |
|
reachBottom: 0, // 是否是上拉加载。0->否,1->是,-1->加载完所有数据 |
|
status: 'more', // 上拉加载状态 more|loading|noMore |
|
searchTimer: null, |
|
customerType: '', |
|
keyword: '', |
|
list: [], |
|
page: 1, |
|
pageSize: 10 |
|
} |
|
}, |
|
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.initRole() |
|
}, |
|
methods: { |
|
// 初始化权限 |
|
initRole() { |
|
this.tabs = [] |
|
const auth = uni.getStorageSync('auth') |
|
auth.includes('首页:客户:我的客户') && this.tabs.push({ |
|
name: '我的客户', |
|
id: 0 |
|
}) |
|
auth.includes('首页:客户:团队全部客户') && this.tabs.push({ |
|
name: '团队全部客户', |
|
id: 1 |
|
}) |
|
const len = this.tabs.length |
|
// 只有一个的话,取第一个,而且不用显示tab |
|
if (len === 1) { |
|
this.curTab = this.tabs[0].id |
|
this.tabs = [] |
|
} |
|
this.initList() |
|
}, |
|
// 获取列表 |
|
getList() { |
|
const data = { |
|
businessManagerId: this.$util.getBmId(), |
|
teamId: uni.getStorageSync('team').teamId, |
|
customerType: this.customerType, |
|
keywords: this.keyword, |
|
pageNum: this.page, |
|
pageSize: this.pageSize, |
|
type: this.curTab // 团队:1 / 个人:0 |
|
} |
|
all(data).then(({ data }) => { |
|
// 未加载完所有数据,并且不是筛选,则拼接list,否则直接赋值 |
|
this.list = this.reachBottom > 0 ? [...this.list, ...data.records] : data.records |
|
this.page++ // 每次获取了数据后page+1 |
|
const noMore = this.list.length === data.total // 是否加载完所有数据 |
|
this.status = noMore ? 'noMore' : 'more' // 加载完了则设置为noMore |
|
this.reachBottom = noMore ? -1 : 0 // 加载完了则设置为-1 |
|
}).catch(e => {}) |
|
}, |
|
initList() { |
|
this.page = 1 |
|
this.reachBottom = 0 |
|
this.getList() |
|
}, |
|
// 筛选确定回调 |
|
subFinsh(val) { |
|
const { customerType } = val |
|
this.customerType = customerType.length ? customerType[0] : '' |
|
this.initList() |
|
}, |
|
// tab切换 |
|
tabChange(tab) { |
|
this.curTab = tab.id |
|
this.initList() |
|
}, |
|
// 跳转详情 |
|
toDetail(item) { |
|
this.$util.to(`../clientDetail/clientDetail?customerId=${item.customerId}&show=1`) |
|
} |
|
} |
|
} |
|
</script> |
|
|
|
<style scoped lang="scss"> |
|
.page { |
|
padding-bottom: 90px; |
|
} |
|
.filter { |
|
display: flex; |
|
align-items: center; |
|
.search { |
|
flex: 1; |
|
} |
|
.sl-filter { |
|
width: 30%; |
|
margin-left: 10%; |
|
} |
|
} |
|
.list { |
|
margin-top: 20rpx; |
|
background-color: #fff; |
|
li { |
|
padding: 20rpx 40rpx; |
|
border-bottom: 1px solid #f1f1f1; |
|
} |
|
.c-name { |
|
font-size: 30rpx; |
|
color: #333; |
|
} |
|
.info { |
|
display: flex; |
|
justify-content: space-between; |
|
align-items: center; |
|
margin-top: 10rpx; |
|
} |
|
.line { |
|
display: flex; |
|
padding: 10rpx 0; |
|
} |
|
.name { |
|
width: 200rpx; |
|
margin-right: 10rpx; |
|
font-size: 28rpx; |
|
color: #999; |
|
} |
|
.val { |
|
max-width: 70%; |
|
font-size: 28rpx; |
|
color: #333; |
|
} |
|
.type { |
|
font-size: 28rpx; |
|
color: #ff7b2d; |
|
white-space: nowrap; |
|
} |
|
} |
|
</style>
|
|
|