feat: 修改首页未显示红包抽奖,审核文案,邀请好友分享,地址回显问题修改

This commit is contained in:
黄泽群
2026-07-23 14:02:58 +08:00
committed by charles
parent 21225998e5
commit 8b11bbebfc
2 changed files with 155 additions and 124 deletions
@@ -42,12 +42,13 @@
<view v-if="status > 1 && status != 6 && status != 5">
<view class="card_list">
<view class="list_left">邮寄地址</view>
<view class="list_left" style="flex:30%;">邮寄地址</view>
<view>{{ product.address || "--" }}</view>
</view>
<view class="card_list">
<view class="list_left">卖家信息</view>
<view>{{ `${product.name} ${product.phone}` }}</view>
<view>{{ (product.name || product.phone) ? `${product.name || ''} ${product.phone || ''}`.trim() : "--" }}
</view>
</view>
<view class="card_list" @click="onSelectExpress">
<view class="list_left">请选择快递名称</view>
@@ -250,7 +251,7 @@ export default {
// 售后中--卖家已收货,退款成功
if (this.product.status == 7) {
return 5;
}
}
// 退款
if (this.product.status == 8) {
return 6;
@@ -277,7 +278,7 @@ export default {
/* 根据订单状态显示不label */
topLabel() {
if (this.status == 1) {
return "您已成功发起退货/退款申请,请耐心等待审";
return "您已成功发起退货/退款申请,请耐心等待审核";
} else if (this.status == 2) {
return "请按照以下地址寄回商品";
} else if (this.status == 3) {
@@ -297,7 +298,7 @@ export default {
} else if (this.status == 2) {
return "退款申请通过";
} else if (this.status == 3) {
return "您已成功发起退货/退款申请,请耐心等待处";
return "您已成功发起退货/退款申请,请耐心等待处理";
} else if (this.status == 4) {
return "退款申请失败";
} else if (this.status == 5) {
@@ -391,7 +392,8 @@ export default {
display: flex;
justify-content: space-between;
height: 96rpx;
line-height: 96rpx;
align-items: center;
// line-height: 96rpx;
font-size: 28rpx;
border-bottom: 1px solid #eaeaea;