Files
shoot-miniprograms/src/pages/member/order-detail.vue
2026-06-18 16:18:55 +08:00

183 lines
4.4 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<script setup>
import { ref, onMounted, onBeforeUnmount } from "vue";
import Container from "@/components/Container.vue";
import SButton from "@/components/SButton.vue";
import { payOrderAPI, cancelOrderListAPI, getHomeData } from "@/apis";
import { orderStatusNames, getStatusColor, MESSAGETYPES } from "@/constants";
import useStore from "@/store";
const store = useStore();
const { updateUser } = store;
const data = ref({});
const loading = ref(false);
async function onReceiveMessage(messages = []) {
messages.forEach((msg) => {
if (
msg.constructor === MESSAGETYPES.PaySuccess &&
data.value.orderId === msg.orderID
) {
data.value.orderStatus = 4;
data.value.paymentTime = msg.payTime;
uni.setStorageSync("order", data.value);
}
});
}
onMounted(() => {
const order = uni.getStorageSync("order");
data.value = order || {};
uni.$on("socket-inbox", onReceiveMessage);
});
onBeforeUnmount(() => {
uni.$off("socket-inbox", onReceiveMessage);
});
const goPay = async () => {
const result = await payOrderAPI(data.value.orderId);
const params = result.jsApi.params;
if (params) {
loading.value = true;
wx.requestPayment({
timeStamp: params.timeStamp, // 时间戳
nonceStr: params.nonceStr, // 随机字符串
package: params.package, // 统一下单接口返回的 prepay_id 参数值格式prepay_id=***
paySign: params.paySign, // 签名
signType: "RSA", // 签名类型默认为RSA
async success(res) {
const result = await getHomeData();
if (result.user) updateUser(result.user);
uni.showToast({
title: "支付成功",
icon: "none",
});
},
fail(res) {
loading.value = false;
console.log("pay error", res);
},
});
}
};
const copyOrderId = (orderId) => {
uni.setClipboardData({
data: String(orderId),
success: () => {
uni.showToast({
title: "复制成功",
icon: "success",
});
},
});
};
const cancelOrder = async () => {
const result = await cancelOrderListAPI(data.value.orderId);
data.value = result;
uni.setStorageSync("order", result);
};
</script>
<template>
<Container title="订单详情">
<view class="container">
<view
class="order-status"
:style="{ backgroundColor: getStatusColor(data.orderStatus) }"
>{{ orderStatusNames[data.orderStatus] }}</view
>
<view class="order">
<view>
<text>{{ data.vipName }}</text>
<view class="order-number">
<text>订单号{{ data.orderId }}</text>
<text class="copy-action" @click.stop="copyOrderId(data.orderId)"
>复制</text
>
</view>
<text>下单时间{{ data.vipCreateAt }}</text>
<text
>支付时间{{
data.orderStatus === 4 ? data.paymentTime : ""
}}</text
>
<text>金额{{ data.total }} </text>
<text>支付方式微信</text>
</view>
<view v-if="data.orderStatus === 1">
<SButton :onClick="goPay">去支付</SButton>
<view :style="{ height: '10px' }" />
<SButton :onClick="cancelOrder">取消订单</SButton>
</view>
</view>
</view>
</Container>
</template>
<style scoped>
.container {
width: 100%;
height: 100%;
background-color: #f5f5f5;
padding-top: 10px;
position: relative;
}
.order {
width: 100%;
height: 100%;
background-color: #fff;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.order > view:first-child {
display: flex;
flex-direction: column;
padding: 15px;
}
.order > view:first-child > text:first-child {
color: #000;
font-size: 16px;
}
.order > view:first-child > text {
color: #666666;
font-size: 13px;
margin-top: 5px;
}
.order > view:last-child {
margin-bottom: 20px;
}
.order-status {
position: absolute;
top: 10px;
right: 0;
width: 50px;
color: #fff;
text-align: center;
font-size: 11px;
}
.order-number {
display: flex;
align-items: center;
color: #666666;
font-size: 26rpx;
margin-top: 10rpx;
}
.order-number > text:first-child {
flex: 1;
min-width: 0;
word-break: break-all;
}
.copy-action {
flex-shrink: 0;
margin-left: 16rpx;
padding: 2rpx 14rpx;
color: #1f6ed4;
font-size: 24rpx;
line-height: 34rpx;
}
</style>