mrr.sj.front/pages/shop/staff/components/orderCard.vue

304 lines
6.5 KiB
Vue
Raw Normal View History

2026-03-24 11:45:13 +08:00
<template>
<view class="order-card">
<!-- 订单编号 -->
<!-- 订单编号 -->
<view class="orderNumBox">
<view class="order-id white-space-nowrap">订单编号{{ dataItem.number }}</view>
<view class="stateText" v-if="showState">{{ dataItem.state }}</view>
<image class="rightArrow" src="/static/images/shop/pintuan/rightArrow.png" v-else
@click="$emit('goOrderDetail', dataItem)"></image>
</view>
<!-- 服务信息区域 -->
<view class="service-container" @click="$emit('goOrderDetail', dataItem)">
<image class="service-img" :src="dataItem.order_photo[0]"
mode="aspectFill"></image>
<view class="service-info">
<view>
<view class="service-type">
<view class="service-name-type" v-if="dataItem.team_buy_id">
{{ getGroupType }}
</view>
<text class="service-name-text">
{{ dataItem.server_title }}
</text>
</view>
<view class="service-time" v-if="dataItem.add_time">下单时间: {{ dataItem.add_time }}</view>
</view>
<view class="service-price">
<text v-if="dataItem.team_buy_id">{{ `团购价: ` }}</text>¥<text
style="font-size: 34rpx">{{ dataItem.order_money }}</text>
</view>
</view>
</view>
<!-- 时间信息 -->
<!-- <view class="time-info" v-if="dataItem.reservation_time || dataItem.reserve_end_time">使用时段{{ useTime }}</view> -->
</view>
</template>
<script>
export default {
name: "OrderCard",
props: {
dataItem: {
type: Object,
},
typeId: {
type: Number,
},
showState: {
type: Boolean,
default: true,
},
},
computed: {
useTime() {
let start;
let server_time;
if (this.dataItem.reservation_time) {
start = this.dataItem.reservation_time;
server_time = Number(this.dataItem.reserve_start_time || 0);
} else {
start = this.dataItem.reserve_start_time;
server_time = this.dataItem.reserve_end_time;
}
function formatTimeRange(startTimeStr, serviceMinutes) {
// 解析开始时间为Date对象
const startTime = new Date(startTimeStr.replace(/-/g, "/"));
if (isNaN(startTime.getTime())) {
throw new Error(
"无效的开始时间格式,请使用类似'2025-08-04 14:00:00'的格式"
);
}
let endTime;
if (typeof serviceMinutes == "number") {
// 计算结束时间(开始时间 + 服务分钟数)
endTime = new Date(startTime.getTime() + serviceMinutes * 60 * 1000);
} else {
endTime = new Date(serviceMinutes);
}
// 格式化单个时间为 MM.DD HH:MM 格式
const formatTime = (date) => {
const month = String(date.getMonth() + 1).padStart(2, "0");
const day = String(date.getDate()).padStart(2, "0");
const hours = String(date.getHours()).padStart(2, "0");
const minutes = String(date.getMinutes()).padStart(2, "0");
return `${month}.${day} ${hours}:${minutes}`;
};
// 格式化开始时间和结束时间并拼接
return `${formatTime(startTime)} —— ${formatTime(endTime)}`;
}
return formatTimeRange(start, server_time);
},
stateText() {
const textList = [
"",
"待支付",
"待接单",
"待开始",
"进行中",
"已完成",
"已评价",
"已取消",
];
return textList[this.dataItem.state];
},
//获取拼团状态文字
getGroupType() {
let list = [{
id: 1,
text: "团购中",
},
{
id: 2,
text: "已成团",
},
{
id: 3,
text: "拼团失败",
},
];
let name = list.find(
(it) => it.id == this.dataItem.team_buy_order_state
)?.text;
return name;
},
},
methods: {
// 触发取消事件
emitCancel() {
this.$emit("cancel");
},
// 触发接单事件
emitAccept() {
this.$emit("accept");
},
emitStart() {
this.$emit("start");
},
emitDone() {
this.$emit("done");
},
},
};
</script>
<style scoped lang="less">
.order-card {
padding: 30rpx 20rpx;
margin: 20rpx 30rpx 20rpx 30rpx;
background-color: #fff;
border-radius: 12px;
/* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
}
/* 订单编号 */
.order-id {
width: 530rpx;
font-weight: 400;
font-size: 26rpx;
color: #333333;
line-height: 34rpx;
text-align: left;
font-style: normal;
}
.orderNumBox {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 40rpx;
.stateText {
font-size: 28rpx;
color: #e8101e;
line-height: 39rpx;
}
.rightArrow {
width: 12rpx;
height: 24rpx;
}
}
/* 服务信息容器 */
.service-container {
display: flex;
// padding-bottom: 24rpx;
// border-bottom: 1px solid #f6f5f5;
}
/* 服务图片 */
.service-img {
width: 172rpx;
height: 172rpx;
border-radius: 24rpx;
margin-right: 30rpx;
flex-shrink: 0;
}
/* 服务信息 */
.service-info {
display: flex;
flex-direction: column;
justify-content: space-between;
}
.service-price {
font-weight: 500;
font-size: 24rpx;
color: #e8101e;
line-height: 34rpx;
text-align: left;
font-style: normal;
}
.service-type {
width: 400rpx;
font-weight: 500;
font-size: 30rpx;
color: #333333;
line-height: 34rpx;
text-align: left;
font-style: normal;
display: flex;
align-items: center;
margin-bottom: 22rpx;
.service-name-type {
/* #ifdef APP-PLUS */
font-family: "shuHeiTi";
/* #endif */
font-size: 24rpx;
color: #ffffff;
line-height: 27rpx;
letter-spacing: 2px;
text-align: left;
font-style: normal;
background: linear-gradient(166deg, #fc5e72 0%, #e8101e 100%);
border-radius: 6rpx;
padding: 4rpx 4rpx 4rpx 8rpx;
margin-right: 13rpx;
letter-spacing: 2rpx;
}
.service-name-text {
flex: 1;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
}
.service-time {
font-weight: 400;
font-size: 26rpx;
color: #999999;
line-height: 33rpx;
text-align: left;
font-style: normal;
}
/* 时间信息 */
.time-info {
font-size: 30rpx;
color: #333;
margin-bottom: 40rpx;
margin-top: 28rpx;
}
/* 按钮组 */
.button-group {
display: flex;
justify-content: flex-end;
gap: 30rpx;
}
/* 通用按钮样式 */
.btn {
width: 80rpx;
height: 32rpx;
border-radius: 64rpx;
font-size: 26rpx;
background-color: #fff;
white-space: nowrap;
margin-top: 40rpx;
}
/* 取消按钮 */
.cancel-btn {
border: 2rpx solid #979797;
color: #333333;
}
/* 接单按钮 */
.accept-btn {
border: 2rpx solid #e8101e;
color: #e8101e;
}
</style>