|
@@ -65,12 +65,13 @@
|
|
|
:disabled="booLock"
|
|
|
@click="handlePrint(scope.row)">出单
|
|
|
</el-button>
|
|
|
- <!--TODO 权限-->
|
|
|
- <el-button type="text"
|
|
|
- :disabled="booLock"
|
|
|
- @click="showOrderStatusdialogForm(scope.row)"
|
|
|
- v-if="scope.row.order_pay_type === 3">确认支付
|
|
|
- </el-button>
|
|
|
+ <template v-if="scope.row.order_pay_type === 3">
|
|
|
+ <el-button type="text"
|
|
|
+ :disabled="booLock"
|
|
|
+ @click="showOrderStatusdialogForm(scope.row)"
|
|
|
+ v-permission="'business_oms_order_site'">确认支付
|
|
|
+ </el-button>
|
|
|
+ </template>
|
|
|
<el-button type="text"
|
|
|
v-permission="'business_oms_order_check'"
|
|
|
@click="$router.push({name: 'BusinessOMSDetail', query: {id: scope.row.id}})">订单详情
|