shish 2 лет назад
Родитель
Сommit
2a0a35b377
2 измененных файлов с 2 добавлено и 2 удалено
  1. 1 1
      ghs/src/views/in/list.vue
  2. 1 1
      ghs/src/views/order/list.vue

+ 1 - 1
ghs/src/views/in/list.vue

@@ -154,7 +154,7 @@ export default {
     },
     },
     printOrder(item){
     printOrder(item){
       this.$service.purchaseOrder.printBill({id:item.id}).then(data => {
       this.$service.purchaseOrder.printBill({id:item.id}).then(data => {
-          this.$notify({ title: '已打小票', message: '操作成功', type: 'success'})
+          this.$notify({ title: '已打', message: '操作成功', type: 'success'})
         })
         })
     },
     },
     cancelOrder(item){
     cancelOrder(item){

+ 1 - 1
ghs/src/views/order/list.vue

@@ -245,7 +245,7 @@ export default {
           if(data.hasNoPrint && data.hasNoPrint == 1){
           if(data.hasNoPrint && data.hasNoPrint == 1){
             this.$confirm('请先设置打印小票机', '提示', { confirmButtonText: '确定', cancelButtonText: '取消', type: 'warning' }).then(() => { })
             this.$confirm('请先设置打印小票机', '提示', { confirmButtonText: '确定', cancelButtonText: '取消', type: 'warning' }).then(() => { })
           }else{
           }else{
-            this.$notify({ title: '已打小票', message: '操作成功', type: 'success'})
+            this.$notify({ title: '已打', message: '操作成功', type: 'success'})
           }
           }
       })
       })
     },
     },