fix: 修改订单列表页面展示效果,修改skuName字段

This commit is contained in:
YeMingfei666 2025-04-02 16:17:05 +08:00
parent ba731155ae
commit dab029cd23
1 changed files with 3 additions and 3 deletions

View File

@ -38,9 +38,9 @@
<span :class="[item.isVip == 1 ? 'colorStyle' : '']">
{{ item.productName }}
</span>
<span class="refund" v-if="item.refundNumber">(退 - {{ item.refundNumber }})</span>
<span class="refund" v-if="item.refundNum">(退 - {{ item.refundNum }})</span>
</div>
<div class="sku">{{ item.productSkuName }}</div>
<div class="sku">{{ item.skuName }}</div>
</div>
</div>
</div>
@ -49,7 +49,7 @@
<div>
<p>
名称
<el-tag type="primary">{{ scope.row.tableName }}</el-tag>
<el-tag type="primary">{{ scope.row.tableName || "无" }}</el-tag>
</p>
<p v-if="scope.row.tableCode">编号{{ scope.row.tableCode }}</p>
</div>