|
@@ -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>
|