优化订单标签不生效的问题

This commit is contained in:
gyq
2025-12-20 16:55:12 +08:00
parent e8e474d971
commit 244396bfcd
4 changed files with 12 additions and 6 deletions

View File

@@ -30,7 +30,7 @@
<text class="t1">订单号{{ item.orderNo }}</text>
</view>
<view class="status">
<u-tag plain plainFill :type="statusFilter(item.status).type">{{ statusFilter(item.status).label }}</u-tag>
<u-tag plain plainFill :type="statusFilter(item.status).type" :text="statusFilter(item.status).label"></u-tag>
</view>
</view>
<view class="user-info">
@@ -46,7 +46,7 @@
</view>
<view class="price">
<text class="t1">分享人数{{ item.shareNum || 0 }}</text>
<text class="t2">最终支付{{ item.payAmount || 0 }}</text>
<text class="t2">最终支付{{ item.finalPrice || 0 }}</text>
</view>
</view>
</view>
@@ -146,7 +146,7 @@ const tabs = ref([
label: '已核销'
},
{
value: 'refund',
value: 'ref',
label: '退款'
}
]);