<template>
|
<!-- 订单列表 -->
|
<view>
|
|
<h-tabs
|
class="tab"
|
:activeIndex="tabIndex"
|
@tabClick="tabChange"
|
:tabData="tabs"
|
:config="{
|
color: '#abb1cc',
|
activeColor: '#518EFF',
|
underLineColor: '#518EFF',
|
underLineHeight: 4,
|
fontSize: '28',
|
underLineWidth: 60,
|
}"
|
/>
|
<view class="header">
|
<search-bar @confirm="search" placeholder="输入会员姓名、手机号、订单号" class="mt-0"></search-bar>
|
</view>
|
<view v-if="tabIndex==0">
|
<view class="list">
|
<view class="list-item" v-for="item in orderList">
|
<view class="list-header">
|
<text>订单号: {{item.orderNo}}</text>
|
<text :class="caculateColor(item.orderStatus)">{{item.orderStatus}}</text>
|
</view>
|
<view class="list-content">
|
<view class="flex flex-v flex-1">
|
<text class="font-bold font-15">{{item.vipName}}</text>
|
<text class="gray">{{item.orderTime}}</text>
|
</view>
|
<view class="flex justify-between flex-1">
|
<view>
|
<view>应付金额</view>
|
<view>实付金额</view>
|
<view>欠款总额</view>
|
</view>
|
<view class="right">
|
<view>¥ {{item.needPay | formatNum}}</view>
|
<view>¥ {{item.realPay | formatNum}}</view>
|
<view>¥ {{item.arrears | formatNum}}</view>
|
</view>
|
</view>
|
</view>
|
<view class="list-footer">
|
<text class="blue-btn small-btn mr-10" @click="choose(item)">选择</text>
|
<navigator :url="'../orderDetail?orderId='+item.orderId" class="blue-btn small-btn">查看详情</navigator>
|
</view>
|
</view>
|
</view>
|
<no-record :isShow="!orderList.length" txt="暂无订单记录"></no-record>
|
<view v-if="orderList.length">
|
<uni-load-more :status="loadStatus" color="#a5abaf"></uni-load-more>
|
</view>
|
</view>
|
<view v-else>
|
<view class="list">
|
<view class="list-item" v-for="item in serviceOrderList">
|
<view class="list-header">
|
<text>订单号: {{item.serviceNo}}</text>
|
<text class="gray">{{item.time}}</text>
|
</view>
|
<view class="list-content">
|
<view class="flex flex-v">
|
<view>
|
<image src="../../../static/images/order-icon1.png" class="icon"></image>
|
<text>{{item.vipName}}</text>
|
</view>
|
<view class="flex mt-10">
|
<image src="../../../static/images/order-icon2.png" class="icon" style="padding-top: 3px;"></image>
|
<view>
|
<text class="block" :class="index===0?'':'mt-5'" v-for="(op, index) in item.projs">{{op.projName}}</text>
|
</view>
|
</view>
|
<view class="mt-10">
|
<image src="../../../static/images/order-icon3.png" class="icon"></image>
|
<text>{{item.bed || '-'}}</text>
|
</view>
|
|
</view>
|
<view class="flex flex-v right" style="flex: 0 0 70px;">
|
<text class="gray mb-5">{{item.timeLength}}分钟</text>
|
<text class="gray mt-5" v-for="(op, index) in item.projs">{{op.beautyName || '-'}}</text>
|
<text class="mt-10" :class="item.status==7 || item.status==8?'gray':'blue'">{{item.status | formatStatus}}</text>
|
</view>
|
</view>
|
<view class="list-footer">
|
<text class="blue-btn small-btn mr-10" @click="choose(item)">选择</text>
|
<navigator :url="'../serviceOrderDetail?id='+item.id" class="blue-btn small-btn">查看详情</navigator>
|
</view>
|
</view>
|
</view>
|
<no-record :isShow="!serviceOrderList.length" txt="暂无服务单记录"></no-record>
|
<view v-if="serviceOrderList.length">
|
<uni-load-more :status="loadStatus" color="#a5abaf"></uni-load-more>
|
</view>
|
</view>
|
</view>
|
</template>
|
|
<script>
|
import searchBar from '../../../components/searchBar/index.vue';
|
import HTabs from "@/components/liuyuno-tabs/liuyuno-tabs.vue";
|
export default{
|
components: {
|
searchBar,
|
HTabs
|
},
|
data() {
|
return {
|
tabIndex: 0,
|
tabs:[
|
{
|
state: 0,
|
name: '订单'
|
},
|
{
|
state: 1,
|
name: '服务单'
|
}
|
],
|
orderList: [],
|
serviceOrderList: [],
|
loadStatus: 'more',
|
pageNum: 1
|
}
|
},
|
onLoad() {
|
this.loadList()
|
},
|
onPullDownRefresh(){
|
this.reloadData();
|
let timer = setTimeout(function () {
|
uni.startPullDownRefresh();
|
clearTimeout(timer);
|
timer = null;
|
}, 800);
|
},
|
onReachBottom(){
|
this.loadList()
|
},
|
methods:{
|
|
reloadData(){
|
this.orderList = [];
|
this.serviceOrderList = [];
|
this.pageNum = 1;
|
this.loadStatus = 'more';
|
this.loadList();
|
},
|
loadList(){
|
const url = this.tabIndex==0?'/api/order/findOrderList':'/api/serviceOrder/findServiceOrderList'
|
if(this.loadStatus!=='more'){
|
return;
|
}
|
this.$httpUtils.request(url, {
|
pageNum: this.pageNum,
|
pageSize: 10,
|
queryKey: this.queryKey,
|
orderStatus: 0
|
}, 'POST').then((res) => {
|
if(res.status == 200){
|
let result = res.rows;
|
if(result.length < 10){
|
this.loadStatus = 'noMore';
|
} else {
|
this.pageNum ++ ;
|
this.loadStatus = 'more';
|
}
|
if(this.tabIndex == 0){
|
this.orderList = this.orderList.concat(result);
|
}else{
|
this.serviceOrderList = this.serviceOrderList.concat(result);
|
}
|
}
|
})
|
},
|
search(val){
|
this.queryKey = val;
|
this.reloadData()
|
},
|
tabChange(index){
|
if(this.tabIndex === index){
|
return;
|
}
|
this.tabIndex = index;
|
this.reloadData();
|
},
|
caculateColor(status){
|
if(status==='待付款'){
|
return 'blue'
|
} else if(status === '已付款'){
|
return 'blueness'
|
} else if(status === '欠款'){
|
return 'red'
|
} else {
|
return 'gray'
|
}
|
},
|
choose(item){
|
uni.$emit('orderChange', {
|
type: this.tabIndex,
|
id: this.tabIndex==0?item.orderId:item.id,
|
vipName: item.vipName,
|
vipId: item.vipId
|
});
|
setTimeout(() => {
|
uni.navigateBack();
|
}, 200)
|
}
|
},
|
filters:{
|
// 状态 1-待预约 2-待派单 3-待配料 4-待服务 5-服务中 6-服务完成 7-服务单结束 8-服务单取消
|
formatStatus(val){
|
if(val==1){
|
return '待预约'
|
} else if(val == 2){
|
return '待派单'
|
} else if(val == 3){
|
return '待配料'
|
} else if(val == 4){
|
return '待服务'
|
} else if(val == 5){
|
return '服务中'
|
} else if(val == 6){
|
return '已完成'
|
} else if(val == 7){
|
return '服务单结束'
|
} else {
|
return '已取消'
|
}
|
},
|
}
|
}
|
</script>
|
|
<style>
|
page{
|
background: #F6F6F8;
|
}
|
.header{
|
padding: 10px 10px 5px;
|
background: #FFFFFF;
|
}
|
.tab{
|
background: #FFFFFF;
|
}
|
.list-item{
|
background: #FFFFFF;
|
border-radius: 4px;
|
margin: 10px;
|
color: #3a3f3f;
|
border: 1px solid #EDEAF4;
|
padding: 0 10px;
|
}
|
.list-header{
|
display: flex;
|
justify-content: space-between;
|
padding: 12px 0;
|
font-size: 15px;
|
border-bottom: 1px solid #EDEAF4;
|
}
|
.list-content{
|
display: flex;
|
justify-content: space-between;
|
padding: 12px 0;
|
font-size: 14px;
|
line-height: 28px;
|
}
|
.list-content .icon{
|
width: 16px;
|
height: 16px;
|
vertical-align: sub;
|
margin-right: 10px;
|
}
|
.list-footer{
|
display: flex;
|
justify-content: flex-end;
|
padding: 10px 0;
|
border-top: 1px solid #EDEAF4;
|
}
|
</style>
|