|
|
@@ -65,7 +65,8 @@
|
|
|
</template>
|
|
|
|
|
|
<template #slot-export-order>
|
|
|
- <el-button type="primary" size="mini" style="margin-left:50px;" @click="toOrder()">转订单</el-button>
|
|
|
+ <el-button type="success" size="mini" style="margin-left:50px;" @click="toOrder()">转订单</el-button>
|
|
|
+ <el-button type="primary" size="mini" style="margin-left:50px;" @click="openOrder()">开走播单</el-button>
|
|
|
</template>
|
|
|
|
|
|
</x-crud>
|
|
|
@@ -254,6 +255,9 @@ export default {
|
|
|
this.switchOrder = 1
|
|
|
}
|
|
|
this.refreshData()
|
|
|
+ },
|
|
|
+ openOrder(){
|
|
|
+ this.$router.push({path:'/order/add-live'})
|
|
|
},
|
|
|
toOrder(){
|
|
|
this.$confirm('确认要开始转订单?', '提示', { confirmButtonText: '确定', cancelButtonText: '取消', type: 'warning' }).then(() => {
|