|
@@ -47,19 +47,30 @@
|
|
|
</el-tag>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column label="支付方式">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <p>{{ ['', '微信', '支付宝', '现场支付'][scope.row.order_pay_type] }}</p>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column label="订单状态状态" width="120">
|
|
|
<template slot-scope="scope">
|
|
|
<p>{{ ['待支付', '已支付', '全部退款', '部分退款', '已取消'][scope.row.order_status] }}</p>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="用户支付订单编号" prop="order_official_number" width="240"></el-table-column>
|
|
|
- <el-table-column label="操作" fixed="right" width="160">
|
|
|
+ <el-table-column label="操作" fixed="right" width="220">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button type="text"
|
|
|
v-permission="'business_oms_order_print'"
|
|
|
:disabled="booLock"
|
|
|
@click="handlePrint(scope.row)">出单
|
|
|
</el-button>
|
|
|
+ <!--TODO 权限-->
|
|
|
+ <el-button type="text"
|
|
|
+ :disabled="booLock"
|
|
|
+ @click="handlePrint(scope.row)"
|
|
|
+ v-if="scope.row.order_pay_type === 3 && scope.row.order_status === 1">确认支付
|
|
|
+ </el-button>
|
|
|
<el-button type="text"
|
|
|
v-permission="'business_oms_order_check'"
|
|
|
@click="$router.push({name: 'BusinessOMSDetail', query: {id: scope.row.id}})">订单详情
|