mrr.sj.front/pages/shop/buy-order.vue

690 lines
16 KiB
Vue
Raw Normal View History

2026-03-24 11:45:13 +08:00
<template>
<view class="order-list">
<view v-if="isLogin">
<!-- 订单状态标签 -->
<scroll-view scroll-x class="status-tabs" :show-scrollbar="false">
<view class="tab-item" v-for="(tab, index) in tabs" :key="tab.id"
:class="{ active: currentTab === tab.id }" @click="switchTab(tab.id)">
{{tab.title}}
</view>
</scroll-view>
<!-- 订单列表 -->
<scroll-view scroll-y class="order-scroll" @scrolltolower="loadMore" refresher-enabled
:refresher-triggered="isRefreshing" @refresherrefresh="onRefresh">
<view class="order-item" v-for="(order, index) in orderList" :key="index">
<!-- 订单编号和状态 -->
<view class="order-header">
<view class="order-tag">
<text
class="order-tag-text">{{order.order_kind == 1 ? '到家' : order.order_kind == 2 ? '到店' : ''}}</text>
</view>
<text class="order-number">订单编号{{order.number}}</text>
<text class="order-status"
:class="order.statusClass">{{order.state == 1 ? '待支付' : order.state == 2 ? '待接单' : order.state == 3 ? '待服务' : order.state == 4 ? '待完成' : order.state == 5 ? '已完成' : order.state == 6 ? '待评价' : order.state == 7 ? '已取消' : ''}}</text>
</view>
<!-- 订单内容 -->
<view class="order-content" @click="goDetail(order)">
<image v-if="order.order_photo" :src="order.order_photo[0]" mode="aspectFill"
class="service-image"></image>
<view class="service-image" v-else></view>
<view class="service-info">
<text class="service-name">{{order.server_title}}</text>
<view class="service-time" v-if="order.order_kind == 1">
<image src="/static/images/time_icon.png" class="time-icon"></image>
<text>{{order.reservation_time}}</text>
</view>
<view class="service-address" v-if="order.order_kind == 1">
<image src="/static/images/position_icon.png" class="location-icon"></image>
<text
2026-03-25 13:29:04 +08:00
>{{Object.assign({},order.reservation_address_arr).dependency}}{{Object.assign({},order.reservation_address_arr).address}}
</text>
2026-03-24 11:45:13 +08:00
</view>
</view>
</view>
<!-- 订单操作按钮 -->
<view class="order-actions">
<view class="action-left">
<image src="/static/images/delete_icon.png" class="delete-icon" @click="deleteOrder(order)"
v-if="order.state == 5 || order.state == 6 || order.state == 7"></image>
</view>
<view class="action-right">
<text class="action-btn contact" @click="cancelService(order)"
v-if="order.state == 1">取消订单</text>
<text class="action-btn contact" @click="refoundService(order)"
v-if="order.state == 2 || order.state == 3">申请退款</text>
<text class="action-btn contact" @click="contactService(order.order_shopphone)">联系客服</text>
<text class="action-btn primary" v-if="order.state == 1"
@click="payOrder(order)">立即支付</text>
<text class="action-btn review" v-if="order.state == 6"
@click="reviewOrder(order)">评价</text>
<text class="action-btn again" v-if="order.state == 5 || order.state == 6"
@click="orderAgain(order)">再来一单</text>
<!-- <text
class="action-btn again"
v-if="order.state == 5 && order.appeal == 1"
@click="addComplaint(order)"
>投诉</text> -->
<text class="action-btn again" v-if="order.state == 5 && order.appeal == 2"
@click="lookComplaint(order)">查看投诉</text>
</view>
</view>
</view>
<!-- 加载更多 -->
<view class="loading-more" v-if="hasMore">加载中...</view>
<view class="no-more" v-if="!hasMore && orderList.length">没有更多了</view>
<noData v-if="orderList.length==0"></noData>
<!-- 获取权限提示匡内容 -->
<view class="permission" :class="{ transform: isShowPer }">
<view class="per-tit">美融融plus 对拨打电话权限申请说明</view>
<view class="per-cont">当您需要联系商家或平台客服的时候需要获取拨打电话权限</view>
</view>
</scroll-view>
</view>
<view class="nologin_part" v-else>
<image src="/static/images/no_login.png" class="nologin_icon" mode="aspectFit"></image>
<view class="btn-login">
<text class="login-text" @click="goLogin">前去登录</text>
</view>
</view>
</view>
</template>
<script>
import request from '../../utils/request'
import locationService from '../../utils/locationService';
import permissionUtils from '../../utils/per'
import {
debounce
} from '@/utils/debounce.js'
export default {
data() {
return {
isShowPer: false,
sjid: null,
tabs: [{
id: 0,
title: '全部'
}, {
id: 1,
title: '待支付'
}, {
id: 2,
title: '待接单'
}, {
id: 3,
title: '待服务'
}, {
id: 4,
title: '服务中'
}, {
id: 5,
title: '已完成'
}, {
id: 7,
title: '已取消'
}],
// ,{id: 6,title: '待评价'}
currentTab: 0,
isRefreshing: false,
hasMore: true,
orderList: [],
formData: {
page: 1,
limit: 10
},
isLogin: false
}
},
onLoad() {
// this.loadOrders();
},
async onShow() {
this.isLogin = uni.getStorageSync('accessToken') ? true : false;
if (!this.isLogin) return;
const shopInfo = await request.post('/user/getuser', {
type: 3
});
this.sjid = shopInfo.data.id;
this.orderList = [];
this.formData.page = 1;
this.formData.sjid = shopInfo.data.id;
this.loadOrders();
},
methods: {
// 切换标签
switchTab(index) {
this.currentTab = index;
this.orderList = [];
this.formData.page = 1;
// TODO: 根据当前标签加载对应订单数据
if (this.currentTab != 0) {
this.formData.state = this.currentTab;
} else {
delete this.formData.state;
}
this.loadOrders()
},
// 加载订单数据
loadOrders() {
request.post('/sj/sjselforder', this.formData).then(res => {
this.orderList = [...this.orderList, ...res.data];
if (res.count == this.orderList.length) {
this.hasMore = false
} else {
this.hasMore = true
this.formData.page = this.formData.page + 1;
}
this.isRefreshing = false
})
},
// 下拉刷新
onRefresh() {
this.isRefreshing = true
this.formData.page = 1;
this.orderList = [];
this.loadOrders()
},
// 加载更多
loadMore() {
if (!this.hasMore) return
// TODO: 加载更多订单数据
this.loadOrders();
},
// 跳转订单详情
goDetail(order) {
console.log('order', order)
uni.navigateTo({
url: `/pages/shop/buyorder-detail?id=${order.id}`
})
},
// 删除订单
deleteOrder: debounce(async function(order) {
uni.showModal({
title: '提示',
content: '确定要删除该订单吗?',
success: (res) => {
if (res.confirm) {
// TODO: 删除订单
request.post('/sj/deleteorder', {
id: order.id,
sjid: this.sjid
}).then(res => {
uni.showToast({
title: '删除成功!',
icon: 'none'
})
this.formData.page = 1;
this.orderList = [];
this.loadOrders();
})
}
}
})
}, 500),
// 显示权限说明弹窗
showPermissionDialog(title, content) {
return new Promise((resolve) => {
uni.showModal({
title,
content,
confirmText: '去开启',
success(res) {
resolve(res.confirm);
}
});
});
},
// 联系客服
async contactService(phone) {
// TODO: 实现联系客服功能
uni.navigateTo({
url: '/pages/contact/contact'
})
// const systemInfo = uni.getSystemInfoSync()
// if(systemInfo.platform === 'ios') {
// uni.makePhoneCall({
// phoneNumber: phone //仅为示例
// })
// }else {
// let permission = '';
// if(systemInfo.platform === 'ios') {
// permission = 'phone'
// }else {
// permission = 'android.permission.CALL_PHONE'
// }
// this.isShowPer = true;
// const firstRequest = !plus.storage.getItem(`perm_${permission}`)
// if(firstRequest) {
// this.isShowPer = true;
// }
// // 1. 检查权限
// const { granted } = await permissionUtils.checkPermission('phone', '需要拨打电话权限,方便您联系商家或平台');
// if (granted) {
// this.isShowPer = false;
// uni.makePhoneCall({
// phoneNumber: phone //仅为示例
// })
// return;
// }
// this.isShowPer = false;
// // 2. 显示权限说明弹窗
// const confirm = await this.showPermissionDialog(
// '拨打电话权限申请',
// '我们需要拨打电话权限,方便您联系商家或平台'
// );
// if (!confirm) return;
// // 3. 请求权限
// const result = await permissionUtils.requestPermission('phone', '需要拨打电话权限,方便您联系商家或平台');
// console.log('result',result)
// if (result) {
// uni.makePhoneCall({
// phoneNumber: phone //仅为示例
// })
// return;
// } else {
// locationService.openAppSettings();
// return;
// // uni.showToast({ title: '相机权限被拒绝', icon: 'none' });
// }
// }
},
// 取消订单
async cancelService(order) {
console.log(order)
uni.showModal({
title: '取消订单',
content: '确定要取消该订单吗?',
success: (res) => {
if (res.confirm) {
// TODO: 取消订单
let data = {
orderNo: order.number,
amount: order.pay_money,
sjid: this.sjid
}
request.post('/sj/cancelorder', data).then(res => {
uni.showToast({
title: '取消成功!',
icon: 'none'
})
this.formData.page = 1;
this.orderList = [];
this.loadOrders();
}).catch(err => {
console.log(err)
})
}
}
})
},
// 申请退款
async refoundService(order) {
uni.showModal({
title: '申请退款',
content: '确定申请退款?退款后则订单取消!',
success: (res) => {
if (res.confirm) {
// TODO: 申请退款
let data = {
orderNo: order.number,
amount: order.pay_money,
sjid: this.sjid
}
let url = '';
if (order.pay_kind == 1) {
url = '/'
} else if (order.pay_kind == 2) {
url = '/sj/selfwechatrefund'
} else if (order.pay_kind == 3) {
url = '/sj/selfalirefund'
}
console.log('==========', order, data, url)
request.post(url, data).then(res => {
console.log('申请退款订单返回结果', res)
uni.showToast({
title: '申请退款成功!',
icon: 'none'
})
this.formData.page = 1;
this.orderList = [];
this.loadOrders();
}).catch(err => {
console.log(err)
})
}
}
})
},
// 支付订单
payOrder(order) {
// TODO: 实现支付功能
uni.navigateTo({
url: `/pages/shop/pay-order?id=${order.id}&money=${order.order_money}&title=${order.server_title}&number=${order.number}`
})
},
// 评价订单
reviewOrder(order) {
// uni.navigateTo({
// url: `/pages/order/pay?id=${order.id}`
// })
},
// 再次下单
orderAgain(order) {
// TODO: 实现再次下单功能
uni.navigateTo({
url: '/pages/shop/service-detail?id=' + order.server_id
})
},
// 投诉
addComplaint(order) {
uni.navigateTo({
url: '/pages/complaint/add-complaint?number=' + order.number
})
},
// 查看投诉
lookComplaint(order) {
uni.navigateTo({
url: '/pages/complaint/detail?number=' + order.number
})
},
goLogin() {
// uni.oprPresentLogin()
uni.navigateTo({
url: '/pages/blogPopup/blogPopup'
});
}
}
}
</script>
<style>
/* 状态标签栏 */
.status-tabs {
position: sticky;
top: 0;
/* #ifdef H5 */
top: 88rpx;
/* #endif */
left: 0;
right: 0;
height: 112rpx;
background-color: #FFFFFF;
z-index: 99;
white-space: nowrap;
}
.tab-item {
display: inline-block;
height: 88rpx;
line-height: 88rpx;
font-size: 30rpx;
color: #666666;
position: relative;
margin: 0 20rpx;
}
.tab-item.active {
color: #000000;
font-weight: 500;
}
.tab-item.active::after {
content: '';
position: absolute;
width: 32rpx;
height: 6rpx;
left: 50%;
bottom: 0;
transform: translateX(-50%);
background-color: #E8101E;
border-radius: 3rpx;
}
/* 订单列表 */
.order-scroll {
padding: 0 24rpx 24rpx;
margin-top: 24rpx;
height: calc(100vh - 112rpx - 24rpx);
box-sizing: border-box;
}
.order-item {
background-color: #FFFFFF;
border-radius: 16rpx;
margin-bottom: 24rpx;
padding: 24rpx;
box-sizing: border-box;
}
.order-header {
display: flex;
align-items: center;
margin-bottom: 34rpx;
}
.order-tag {
width: 74rpx;
height: 38rpx;
display: flex;
flex-flow: row nowrap;
justify-content: center;
align-items: center;
border-radius: 19rpx;
margin-right: 8rpx;
background-color: rgba(232, 16, 30, 0.2);
}
.order-tag-text {
color: #E8101E;
font-size: 24rpx;
}
.order-number {
flex: 1;
font-size: 24rpx;
color: #666666;
}
.order-status {
font-size: 28rpx;
font-weight: 500;
}
.status-pending {
color: #E8101E;
}
.status-cancelled {
color: #E8101E;
}
.status-completed {
color: #E8101E;
}
.order-content {
display: flex;
margin-bottom: 24rpx;
}
.service-image {
width: 182rpx;
height: 182rpx;
border-radius: 16rpx;
margin-right: 24rpx;
background-color: #000000;
}
.service-info {
flex: 1;
}
.service-name {
font-size: 24rpx;
color: #333333;
font-weight: 500;
}
.service-time,
.service-address {
display: flex;
align-items: center;
font-size: 24rpx;
color: #999999;
font-weight: 500;
margin-top: 8rpx;
2026-03-25 13:29:04 +08:00
align-items: flex-start;
}
.text-overflow-1 {
white-space: normal !important;
word-break: break-word !important;
overflow: visible !important;
text-overflow: clip !important;
flex: 1;
2026-03-24 11:45:13 +08:00
}
.time-icon,
.location-icon {
width: 24rpx;
height: 24rpx;
margin-right: 4rpx;
flex-shrink: 0;
2026-03-25 13:29:04 +08:00
margin-top: 4rpx;
2026-03-24 11:45:13 +08:00
}
.order-actions {
display: flex;
justify-content: space-between;
align-items: center;
border-top: 1rpx solid #EEEEEE;
padding-top: 24rpx;
}
.delete-icon {
width: 36rpx;
height: 36rpx;
}
.action-right {
display: flex;
align-items: center;
}
.action-btn {
display: inline-block;
width: 128rpx;
height: 48rpx;
line-height: 48rpx;
margin-left: 16rpx;
text-align: center;
font-size: 28rpx;
border-radius: 24rpx;
font-size: 24rpx;
}
.action-btn.contact {
background-color: #FFFFFF;
border: 1rpx solid #999999;
color: #333333;
}
.action-btn.primary {
background-color: #E8101E;
color: #FFFFFF;
}
.action-btn.review {
background-color: rgba(252, 67, 124, 0.40);
border: 1rpx solid #E8101E;
color: #FFFFFF;
}
.action-btn.again {
background-color: #FFFFFF;
border: 1rpx solid #999999;
color: #666666;
}
.nologin_part {
display: flex;
flex-flow: column nowrap;
justify-content: center;
align-items: center;
}
.nologin_icon {
width: 360rpx;
height: 360rpx;
margin-top: 100rpx;
margin-bottom: 40rpx;
}
.btn-login {
width: 200rpx;
height: 68rpx;
background-color: yellowgreen;
display: flex;
flex-flow: row nowrap;
justify-content: center;
align-items: center;
}
.login-text {
font-size: 36rpx;
color: #fff;
text-shadow:
1px 1px 1px #919191,
2px 2px 1px #919191,
2px 3px 1px #919191,
2px 4px 1px #919191,
2px 5px 1px #919191,
2px 6px 1px #919191,
2px 7px 2px rgba(16, 16, 16, 0.4);
}
/* 加载更多 */
.loading-more,
.no-more {
text-align: center;
font-size: 26rpx;
color: #999999;
padding: 24rpx 0;
}
/* APP适配 */
/* #ifdef APP-PLUS */
.permission.transform {
top: calc(var(--status-bar-height) + 88rpx + 20rpx);
opacity: 1;
visibility: visible;
}
/* #endif */
/* 平台适配 */
/* #ifdef H5 */
/* .order-list {
padding-bottom: env(safe-area-inset-bottom);
} */
/* #endif */
</style>