Browse Source

1、更新

huangmp 1 year ago
parent
commit
3fe19770a3

+ 5 - 0
src/components/order-card-item/index.vue

@@ -173,6 +173,9 @@
           }else if(prodName.indexOf("明信片") !== -1){
             width = 1229;
             height = 1796;
+          }else if(prodName.indexOf("田字四宫格") !== -1){
+            width = 1229;
+            height = 1796;
           }else if(prodName.indexOf("三宫格") !== -1){
             width = 673;
             height = 1547;
@@ -361,6 +364,8 @@
           this.prodType = '票根';
         }else if(prodName.indexOf('明信片') != -1){
           this.prodType = '明信片';
+        }else if(prodName.indexOf('田字四宫格') != -1){
+          this.prodType = '田字四宫格';
         }else if(prodName.indexOf('小方卡') != -1){
           this.prodType = '小方卡';
         }else if(prodName.indexOf('方卡') != -1){

+ 1 - 1
src/views/modules/print/print-order.vue

@@ -844,7 +844,7 @@
           })
           return;
         }
-        let dataBody = {waveId: this.wave.selectWaveId, "orderNumberList": [...this.dataListSelections], "printChannel": this.printChannel};
+        let dataBody = {shopId: this.shopPrintChannel.shopList[0].shopId, waveId: this.wave.selectWaveId, "orderNumberList": [...this.dataListSelections], "printChannel": this.printChannel};
         this.$http({
           url: this.$http.adornUrl(`/platform/wave/addToWave`),
           method: 'POST',