|
@@ -96,12 +96,12 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
- // TODO 出单api
|
|
|
async handlePrint (row) {
|
|
|
this.booLock = true
|
|
|
- const data = await this.$fetch('')
|
|
|
+ const data = await this.$fetch('/v1/user/order/print', { id: row.id }, 'get')
|
|
|
this.booLock = false
|
|
|
if (data.code === 200) {
|
|
|
+ this.$message.success('开始打印')
|
|
|
}
|
|
|
}
|
|
|
},
|