|
|
@@ -109,16 +109,6 @@
|
|
|
<dict-tag :options="order_source" :value="scope.row.orderSource" />
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="所属项目" align="center" prop="dataSource">
|
|
|
- <template #default="scope">
|
|
|
- {{ scope.row.dataSource == 'zhongche' ? '中车' : '--' }}
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
- <!-- <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 label="订单状态" align="center" prop="orderStatus">
|
|
|
<template #default="scope">
|
|
|
<dict-tag :options="order_status" :value="scope.row.orderStatus" />
|
|
|
@@ -342,7 +332,7 @@ const data = reactive<PageData<OrderMainForm, OrderMainQuery>>({
|
|
|
status: undefined,
|
|
|
platformCode: undefined,
|
|
|
assigneeType: 'mkt',
|
|
|
- // currentLevelStr: '1,2',
|
|
|
+ currentLevelStr: '1',
|
|
|
params: {}
|
|
|
},
|
|
|
rules: {
|
|
|
@@ -632,12 +622,12 @@ const getButtonsByStatus = (orderStatus: string, checkStatus: string): ActionBut
|
|
|
// 待支付状态:显示查看按钮
|
|
|
if (orderStatus === OrderStatus.PENDING_PAYMENT) {
|
|
|
buttons.push({ label: '查看', handler: handleReview });
|
|
|
- // buttons.push({ label: '确认订单', handler: handleAffirm });
|
|
|
+ buttons.push({ label: '确认订单', handler: handleAffirm });
|
|
|
}
|
|
|
// 待确认状态:显示确认订单按钮
|
|
|
if (orderStatus === OrderStatus.PENDING_CONFIRM) {
|
|
|
buttons.push({ label: '查看', handler: handleReview });
|
|
|
- // buttons.push({ label: '确认订单', handler: handleAffirm });
|
|
|
+ buttons.push({ label: '确认订单', handler: handleAffirm });
|
|
|
}
|
|
|
|
|
|
// 待审核:显示审核按钮
|