|
@@ -60,7 +60,7 @@
|
|
|
<span style="font-size: 16px; font-weight: 500">销售订单信息列表</span>
|
|
<span style="font-size: 16px; font-weight: 500">销售订单信息列表</span>
|
|
|
|
|
|
|
|
<div style="display: flex; flex-wrap: nowrap; gap: 10px">
|
|
<div style="display: flex; flex-wrap: nowrap; gap: 10px">
|
|
|
- <el-button type="primary" @click="handleBatchConfirm()" :disabled="!ids.length" plain>批量确认订单</el-button>
|
|
|
|
|
|
|
+ <!-- <el-button type="primary" @click="handleBatchConfirm()" :disabled="!ids.length" plain>批量确认订单</el-button> -->
|
|
|
<el-button type="primary" @click="handleCloseOrder()" :disabled="!ids.length" plain>关闭订单</el-button>
|
|
<el-button type="primary" @click="handleCloseOrder()" :disabled="!ids.length" plain>关闭订单</el-button>
|
|
|
<el-button type="primary" @click="handleDelete()" :disabled="!ids.length" plain>删除订单</el-button>
|
|
<el-button type="primary" @click="handleDelete()" :disabled="!ids.length" plain>删除订单</el-button>
|
|
|
<el-button type="primary" :disabled="!ids.length" plain>导出订单</el-button>
|
|
<el-button type="primary" :disabled="!ids.length" plain>导出订单</el-button>
|
|
@@ -569,12 +569,12 @@ const getButtonsByStatus = (orderStatus: string, checkStatus: string): ActionBut
|
|
|
// 待支付状态:显示查看按钮
|
|
// 待支付状态:显示查看按钮
|
|
|
if (orderStatus === OrderStatus.PENDING_PAYMENT) {
|
|
if (orderStatus === OrderStatus.PENDING_PAYMENT) {
|
|
|
buttons.push({ label: '查看', handler: handleReview });
|
|
buttons.push({ label: '查看', handler: handleReview });
|
|
|
- buttons.push({ label: '确认订单', handler: handleAffirm });
|
|
|
|
|
|
|
+ // buttons.push({ label: '确认订单', handler: handleAffirm });
|
|
|
}
|
|
}
|
|
|
// 待确认状态:显示确认订单按钮
|
|
// 待确认状态:显示确认订单按钮
|
|
|
if (orderStatus === OrderStatus.PENDING_CONFIRM) {
|
|
if (orderStatus === OrderStatus.PENDING_CONFIRM) {
|
|
|
buttons.push({ label: '查看', handler: handleReview });
|
|
buttons.push({ label: '查看', handler: handleReview });
|
|
|
- buttons.push({ label: '确认订单', handler: handleAffirm });
|
|
|
|
|
|
|
+ // buttons.push({ label: '确认订单', handler: handleAffirm });
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
// 待审核:显示审核按钮
|
|
// 待审核:显示审核按钮
|