485 lines
15 KiB
Vue
485 lines
15 KiB
Vue
<!-- 菜单悬浮的原理: 通过给菜单添加position:sticky实现, 用法超简单, 仅APP端的低端机不兼容 https://caniuse.com/#feat=css-sticky -->
|
||
<template>
|
||
<view class="content" style="background-color: #f7f7f7;">
|
||
<view class="sticky-tabs">
|
||
<!-- <u-tabs :list="tabs" :is-scroll="true" :current="tabIndex" @change="tabChange" active-color="#333333"
|
||
inactive-color="#333333"></u-tabs> -->
|
||
<view class="sticky-tabs-list" v-for="(item,index) in tabs" :key="index" @click="tabChange(index)">
|
||
<image :src="item.Aurl" mode="" v-if="tabIndex==index"></image>
|
||
<image :src="item.Surl" mode="" v-else></image>
|
||
<span :class="[tabIndex==index?'spanL':'spanH']">{{item.name}}</span>
|
||
</view>
|
||
</view>
|
||
<!-- 数据列表 -->
|
||
<view v-if="goods.length > 0" class="margin-sm bg" v-for="(item,index) in goods" :key='index'
|
||
@click="goNav('/my/order/pay?ordersId='+item.ordersId)" style="border-radius: 20rpx;padding: 36rpx;">
|
||
<view class="flex justify-between">
|
||
<view class="flex align-center">
|
||
<image src="../../static/logo.png" style="width: 48rpx;height: 48rpx;border-radius: 50%;">
|
||
</image>
|
||
<view class="margin-left-xs ">{{item.artificerName}}</view>
|
||
</view>
|
||
<view class="text-green" v-if="item.status ==1"><span>202312061140172215</span><span>待付款</span></view>
|
||
<view class="text-green" v-if="item.status ==2"><span>202312061140172215</span><span>待服务</span></view>
|
||
<view class="text-green" v-if="item.status ==3"><span>202312061140172215</span><span>待评价</span></view>
|
||
<view class="text-green" v-if="item.status ==9"><span>202312061140172215</span><span>待补单</span></view>
|
||
<view class="text-green" v-if="item.status ==5"><span>202312061140172215</span><span>已完成</span></view>
|
||
<view class="text-green" v-if="item.status ==6"><span>202312061140172215</span><span>服务中</span></view>
|
||
<view class="text-green" v-if="item.status ==7"><span>202312061140172215</span><span>技师出发</span></view>
|
||
<view class="text-green" v-if="item.status ==8"><span>202312061140172215</span><span>技师到达</span></view>
|
||
<view class="text-green" v-if="item.status ==4" style="color: #333333;">已取消</view>
|
||
<!-- <view class="u-tips-color">{{item.createTime}}</view> -->
|
||
</view>
|
||
<view class="margin-top-sm" style="width: 100%;height: 1rpx;background: #f7f7f7;"></view>
|
||
<view class=" u-flex u-p-t-30">
|
||
<view class="u-m-r-10">
|
||
<u-avatar
|
||
:src="(item.ordersMassageList && item.ordersMassageList.length > 0 && item.ordersMassageList[0].massageType && item.ordersMassageList[0].massageType.massageImg)?item.ordersMassageList[0].massageType.massageImg: '../../static/logo.png'"
|
||
mode="square" size="100" style="height: 132rpx;width: 132rpx;flex: 0 0 132rpx;">
|
||
</u-avatar>
|
||
</view>
|
||
<view class="u-flex-1" style="margin-left: 20rpx;">
|
||
<view class="text-bold u-line-1" style="width: 560rpx;">
|
||
<view class=" text-lg "
|
||
v-if="item.ordersMassageList && item.ordersMassageList.length > 0 && item.ordersMassageList[0].massageType && item.ordersMassageList[0].massageType.title"
|
||
style="font-size: 32rpx;margin-top: 0rpx;display: inline-block;width: 470rpx; overflow: hidden;white-space: nowrap;text-overflow: ellipsis;">
|
||
{{item.ordersMassageList[0].massageType.title}}
|
||
</view>
|
||
</view>
|
||
<view class="u-font-12 u-tips-color flex justify-between" style="margin-top: 6rpx;">
|
||
预约时间:{{item.serveTime}}
|
||
</view>
|
||
<view class="flex-sub u-font-12 margin-top-xs" style="color: #999999;">
|
||
实付:<text class="text-df" style="color: #FF1200;">¥</text><text class="text-xl text-bold" style="color: #FF1200;">{{item.sumMoney}}</text>
|
||
</view>
|
||
</view>
|
||
|
||
</view>
|
||
<view class="flex u-p-t-20 justify-between align-center" style="justify-content: flex-end;">
|
||
<view class="flex text-right">
|
||
<u-button
|
||
v-if="(item.status == 1 || item.status == 2 || item.status == 7 || item.status == 8) && yhqxSel != '否'"
|
||
:custom-style="customStyle" shape="circle" :plain="true"
|
||
class="btnsH"
|
||
@click="cancelOrder(item)">取消订单</u-button>
|
||
<u-button v-if="item.status != 4" :custom-style="customStyle1" shape="circle" :plain="true"
|
||
@click="goNav('/my/order/pay?ordersId='+item.ordersId)" class="btnsH">联系客服</u-button>
|
||
<u-button v-if="item.status != 4" :custom-style="customStyle1" shape="circle" :plain="true"
|
||
@click="goNav('/my/order/payModify?ordersId='+item.ordersId)" class="btnsH">修改订单</u-button>
|
||
<u-button v-if="item.status == 1" :custom-style="customStyle1" shape="circle" :plain="true"
|
||
@click="goNav('/my/order/pay?ordersId='+item.ordersId)" class="btns">去支付</u-button>
|
||
<u-button v-if="item.status == 2" :custom-style="customStyle1" shape="circle" :plain="true"
|
||
@click="goNav('/my/order/pay?ordersId='+item.ordersId)" class="btns">查看详情</u-button>
|
||
<!-- <u-button v-if="item.status == 6" :custom-style="customStyle" shape="circle" :plain="true"
|
||
@click="cancel(item)">订单完成</u-button> -->
|
||
<u-button v-if="item.status == 5" :custom-style="customStyle" shape="circle" class="btns" :plain="true" @click="goNav('/my/order/complain?id='+item.ordersId)" >
|
||
去投诉
|
||
</u-button>
|
||
|
||
<u-button v-if="item.status == 3" :custom-style="customStyle1" class="btns" shape="circle" :plain="true"
|
||
@click="goNav('/my/order/feedback?artificerId='+item.artificerId+ '&ordersId='+item.ordersId)">
|
||
去评价
|
||
</u-button>
|
||
<!-- <u-button v-if="item.status == 4" :custom-style="customStyle" shape="circle" :plain="true"
|
||
@click="delOrder(item)">删除订单</u-button> -->
|
||
</view>
|
||
</view>
|
||
</view>
|
||
<empty v-if="goods.length == 0"></empty>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
import MescrollMixin from "@/components/mescroll-uni/components/mescroll-uni/mescroll-mixins.js";
|
||
import mescrollBody from "@/components/mescroll-uni/components/mescroll-body/mescroll-body.vue";
|
||
import meTabs from "@/components/mescroll-uni/me-tabs/me-tabs.vue";
|
||
import empty from '@/components/empty.vue'
|
||
|
||
export default {
|
||
mixins: [MescrollMixin], // 使用mixin
|
||
components: {
|
||
mescrollBody,
|
||
meTabs,
|
||
empty
|
||
},
|
||
data() {
|
||
return {
|
||
goods: [], // 数据列表
|
||
game: [],
|
||
tabs: [{
|
||
name: '全部',
|
||
Aurl:'../../static/order_icon/order_icon1-1.png',
|
||
Surl:'../../static/order_icon/order_icon1.png',
|
||
status: '0'
|
||
}, {
|
||
name: '待支付',
|
||
Aurl:'../../static/order_icon/order_icon2-2.png',
|
||
Surl:'../../static/order_icon/order_icon2.png',
|
||
status: '1'
|
||
}, {
|
||
name: '待服务',
|
||
Aurl:'../../static/order_icon/order_icon3-3.png',
|
||
Surl:'../../static/order_icon/order_icon3.png',
|
||
status: '2'
|
||
}, {
|
||
name: '待补单',
|
||
Aurl:'../../static/order_icon/order_icon4-4.png',
|
||
Surl:'../../static/order_icon/order_icon4.png',
|
||
status: '9'
|
||
},{
|
||
name: '技师出发',
|
||
Aurl:'../../static/order_icon/order_icon10-10.png',
|
||
Surl:'../../static/order_icon/order_icon10.png',
|
||
status: '7'
|
||
}, {
|
||
name: '技师到达',
|
||
Aurl:'../../static/order_icon/order_icon5-5.png',
|
||
Surl:'../../static/order_icon/order_icon5.png',
|
||
status: '8'
|
||
}, {
|
||
name: '服务中',
|
||
Aurl:'../../static/order_icon/order_icon6-6.png',
|
||
Surl:'../../static/order_icon/order_icon6.png',
|
||
status: '6'
|
||
}, {
|
||
name: '待评价',
|
||
Aurl:'../../static/order_icon/order_icon7-7.png',
|
||
Surl:'../../static/order_icon/order_icon7.png',
|
||
status: '3'
|
||
}, {
|
||
name: '已取消',
|
||
Aurl:'../../static/order_icon/order_icon8-8.png',
|
||
Surl:'../../static/order_icon/order_icon8.png',
|
||
status: '4'
|
||
}, {
|
||
name: '已完成',
|
||
Aurl:'../../static/order_icon/order_icon9-9.png',
|
||
Surl:'../../static/order_icon/order_icon9.png',
|
||
status: '5'
|
||
}],
|
||
tabIndex: 0, // tab下标
|
||
page: 1,
|
||
limit: 10,
|
||
userId: 0,
|
||
status: 1,
|
||
nickName: '',
|
||
avatar: '',
|
||
customStyle: {
|
||
color: '#999999',
|
||
border: '4rpx solid #999999',
|
||
border: "8rpx",
|
||
width: '180rpx',
|
||
height: '60rpx',
|
||
margin: "0 0 0 20rpx",
|
||
fontSize: '26rpx'
|
||
},
|
||
customStyle1: {
|
||
color: '#FFFFFF',
|
||
backgroundColor: '',
|
||
border: "8rpx",
|
||
width: '180rpx',
|
||
height: '60rpx',
|
||
margin: "0 0 0 20rpx",
|
||
fontSize: '26rpx'
|
||
},
|
||
yhqxSel: '否'
|
||
// customStyle: {
|
||
// color: '#1789FD',
|
||
// backgroundColor: '#1E1F31',
|
||
// border: "8rpx",
|
||
// width: '180rpx',
|
||
// height: '54rpx',
|
||
// margin: "0 0 0 20rpx"
|
||
// }
|
||
}
|
||
},
|
||
onLoad() {
|
||
this.userId = uni.getStorageSync('userId')
|
||
this.nickName = uni.getStorageSync('nickName')
|
||
},
|
||
onShow() {
|
||
this.yhqxSel = this.$queue.getData("yhqxSel");
|
||
let SelectIndex = this.$queue.getData('SelectIndex');
|
||
if (SelectIndex) {
|
||
this.tabIndex = SelectIndex;
|
||
this.$queue.remove('SelectIndex')
|
||
}
|
||
|
||
let token = this.$queue.getData('token');
|
||
if (token) {
|
||
uni.showLoading({
|
||
title: '加载中...'
|
||
})
|
||
this.getOrderList()
|
||
} else {
|
||
uni.navigateTo({
|
||
url: '/pages/public/login'
|
||
});
|
||
}
|
||
},
|
||
methods: {
|
||
//获取列表数据
|
||
getOrderList() {
|
||
let curTab = this.tabs[this.tabIndex].status
|
||
|
||
let data = {
|
||
status: curTab,
|
||
page: this.page,
|
||
limit: this.limit
|
||
}
|
||
this.$Request.get('/app/artificer/selectOrdersList', data).then(res => {
|
||
if (res.code == 0) {
|
||
uni.hideLoading();
|
||
console.log(res)
|
||
if (this.page == 1) this.goods = []; //如果是第一页需手动制空列表
|
||
this.goods = [...this.goods, ...res.data.list]; //追加新数据
|
||
// this.goods.forEach(ret => {
|
||
// switch (ret.status) {
|
||
// case '1':
|
||
// ret.statusName = '待付款'
|
||
// break;
|
||
// case '2':
|
||
// ret.statusName = '进行中'
|
||
// break;
|
||
// case '3':
|
||
// ret.statusName = '已评价'
|
||
// break;
|
||
// case '4':
|
||
// ret.statusName = '已取消'
|
||
// break;
|
||
// case '5':
|
||
// ret.statusName = '已完成'
|
||
// break;
|
||
// }
|
||
// })
|
||
}
|
||
|
||
}).catch(() => {
|
||
//联网失败, 结束加载
|
||
|
||
});
|
||
},
|
||
// 切换菜单
|
||
tabChange(index) {
|
||
uni.showLoading({
|
||
title: '加载中...'
|
||
})
|
||
console.log("asdasd",index)
|
||
this.tabIndex = index
|
||
// this.goods = []; // 置空列表,显示加载进度条
|
||
this.page = 1
|
||
this.getOrderList()
|
||
},
|
||
// 取消订单
|
||
cancelOrder(e) {
|
||
let contentName = '';
|
||
let closeKC = this.$queue.getData('closeKC');
|
||
if (e.status == 7 || e.status == 8 && closeKC) {
|
||
let money = parseFloat(parseFloat(e.price) * parseFloat(closeKC)).toFixed(2);
|
||
contentName = '取消订单将扣除' + money + '元的手续费,并且车费将全部扣除!';
|
||
}
|
||
let that = this
|
||
uni.showModal({
|
||
title: '温馨提示',
|
||
content: '是否确认取消订单?' + contentName,
|
||
success: function(res) {
|
||
if (res.confirm) {
|
||
let data = {
|
||
ordersId: e.ordersId
|
||
}
|
||
that.$queue.showLoading('取消中...')
|
||
that.$Request.post('/app/artificer/deleteOrders', data).then(res => {
|
||
uni.hideLoading();
|
||
if (res.code == 0) {
|
||
that.page = 1
|
||
that.getOrderList()
|
||
} else {
|
||
that.$queue.showToast(res.msg);
|
||
}
|
||
})
|
||
} else if (res.cancel) {
|
||
console.log('用户点击取消');
|
||
}
|
||
}
|
||
});
|
||
},
|
||
/*下拉刷新的回调 */
|
||
downCallback() {
|
||
// 这里加载你想下拉刷新的数据, 比如刷新轮播数据
|
||
// loadSwiper();
|
||
// 下拉刷新的回调,默认重置上拉加载列表为第一页 (自动执行 page.num=1, 再触发upCallback方法 )
|
||
this.mescroll.resetUpScroll()
|
||
this.page = 1;
|
||
this.getOrderList();
|
||
},
|
||
// 完成订单
|
||
cancel(e) {
|
||
let that = this
|
||
uni.showModal({
|
||
title: '提示',
|
||
content: '确认完成订单吗?',
|
||
success: function(res) {
|
||
if (res.confirm) {
|
||
let data = {
|
||
ordersId: e.ordersId,
|
||
}
|
||
that.$queue.showLoading('提交中...')
|
||
that.$Request.post('/app/artificer/accomplishOrders', data).then(res => {
|
||
uni.hideLoading();
|
||
if (res.code == 0) {
|
||
that.page = 1
|
||
that.getOrderList()
|
||
} else {
|
||
that.$queue.showToast(res.msg);
|
||
}
|
||
})
|
||
} else if (res.cancel) {
|
||
console.log('用户点击取消');
|
||
}
|
||
}
|
||
});
|
||
},
|
||
//删除
|
||
delOrder(e) {
|
||
let that = this
|
||
uni.showModal({
|
||
title: '提示',
|
||
content: '确定删除订单吗?',
|
||
success: function(res) {
|
||
if (res.confirm) {
|
||
let data = {
|
||
ordersId: e.ordersId,
|
||
}
|
||
that.$queue.showLoading('删除中...')
|
||
that.$Request.post('/app/artificer/removeOrders', data).then(res => {
|
||
uni.hideLoading();
|
||
if (res.code == 0) {
|
||
uni.showToast({
|
||
name: "删除成功"
|
||
})
|
||
that.page = 1
|
||
that.getOrderList()
|
||
} else {
|
||
that.$queue.showToast(res.msg);
|
||
}
|
||
})
|
||
} else if (res.cancel) {
|
||
console.log('用户点击取消');
|
||
}
|
||
}
|
||
});
|
||
},
|
||
goNav(url) {
|
||
uni.navigateTo({
|
||
url
|
||
})
|
||
}
|
||
},
|
||
onReachBottom: function() {
|
||
this.page = this.page + 1;
|
||
this.getOrderList();
|
||
if (this.totalCount == this.orderList.length) {
|
||
uni.showToast({
|
||
title: '已经到底了~',
|
||
icon: 'none'
|
||
})
|
||
}
|
||
},
|
||
onPullDownRefresh: function() {
|
||
this.page = 1;
|
||
this.getOrderList();
|
||
setTimeout(d => {
|
||
uni.stopPullDownRefresh();
|
||
}, 2000)
|
||
},
|
||
}
|
||
</script>
|
||
|
||
<style lang="scss" scoped>
|
||
/deep/.btnsH{
|
||
background: #fff !important;
|
||
border: 1px solid #d7d7d7 !important;
|
||
color: #d7d7d7 !important;
|
||
}
|
||
/deep/.btns{
|
||
background: #fff !important;
|
||
border: 1px solid #019C88 !important;
|
||
color: #019C88 !important;
|
||
}
|
||
.text-green span:nth-child(1){
|
||
font-weight: 400;
|
||
font-size: 25rpx;
|
||
color: #7D7D7D;
|
||
margin-right: 10px;
|
||
}
|
||
/deep/.margin-top-sm{
|
||
margin-top: 3px;
|
||
}
|
||
.sticky-tabs {
|
||
width: 100%;
|
||
z-index: 990;
|
||
display: flex;
|
||
flex-direction: row;
|
||
align-items: center;
|
||
padding: 10px;
|
||
position: sticky;
|
||
top: var(--window-top);
|
||
flex-wrap: wrap;
|
||
align-content: flex-start;
|
||
background-color: #fff;
|
||
}
|
||
.sticky-tabs-list image{
|
||
width: 52.08rpx;
|
||
height: 50.69rpx;
|
||
}
|
||
.spanH{
|
||
color: #666;
|
||
}
|
||
.spanL{
|
||
color: #019C88;
|
||
}
|
||
.sticky-tabs-list span{
|
||
font-weight: bold;
|
||
font-size: 26rpx;
|
||
margin-top: 3px;
|
||
}
|
||
.sticky-tabs-list{
|
||
width: 20%;
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
justify-content: center;
|
||
margin-top: 10px;
|
||
|
||
}
|
||
/*
|
||
sticky生效条件:
|
||
1、父元素不能overflow:hidden或者overflow:auto属性。(mescroll-body设置:sticky="true"即可, mescroll-uni本身没有设置overflow)
|
||
2、必须指定top、bottom、left、right4个值之一,否则只会处于相对定位
|
||
3、父元素的高度不能低于sticky元素的高度
|
||
4、sticky元素仅在其父元素内生效,所以父元素必须是 mescroll
|
||
*/
|
||
|
||
|
||
// 使用mescroll-uni,则top为0
|
||
.mescroll-uni,
|
||
/deep/.mescroll-uni {
|
||
.sticky-tabs {
|
||
top: 0;
|
||
}
|
||
}
|
||
|
||
.demo-tip {
|
||
padding: 18upx;
|
||
font-size: 24upx;
|
||
text-align: center;
|
||
}
|
||
|
||
page {
|
||
background-color: #F7F7F7;
|
||
}
|
||
|
||
.bg {
|
||
background-color: #FFFFFF;
|
||
}
|
||
</style> |