|
|
|
<template>
|
|
|
|
<view>
|
|
|
|
<ul class="tab">
|
|
|
|
<li v-for="(tab, i) in tabs" :class="{active: curTab === tab.id}" @click="tabChange(tab)">{{ tab.name }}</li>
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
<uni-card :is-shadow="false" :border="false" padding="0" is-full>
|
|
|
|
<uni-search-bar class="search" radius="5" placeholder="请输入姓名、订单号" clearButton="auto" cancelButton="none" @confirm="search" />
|
|
|
|
</uni-card>
|
|
|
|
|
|
|
|
<view class="filter">
|
|
|
|
<sl-filter :independence="true" :menuList="menuList" @result="result"></sl-filter>
|
|
|
|
</view>
|
|
|
|
|
|
|
|
<uni-card :is-shadow="false" :border="false" is-full>
|
|
|
|
<ul class="list">
|
|
|
|
<li @click="toDetail({})">
|
|
|
|
<view class="num">1652163515968</view>
|
|
|
|
<view class="info">
|
|
|
|
<view class="left">
|
|
|
|
<view class="text">客户名称:海文</view>
|
|
|
|
<view class="text">订单金额:海文</view>
|
|
|
|
<view class="text">订单内容:海文</view>
|
|
|
|
<view class="text">下单日期:海文</view>
|
|
|
|
</view>
|
|
|
|
<view class="type">
|
|
|
|
待审核发货
|
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</uni-card>
|
|
|
|
|
|
|
|
<uni-icons class="plus" type="plus-filled" size="60" color="#007eff" @click="$util.to('../addOrder/addOrder')"></uni-icons>
|
|
|
|
</view>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import { queryCustomer } from '@/apis/modules/client.js'
|
|
|
|
import slFilter from '@/components/sl-filter/sl-filter.vue'
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
menuList: [
|
|
|
|
{
|
|
|
|
'title': '订单状态',
|
|
|
|
'detailTitle': '请选择订单状态',
|
|
|
|
'key': 'orderStatus',
|
|
|
|
'isMutiple': false,
|
|
|
|
'detailList': [
|
|
|
|
{
|
|
|
|
'title': '待发货',
|
|
|
|
'value': 0
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': '已完成',
|
|
|
|
'value': 1
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': '排序',
|
|
|
|
'detailTitle': '请选择排序(按下单日期)',
|
|
|
|
'key': 'key_3',
|
|
|
|
'isSort': true,
|
|
|
|
'isMutiple': false,
|
|
|
|
'detailList': [
|
|
|
|
{
|
|
|
|
'title': '顺序',
|
|
|
|
'value': 1
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'title': '倒序',
|
|
|
|
'value': 2
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
curTab: 0,
|
|
|
|
tabs: [
|
|
|
|
{
|
|
|
|
name: '我的订单',
|
|
|
|
id: 0
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: '团队全部订单',
|
|
|
|
id: 1
|
|
|
|
}
|
|
|
|
],
|
|
|
|
reachBottom: 0, // 是否是上拉加载。0->否,1->是,-1->加载完所有数据
|
|
|
|
isFilter: 0, // 是否是在筛选。0->否,1->是
|
|
|
|
status: 'more', // 上拉加载状态 more|loading|noMore
|
|
|
|
searchTimer: null,
|
|
|
|
customerType: '',
|
|
|
|
keyword: '',
|
|
|
|
list: [],
|
|
|
|
page: 1,
|
|
|
|
pageSize: 10
|
|
|
|
}
|
|
|
|
},
|
|
|
|
components: {
|
|
|
|
slFilter
|
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
keyword (newName, oldName) {
|
|
|
|
clearTimeout(this.searchTimer)
|
|
|
|
this.searchTimer = setTimeout(() => {
|
|
|
|
this.isFilter = 1
|
|
|
|
this.initList()
|
|
|
|
}, 500)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
// 下拉刷新
|
|
|
|
onPullDownRefresh() {
|
|
|
|
this.initList()
|
|
|
|
setTimeout(() => {
|
|
|
|
uni.stopPullDownRefresh()
|
|
|
|
}, 1500)
|
|
|
|
},
|
|
|
|
// 上拉加载
|
|
|
|
onReachBottom() {
|
|
|
|
if (this.reachBottom >= 0) {
|
|
|
|
this.reachBottom = 1
|
|
|
|
this.status = 'loading'
|
|
|
|
this.getList()
|
|
|
|
}
|
|
|
|
},
|
|
|
|
onLoad() {
|
|
|
|
// this.getList()
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
getList() {
|
|
|
|
queryCustomer({
|
|
|
|
countries: '中国',
|
|
|
|
provinceId: '',
|
|
|
|
cityId: '',
|
|
|
|
searchContent: this.keyword,
|
|
|
|
page: this.page,
|
|
|
|
size: this.pageSize
|
|
|
|
}).then(({ message }) => {
|
|
|
|
// 未加载完所有数据,并且不是筛选,则拼接list,否则直接赋值
|
|
|
|
this.list = (this.reachBottom >= 0 && !this.isFilter) ? [...this.list, ...message.list] : message.list
|
|
|
|
this.page++ // 每次获取了数据后page+1
|
|
|
|
const noMore = this.list.length === message.totalCount // 是否加载完所有数据
|
|
|
|
this.status = noMore ? 'noMore' : 'more' // 加载完了则设置为noMore
|
|
|
|
this.reachBottom = noMore ? -1 : 0 // 加载完了则设置为-1
|
|
|
|
this.isFilter = 0 // 获取数据后筛选状态重置为0
|
|
|
|
}).catch(e => {})
|
|
|
|
},
|
|
|
|
initList() {
|
|
|
|
this.page = 1
|
|
|
|
this.getList()
|
|
|
|
},
|
|
|
|
// 筛选确定回调
|
|
|
|
result(val) {
|
|
|
|
console.log(val)
|
|
|
|
this.customerType = val.customerType
|
|
|
|
},
|
|
|
|
// tab切换
|
|
|
|
tabChange(tab) {
|
|
|
|
this.curTab = tab.id
|
|
|
|
},
|
|
|
|
// 跳转详情
|
|
|
|
toDetail(item) {
|
|
|
|
this.$util.to(`../orderDetail/orderDetail?customerId=${item.customerId}&show=1`)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
|
.filter {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
.list {
|
|
|
|
.num {
|
|
|
|
font-size: 16px;
|
|
|
|
color: #333;
|
|
|
|
}
|
|
|
|
.info {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
.text {
|
|
|
|
font-size: 13px;
|
|
|
|
color: #ccc;
|
|
|
|
}
|
|
|
|
.type {
|
|
|
|
font-size: 14px;
|
|
|
|
color: #ff7b2d;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|