|
@@ -40,14 +40,26 @@
|
|
|
<el-table-column label="手机号" prop="order_user_phone" width="120"></el-table-column>
|
|
|
<el-table-column label="商品数量" prop="product_num"></el-table-column>
|
|
|
<el-table-column label="下单时间" prop="created_at" width="180"></el-table-column>
|
|
|
+ <el-table-column label="出单状态">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-tag :type="scope.row.order_print_status === 0 ? 'warning' : 'info'">
|
|
|
+ {{ ['未出单', '已出单'][scope.row.order_print_status] }}
|
|
|
+ </el-tag>
|
|
|
+ </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">
|
|
|
+ <el-table-column label="操作" fixed="right" width="160">
|
|
|
<template slot-scope="scope">
|
|
|
+ <el-button type="text"
|
|
|
+ v-permission="'business_oms_order_print'"
|
|
|
+ :disabled="booLock"
|
|
|
+ @click="handlePrint(scope.row)">出单
|
|
|
+ </el-button>
|
|
|
<el-button type="text"
|
|
|
v-permission="'business_oms_order_check'"
|
|
|
@click="$router.push({name: 'BusinessOMSDetail', query: {id: scope.row.id}})">订单详情
|
|
@@ -79,7 +91,18 @@ export default {
|
|
|
time: [],
|
|
|
searchForm: {},
|
|
|
tableData: [],
|
|
|
- tableUrl: '/v1/user/order/list'
|
|
|
+ tableUrl: '/v1/user/order/list',
|
|
|
+ booLock: false
|
|
|
+ }
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ // TODO 出单api
|
|
|
+ async handlePrint (row) {
|
|
|
+ this.booLock = true
|
|
|
+ const data = await this.$fetch('')
|
|
|
+ this.booLock = false
|
|
|
+ if (data.code === 200) {
|
|
|
+ }
|
|
|
}
|
|
|
},
|
|
|
mounted () {
|