订单取消状态改为已关闭、订单货物展示退款数量

This commit is contained in:
15386982806
2024-01-05 10:08:37 +08:00
parent 4565297fe6
commit 21ae217369
9 changed files with 34 additions and 13 deletions

View File

@@ -241,7 +241,7 @@
<Option value="DELIVERED">已发货</Option>
<Option value="COMPLETED">已完成</Option>
<Option value="TAKE">待核验</Option>
<Option value="CANCELLED">取消</Option>
<Option value="CANCELLED">关闭</Option>
</Select>
</Form-item>
<Form-item label="支付状态" prop="payStatus">
@@ -660,7 +660,7 @@
} else if (params.row.orderStatus == "TAKE") {
return h('div', [h('span', {}, '待核验'),]);
} else if (params.row.orderStatus == "CANCELLED") {
return h('div', [h('span', {}, '已取消'),]);
return h('div', [h('span', {}, '已关闭'),]);
}
}
},