|
|
@@ -105,11 +105,11 @@
|
|
|
<dict-tag :options="order_source" :value="scope.row.orderSource" />
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="审核状态" align="center" prop="checkStatus">
|
|
|
+ <!-- <el-table-column label="审核状态" align="center" prop="checkStatus">
|
|
|
<template #default="scope">
|
|
|
<dict-tag :options="order_check_status" :value="scope.row.checkStatus" />
|
|
|
</template>
|
|
|
- </el-table-column>
|
|
|
+ </el-table-column> -->
|
|
|
<el-table-column label="订单状态" align="center" prop="orderStatus">
|
|
|
<template #default="scope">
|
|
|
<dict-tag :options="order_status" :value="scope.row.orderStatus" />
|
|
|
@@ -294,6 +294,7 @@ const data = reactive<PageData<OrderMainForm, OrderMainQuery>>({
|
|
|
cancelReason: undefined,
|
|
|
expenseType: undefined,
|
|
|
status: undefined,
|
|
|
+ checkStatus: '1',
|
|
|
platformCode: undefined,
|
|
|
params: {}
|
|
|
},
|
|
|
@@ -596,9 +597,9 @@ const getButtonsByStatus = (orderStatus: string, checkStatus: string): ActionBut
|
|
|
}
|
|
|
|
|
|
// 待审核:显示审核按钮
|
|
|
- if (checkStatus === CheckStatus.PENDING) {
|
|
|
- buttons.push({ label: '审核', handler: handleCheck });
|
|
|
- }
|
|
|
+ // if (checkStatus === CheckStatus.PENDING) {
|
|
|
+ // buttons.push({ label: '审核', handler: handleCheck });
|
|
|
+ // }
|
|
|
|
|
|
// 待发货或部分发货:显示发货按钮
|
|
|
if (orderStatus === OrderStatus.PENDING_SHIPMENT || orderStatus === OrderStatus.PARTIAL_SHIPMENT) {
|