Commit c7a2068a authored by 康振飞's avatar 康振飞

数据包追溯优化

parent b1d1fa66
......@@ -9,15 +9,15 @@
<MenuItem name="2" replace>
主工艺
</MenuItem>
<MenuItem name="3" replace>
<!-- <MenuItem name="3" replace>
专业工艺
</MenuItem>
</MenuItem> -->
</Menu>
</Col>
<Col span="20" class="revieweBox">
<basicView ref="basicView" :baseData="basicData" v-show="basicmodal"/>
<mainView ref="mainView" :baseData="basicData" v-show="mainmodal" />
<dispatched ref="dispatched" :baseData="basicData" v-show="dispatchedmodal"/>
<!-- <dispatched ref="dispatched" :baseData="basicData" v-show="dispatchedmodal"/> -->
</Col>
</Row>
</div>
......@@ -66,7 +66,7 @@ export default {
loaddata(pamasId){
this.basicmodal=true;
this.mainmodal= false;
this.dispatchedmodal= false;
// this.dispatchedmodal= false;
// console.warn(pamasId) 获取主工艺信息 10030
let url = `${designUrl}/orderrouting/getordersheaderinfo?orderId=` + pamasId;
if(pamasId){
......@@ -161,18 +161,19 @@ export default {
if(v==2){
this.basicmodal= false;
this.mainmodal= true;
this.dispatchedmodal= false;
// this.dispatchedmodal= false;
this.$refs.mainView.getqc(this.mainexecuteid);
}else if(v==3){
this.basicmodal= false;
this.mainmodal= false;
this.dispatchedmodal= true;
 this.$refs.dispatched.getqc(this.disexecuteid);
}else{
}
// else if(v==3){
// this.basicmodal= false;
// this.mainmodal= false;
// // this.dispatchedmodal= true;
//  this.$refs.dispatched.getqc(this.disexecuteid);
// }
else{
this.basicmodal= true;
this.mainmodal= false;
this.dispatchedmodal= false;
// this.dispatchedmodal= false;
}
},
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment