529 lines
11 KiB
Plaintext
529 lines
11 KiB
Plaintext
<template>
|
|
<view class="order-detail-page">
|
|
<view class="detail-container">
|
|
<!-- 沉浸式状态栏 -->
|
|
<view v-if="!isZFB" class="status-bar"></view>
|
|
|
|
<!-- 顶部导航栏 -->
|
|
<view v-if="!isZFB" class="nav-bar">
|
|
<image class="back-icon" src="/static/icons/back.svg" @click="goBack" mode="aspectFit" />
|
|
<text class="nav-title">订单详情</text>
|
|
<view class="nav-placeholder"></view>
|
|
</view>
|
|
|
|
<!-- 店铺信息卡片 -->
|
|
<view class="shop-info-card" >
|
|
<view @click="Service.GoPage('/pages/community/merchantDetail?merchId='+merchInfo.merchId)"
|
|
class="shop-header">
|
|
<image class="shop-avatar" :src="Service.GetMateUrlByImg(merchInfo.logo)" mode="aspectFill" />
|
|
<view class="shop-info">
|
|
<text class="shop-name">{{ merchInfo.name }}</text>
|
|
<view class="">
|
|
<text v-if="merchInfo.code=='Discounts'" class="badge-partner">联盟商家</text>
|
|
<text v-else class="badge-coop">合作商家</text>
|
|
</view>
|
|
</view>
|
|
|
|
<up-icon name="arrow-right" bold="true" size="22"></up-icon>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 订单信息卡片 -->
|
|
<view class="order-info-card">
|
|
<view class="card-title">
|
|
<text class="title-icon">📋</text>
|
|
<text class="title-text">订单信息</text>
|
|
</view>
|
|
|
|
<view class="info-section">
|
|
<view class="info-row">
|
|
<text class="info-label">订单号</text>
|
|
<text class="info-value">{{ orderInfo.orderId }}</text>
|
|
</view>
|
|
|
|
<view class="info-row">
|
|
<text class="info-label">订单金额</text>
|
|
<text class="info-value amount">¥{{ orderInfo.amount }}</text>
|
|
</view>
|
|
|
|
<view class="info-row">
|
|
<text class="info-label">订单状态</text>
|
|
<view class="status-tag .status-completed">
|
|
<text class="status-tag-text">已完成</text>
|
|
</view>
|
|
</view>
|
|
|
|
<view v-if="orderInfo.getIntegral > 0" class="info-row">
|
|
<text class="info-label">获得积分</text>
|
|
<view class="points-badge earned">
|
|
<text class="ri-coin-line points-icon"></text>
|
|
<text class="points-text">+{{ orderInfo.getIntegral }}分</text>
|
|
</view>
|
|
</view>
|
|
|
|
<view v-if="orderInfo.useIntegral > 0" class="info-row">
|
|
<text class="info-label">使用积分</text>
|
|
<view class="points-badge used">
|
|
<text class="ri-wallet-3-line points-icon"></text>
|
|
<text class="points-text">-{{ orderInfo.useIntegral }}分</text>
|
|
</view>
|
|
</view>
|
|
|
|
<view v-if="orderInfo.discount" class="info-row">
|
|
<text class="info-label">优惠券</text>
|
|
<view class="coupon-badge">
|
|
<text
|
|
class="coupon-text">{{ '满'+JSON.parse(orderInfo.discount).needMoney+'减'+JSON.parse(orderInfo.discount).deductMoney }}</text>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="info-row">
|
|
<text class="info-label">付款金额</text>
|
|
<text class="info-value amount">¥{{ orderInfo.payAmount }}</text>
|
|
</view>
|
|
<view class="info-row">
|
|
<text class="info-label">支付方式</text>
|
|
<text class="info-value">{{ orderInfo.payway=='wx'?'微信':'支付宝' }}</text>
|
|
</view>
|
|
<view class="info-row">
|
|
<text class="info-label">订单时间</text>
|
|
<text class="info-value">{{ orderInfo.payTime }}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 底部操作栏 -->
|
|
<!-- <view v-if="order.statusType === 'completed'" class="bottom-actions">
|
|
<button class="action-btn secondary" @click="contactService">
|
|
<text class="ri-customer-service-2-line btn-icon"></text>
|
|
<text class="btn-text">联系客服</text>
|
|
</button>
|
|
<button class="action-btn primary" @click="writeReview">
|
|
<text class="ri-edit-line btn-icon"></text>
|
|
<text class="btn-text">评价订单</text>
|
|
</button>
|
|
</view>
|
|
|
|
<view v-else-if="order.statusType === 'pending'" class="bottom-actions">
|
|
<button class="action-btn secondary" @click="contactService">
|
|
<text class="ri-customer-service-2-line btn-icon"></text>
|
|
<text class="btn-text">联系客服</text>
|
|
</button>
|
|
<button class="action-btn primary" @click="writeReview">
|
|
<text class="ri-star-line btn-icon"></text>
|
|
<text class="btn-text">评价订单</text>
|
|
</button>
|
|
</view>
|
|
|
|
<view v-else-if="order.statusType === 'refunding'" class="bottom-actions">
|
|
<button class="action-btn warning" @click="checkRefundStatus">
|
|
<text class="ri-time-line btn-icon"></text>
|
|
<text class="btn-text">查看退款进度</text>
|
|
</button>
|
|
</view> -->
|
|
</view>
|
|
|
|
<!-- 加载状态 -->
|
|
<!-- <view v-else class="loading">
|
|
<text class="loading-text">加载中...</text>
|
|
</view> -->
|
|
</view>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import {
|
|
ref
|
|
} from 'vue'
|
|
import {
|
|
onLoad
|
|
} from '@dcloudio/uni-app'
|
|
import {
|
|
vpOrderService,
|
|
Service
|
|
} from '@/Service/vp/vpOrderService'
|
|
import { inject } from 'vue';
|
|
const isZFB = inject('isZFB');
|
|
|
|
|
|
let merchInfo = ref<any>({})
|
|
let orderInfo = ref<any>({})
|
|
let orderId = ref('')
|
|
// 页面加载
|
|
onLoad((options) => {
|
|
if (options.orderId) {
|
|
orderId.value = options.orderId
|
|
getData()
|
|
}
|
|
})
|
|
|
|
const getData = () => {
|
|
vpOrderService.GetOrderInfo(orderId.value).then(res => {
|
|
if (res.code == 0) {
|
|
merchInfo.value = res.data.merchInfo
|
|
orderInfo.value = res.data.orderInfo
|
|
} else {
|
|
Service.Msg(res.msg)
|
|
}
|
|
})
|
|
}
|
|
|
|
|
|
|
|
// 返回
|
|
const goBack = () => {
|
|
uni.navigateBack({
|
|
delta: 1
|
|
})
|
|
}
|
|
|
|
// 联系客服
|
|
const contactService = () => {
|
|
uni.showToast({
|
|
title: '正在联系客服...',
|
|
icon: 'none'
|
|
})
|
|
}
|
|
|
|
// 评价订单
|
|
const writeReview = () => {
|
|
uni.showToast({
|
|
title: '跳转到评价页面',
|
|
icon: 'none'
|
|
})
|
|
}
|
|
|
|
// 查看退款进度
|
|
const checkRefundStatus = () => {
|
|
uni.showToast({
|
|
title: '退款处理中,请耐心等待',
|
|
icon: 'none'
|
|
})
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.order-detail-page {
|
|
min-height: 100vh;
|
|
background: #F5F5F5;
|
|
}
|
|
|
|
.detail-container {
|
|
padding-bottom: calc(140rpx + env(safe-area-inset-bottom));
|
|
}
|
|
|
|
/* 状态栏 */
|
|
.status-bar {
|
|
background: linear-gradient(135deg, #FF6B00, #FF9500);
|
|
height: var(--status-bar-height);
|
|
width: 100%;
|
|
}
|
|
|
|
/* 导航栏 */
|
|
.nav-bar {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 50rpx 24rpx 20rpx;
|
|
background: linear-gradient(135deg, #FF6B00, #FF9500);
|
|
}
|
|
|
|
.back-icon {
|
|
width: 48rpx;
|
|
height: 48rpx;
|
|
padding: 8rpx;
|
|
}
|
|
|
|
.nav-title {
|
|
font-size: 36rpx;
|
|
font-weight: 600;
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
.nav-placeholder {
|
|
width: 48rpx;
|
|
}
|
|
|
|
/* 店铺信息卡片 */
|
|
.shop-info-card {
|
|
background: #FFFFFF;
|
|
margin: 20rpx;
|
|
border-radius: 16rpx;
|
|
padding: 24rpx;
|
|
box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.04);
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.shop-info-card:active {
|
|
transform: scale(0.98);
|
|
opacity: 0.9;
|
|
}
|
|
|
|
.shop-header {
|
|
display: flex;
|
|
align-items: center;
|
|
position: relative;
|
|
}
|
|
|
|
.shop-arrow {
|
|
font-size: 32rpx;
|
|
color: #CCCCCC;
|
|
margin-left: auto;
|
|
position: absolute;
|
|
right: 0;
|
|
}
|
|
|
|
.shop-avatar {
|
|
width: 96rpx;
|
|
height: 96rpx;
|
|
border-radius: 16rpx;
|
|
margin-right: 20rpx;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.shop-info {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8rpx;
|
|
}
|
|
|
|
.shop-name {
|
|
font-size: 32rpx;
|
|
font-weight: 700;
|
|
color: #222222;
|
|
}
|
|
|
|
.order-time {
|
|
font-size: 24rpx;
|
|
color: #999999;
|
|
}
|
|
|
|
.order-status-badge {
|
|
padding: 12rpx 24rpx;
|
|
border-radius: 24rpx;
|
|
font-size: 24rpx;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.order-status-badge.status-completed {
|
|
background: #E8F5E9;
|
|
color: #4CAF50;
|
|
}
|
|
|
|
.order-status-badge.status-pending {
|
|
background: #FFF4E6;
|
|
color: #FF6B00;
|
|
}
|
|
|
|
.order-status-badge.status-refunding {
|
|
background: #E3F2FD;
|
|
color: #2196F3;
|
|
}
|
|
|
|
.order-status-badge.status-refunded {
|
|
background: #FFEBEE;
|
|
color: #F44336;
|
|
}
|
|
|
|
/* 订单信息卡片 */
|
|
.order-info-card {
|
|
background: #FFFFFF;
|
|
margin: 0 20rpx 20rpx;
|
|
border-radius: 16rpx;
|
|
padding: 24rpx;
|
|
box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.04);
|
|
}
|
|
|
|
.card-title {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8rpx;
|
|
margin-bottom: 24rpx;
|
|
padding-bottom: 16rpx;
|
|
border-bottom: 1rpx solid #F5F5F5;
|
|
}
|
|
|
|
.title-icon {
|
|
font-size: 32rpx;
|
|
}
|
|
|
|
.title-text {
|
|
font-size: 28rpx;
|
|
font-weight: 600;
|
|
color: #222222;
|
|
}
|
|
|
|
.info-section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 20rpx;
|
|
}
|
|
|
|
.info-row {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.info-label {
|
|
font-size: 26rpx;
|
|
color: #666666;
|
|
}
|
|
|
|
.info-value {
|
|
font-size: 26rpx;
|
|
color: #222222;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.info-value.amount {
|
|
font-size: 36rpx;
|
|
color: #FF6B00;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.status-tag {
|
|
padding: 8rpx 20rpx;
|
|
border-radius: 20rpx;
|
|
font-size: 22rpx;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.status-tag.status-completed {
|
|
background: #E8F5E9;
|
|
color: #4CAF50;
|
|
}
|
|
|
|
.status-tag.status-pending {
|
|
background: #FFF4E6;
|
|
color: #FF6B00;
|
|
}
|
|
|
|
.status-tag.status-refunding {
|
|
background: #E3F2FD;
|
|
color: #2196F3;
|
|
}
|
|
|
|
.status-tag.status-refunded {
|
|
background: #FFEBEE;
|
|
color: #F44336;
|
|
}
|
|
|
|
/* 积分徽章 */
|
|
.points-badge {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6rpx;
|
|
padding: 8rpx 16rpx;
|
|
border-radius: 20rpx;
|
|
font-size: 24rpx;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.points-badge.earned {
|
|
background: #E8F5E9;
|
|
color: #4CAF50;
|
|
}
|
|
|
|
.points-badge.used {
|
|
background: #FFF4E6;
|
|
color: #FF6B00;
|
|
}
|
|
|
|
.points-icon {
|
|
font-size: 20rpx;
|
|
}
|
|
|
|
.points-text {
|
|
font-size: 24rpx;
|
|
}
|
|
|
|
/* 优惠券徽章 */
|
|
.coupon-badge {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6rpx;
|
|
padding: 8rpx 16rpx;
|
|
background: linear-gradient(135deg, #FFF4E6, #FFE0B2);
|
|
border-radius: 20rpx;
|
|
}
|
|
|
|
.coupon-icon {
|
|
font-size: 20rpx;
|
|
color: #FF6B00;
|
|
}
|
|
|
|
.coupon-text {
|
|
font-size: 24rpx;
|
|
color: #FF6B00;
|
|
font-weight: 600;
|
|
}
|
|
|
|
/* 底部操作栏 */
|
|
.bottom-actions {
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
background: #FFFFFF;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 16rpx 20rpx;
|
|
padding-bottom: calc(16rpx + env(safe-area-inset-bottom));
|
|
box-shadow: 0 -2rpx 8rpx rgba(0, 0, 0, 0.04);
|
|
gap: 12rpx;
|
|
}
|
|
|
|
.action-btn {
|
|
flex: 1;
|
|
height: 80rpx;
|
|
border-radius: 40rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 8rpx;
|
|
font-size: 26rpx;
|
|
font-weight: 500;
|
|
border: none;
|
|
}
|
|
|
|
.action-btn.secondary {
|
|
background: linear-gradient(135deg, #F5F5F5, #EEEEEE);
|
|
color: #666666;
|
|
}
|
|
|
|
.action-btn.primary {
|
|
background: linear-gradient(135deg, #FF6B00, #FF9500);
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
.action-btn.warning {
|
|
background: linear-gradient(135deg, #2196F3, #42A5F5);
|
|
color: #FFFFFF;
|
|
flex: 1;
|
|
}
|
|
|
|
.btn-icon {
|
|
font-size: 28rpx;
|
|
}
|
|
|
|
.btn-text {
|
|
font-size: 26rpx;
|
|
}
|
|
|
|
/* 加载状态 */
|
|
.loading {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.loading-text {
|
|
font-size: 26rpx;
|
|
color: #999999;
|
|
}
|
|
</style> |