瀏覽代碼

管理后台-业务中心:点单-打印

panyong 3 年之前
父節點
當前提交
d8a178bee9
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      htmldev/manage/src/views/business/oms/list/index.vue

+ 2 - 2
htmldev/manage/src/views/business/oms/list/index.vue

@@ -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('开始打印')
       }
     }
   },