mrr.sj.front/pages/home/components/orderCard2.vue

405 lines
9.2 KiB
Vue
Raw Permalink Normal View History

2026-03-25 13:29:04 +08:00
<template>
<view class="order-card">
<!-- 时间信息 -->
<view class="time-info" v-if="dataItem.reservation_time || dataItem.reserve_end_time">
<image class="time-info-img" :src="dataItem.order_shopheadphoto_other"></image>
<text class="time-info-name">{{ dataItem.order_shop_other }}</text>
<text class="time-info-text1">服务时段:</text>
<text class="time-info-text2">{{ useTime }}</text>
</view>
<!-- 订单编号 -->
<view class="orderNumBox" v-else>
<view class="order-id white-space-nowrap">订单编号{{ dataItem.number }}</view>
<view class="stateText" v-if="showState">
{{ stateText }}
</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 ? dataItem.order_photo[0] : JSON.parse(dataItem.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>
2026-04-15 16:20:38 +08:00
<!-- <text class="service-price-line">{{ dataItem.line_money }}</text> -->
2026-03-25 13:29:04 +08:00
</view>
</view>
</view>
<view class="order-address" v-if="dataItem.reservation_address">上门地址{{ dataItem.reservation_address }}</view>
<!-- 操作按钮 -->
<view class="button-group" v-if="haveButton">
<view class="btn cancel-btn" v-if="dataItem.state == 2 || dataItem.state == 3" @click.stop="emitCancel">取消订单
</view>
<!-- <view class="btn accept-btn" @click.stop="emitAccept" v-if="dataItem.state == 2">接单</view> -->
<view class="btn accept-btn" @click.stop="emitStart" v-if="dataItem.state == 3">开始服务</view>
<view class="btn accept-btn" @click.stop="emitDone" v-if="dataItem.state == 4">服务完成</view>
</view>
</view>
</template>
<script>
export default {
name: "OrderCard",
props: {
dataItem: {
type: Object,
},
typeId: {
type: Number,
},
showState: {
type: Boolean,
default: true,
},
haveButton: {
type: Boolean,
default: true,
}
},
computed: {
useTime() {
const start = this.dataItem.reservation_time;
const server_time = this.dataItem.server_time || 0;
// 格式化时间范围兼容低版本iOS输出 MM.DD HH:MM-MM.DD HH:MM 格式
function formatTimeRange(startTimeStr, serviceMinutes) {
// 1. 空值兜底:避免无开始时间时报错
if (!startTimeStr) return "";
// 2. 兼容低版本iOSiOS不识别 "-" 分隔的日期,必须替换为 "/"
const iosSafeTimeStr = startTimeStr.replace(/-/g, "/");
const startTime = new Date(iosSafeTimeStr);
// 校验时间有效性
if (isNaN(startTime.getTime())) {
throw new Error("无效的开始时间格式,请使用类似'2025-08-04 14:00:00'的格式");
}
// 3. 计算结束时间(开始时间 + 服务分钟数)
const endTime = new Date(startTime.getTime() + serviceMinutes * 60 * 1000);
// 格式化日期部分MM.DD补零如 08.12
const formatDate = (date) => {
const month = String(date.getMonth() + 1).padStart(2, "0"); // 月份从0开始+1后补零
const day = String(date.getDate()).padStart(2, "0");
return `${month}.${day}`;
};
// 格式化时间部分HH:MM补零如 12:30
const formatTimePart = (date) => {
const hours = String(date.getHours()).padStart(2, "0");
const minutes = String(date.getMinutes()).padStart(2, "0");
return `${hours}:${minutes}`;
};
// 4. 拼接最终格式MM.DD HH:MM-MM.DD HH:MM
const startDate = formatDate(startTime);
const startTimePart = formatTimePart(startTime);
const endDate = formatDate(endTime);
const endTimePart = formatTimePart(endTime);
return `${startDate} ${startTimePart}-${endDate} ${endTimePart}`;
}
// 兜底如果start为空返回空字符串避免报错
return start ? 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");
2026-06-02 13:08:29 +08:00
2026-03-25 13:29:04 +08:00
},
emitDone() {
this.$emit("done");
},
},
};
</script>
<style scoped lang="less">
.order-card {
2026-06-02 13:08:29 +08:00
padding: 24rpx 20rpx 24rpx 20rpx;
margin: 0;
2026-03-25 13:29:04 +08:00
background-color: #fff;
border-radius: 12px;
/* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
position: relative;
}
/* 订单编号 */
.order-id {
width: 530rpx;
font-size: 28rpx;
color: #333333;
}
.orderNumBox {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 40rpx;
.stateText {
font-weight: 400;
font-size: 26rpx;
2026-06-02 11:39:23 +08:00
color: #FF4767;
2026-03-25 13:29:04 +08:00
text-align: left;
font-style: normal;
position: absolute;
right: 0;
top: 0;
background-image: url("/static/images/icons/tabBj.png");
background-size: 100% auto;
background-position: center top;
background-repeat: no-repeat;
width: 128rpx;
height: 49rpx;
display: flex;
align-items: center;
justify-content: center;
}
.rightArrow {
width: 12rpx;
height: 24rpx;
}
}
/* 服务信息容器 */
.service-container {
display: flex;
padding-bottom: 24rpx;
border-bottom: 1px solid #f6f5f5;
}
/* 服务图片 */
.service-img {
width: 172rpx;
height: 168rpx;
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;
2026-06-02 11:39:23 +08:00
color: #FF4767;
2026-03-25 13:29:04 +08:00
line-height: 34rpx;
text-align: left;
font-style: normal;
2026-04-03 15:49:27 +08:00
.service-price-line {
font-weight: 400;
font-size: 24rpx;
color: #999999;
line-height: 34rpx;
margin-left: 10rpx;
text-decoration: line-through;
}
2026-03-25 13:29:04 +08:00
}
.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;
2026-06-02 11:39:23 +08:00
background: linear-gradient(166deg, #FC5E72 0%, #FF4767 100%);
2026-03-25 13:29:04 +08:00
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: 34rpx;
display: flex;
align-items: center;
.time-info-img {
width: 40rpx;
height: 40rpx;
margin-right: 10rpx;
border-radius: 50%;
}
.time-info-name {
font-weight: 400;
font-size: 26rpx;
color: #333333;
line-height: 34rpx;
text-align: left;
font-style: normal;
margin-right: 20rpx;
}
.time-info-text1 {
font-weight: 400;
font-size: 26rpx;
color: #999999;
line-height: 34rpx;
text-align: left;
font-style: normal;
margin-right: 20rpx;
}
.time-info-text2 {
font-weight: 400;
font-size: 26rpx;
color: #333333;
line-height: 34rpx;
text-align: left;
font-style: normal;
}
}
/* 按钮组 */
.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 {
2026-06-02 11:39:23 +08:00
border: 2rpx solid #FF4767;
color: #FF4767;
2026-03-25 13:29:04 +08:00
}
.order-address {
font-weight: 400;
font-size: 26rpx;
color: #666666;
line-height: 34rpx;
text-align: left;
font-style: normal;
margin-top: 24rpx;
}
</style>