huangyw 3 år sedan
förälder
incheckning
8547b06c5d

+ 2 - 2
src/xt_pages/supply/components/addSupply.vue Visa fil

@@ -154,7 +154,7 @@
154 154
                 <!-- :prop="'contacts.' + scope.$index + '.name'"  如需添加可在上方标签加入 -->
155 155
                 <el-select
156 156
                   v-model="scope.row.is_first"
157
-                  style="width: 100px"
157
+                  style="width: 110px"
158 158
                   @change="changeName($event, scope)"
159 159
                 >
160 160
                   <el-option
@@ -630,7 +630,7 @@ export default {
630 630
       width: 75% !important;
631 631
     }
632 632
     .el-select.el-select--medium {
633
-      width: 70% !important;
633
+      width: 85% !important;
634 634
     }
635 635
   }
636 636
 }

+ 24 - 0
src/xt_pages/supply/components/editGoodOrder.vue Visa fil

@@ -394,6 +394,13 @@
394 394
           >
395 395
           </el-input>
396 396
         </div>
397
+        <!-- 审核水印 -->
398
+        <img
399
+          src="@/assets/purchase/Reviewed.png"
400
+          alt="正在加载..."
401
+          class="reviewImg"
402
+          v-show="Reviewed == true"
403
+        />
397 404
       </el-form>
398 405
       <div style="margin-top: 10px">合计:{{ getAllPrice() }} 元</div>
399 406
       <div style="margin-top: 10px">
@@ -495,6 +502,7 @@ export default {
495 502
       page: 1,
496 503
       limit: 10,
497 504
       goodType: [],
505
+       Reviewed: false,
498 506
       goodInfo: [],
499 507
       org_id: 0,
500 508
       types: [],
@@ -545,6 +553,14 @@ export default {
545 553
       return_remark: "",
546 554
     };
547 555
   },
556
+
557
+  watch(){
558
+      // total_price:function(newval,oldval){
559
+      //   console.log(newval,'op')
560
+      // }
561
+
562
+  },
563
+
548 564
   methods: {
549 565
     getInitOrder() {
550 566
       getInitOrder().then((response) => {
@@ -816,6 +832,7 @@ export default {
816 832
           this.recordInfo.tableList[i].supply_count;
817 833
       }
818 834
       this.total_price = total_price;
835
+      this.addressChange()
819 836
       return total_price.toFixed(2);
820 837
     },
821 838
        addressChange() {
@@ -870,6 +887,7 @@ export default {
870 887
             this.showTwo = true;
871 888
             this.showThree = true;
872 889
             this.disabled = true
890
+            this.Reviewed = true;
873 891
           }
874 892
 
875 893
           this.id = out.id;
@@ -1424,4 +1442,10 @@ export default {
1424 1442
   bottom: 20px;
1425 1443
   height: 100%;
1426 1444
 }
1445
+.reviewImg {
1446
+  position: fixed;
1447
+  left: 50%;
1448
+  transform: translateX(-50%);
1449
+  top: 30%;
1450
+}
1427 1451
 </style>

+ 1 - 0
src/xt_pages/supply/components/editPurchaseOrder.vue Visa fil

@@ -799,6 +799,7 @@ export default {
799 799
           this.recordInfo.tableList[i].supply_count;
800 800
       }
801 801
       this.total_price = total_price;
802
+      this.addressChange()
802 803
       return total_price.toFixed(2);
803 804
     },
804 805