|
@@ -601,7 +601,7 @@ export default {
|
|
|
]
|
|
|
},
|
|
|
|
|
|
- tooltit: this.isBtnShow ? "物料申请审核" : "确认结果",
|
|
|
+
|
|
|
fullscreen: false,
|
|
|
total: 0,
|
|
|
pageSize: 1,
|
|
@@ -691,6 +691,7 @@ export default {
|
|
|
],
|
|
|
isSupplierShow: false,
|
|
|
isBtnShow: false,
|
|
|
+ tooltit: '',
|
|
|
};
|
|
|
},
|
|
|
computed: {
|
|
@@ -1252,17 +1253,19 @@ export default {
|
|
|
this.params.btnS = this.$route.query.btnS;
|
|
|
|
|
|
// this.params.countryWoId = this.$route.query.countyWoId;
|
|
|
+ // tooltit: this.isBtnShow ? "确认结果" : "物料申请审核",
|
|
|
|
|
|
if(this.params.btnS == 1){
|
|
|
|
|
|
this.isBtnShow = true
|
|
|
this.params.cityWoId = this.$route.query.cityWoId;
|
|
|
-
|
|
|
+ this.tooltit = "物料申请审核"
|
|
|
|
|
|
}else if(this.params.btnS == 2){
|
|
|
//确认结果路由
|
|
|
this.isBtnShow = false;
|
|
|
this.params.cityWoId = this.$route.query.cityWoId;
|
|
|
+ this.tooltit = "确认结果"
|
|
|
}
|
|
|
|
|
|
}
|