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

数据包追溯优化

parent b1d1fa66
...@@ -9,15 +9,15 @@ ...@@ -9,15 +9,15 @@
<MenuItem name="2" replace> <MenuItem name="2" replace>
主工艺 主工艺
</MenuItem> </MenuItem>
<MenuItem name="3" replace> <!-- <MenuItem name="3" replace>
专业工艺 专业工艺
</MenuItem> </MenuItem> -->
</Menu> </Menu>
</Col> </Col>
<Col span="20" class="revieweBox"> <Col span="20" class="revieweBox">
<basicView ref="basicView" :baseData="basicData" v-show="basicmodal"/> <basicView ref="basicView" :baseData="basicData" v-show="basicmodal"/>
<mainView ref="mainView" :baseData="basicData" v-show="mainmodal" /> <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> </Col>
</Row> </Row>
</div> </div>
...@@ -66,7 +66,7 @@ export default { ...@@ -66,7 +66,7 @@ export default {
loaddata(pamasId){ loaddata(pamasId){
this.basicmodal=true; this.basicmodal=true;
this.mainmodal= false; this.mainmodal= false;
this.dispatchedmodal= false; // this.dispatchedmodal= false;
// console.warn(pamasId) 获取主工艺信息 10030 // console.warn(pamasId) 获取主工艺信息 10030
let url = `${designUrl}/orderrouting/getordersheaderinfo?orderId=` + pamasId; let url = `${designUrl}/orderrouting/getordersheaderinfo?orderId=` + pamasId;
if(pamasId){ if(pamasId){
...@@ -161,18 +161,19 @@ export default { ...@@ -161,18 +161,19 @@ export default {
if(v==2){ if(v==2){
this.basicmodal= false; this.basicmodal= false;
this.mainmodal= true; this.mainmodal= true;
this.dispatchedmodal= false; // this.dispatchedmodal= false;
this.$refs.mainView.getqc(this.mainexecuteid); this.$refs.mainView.getqc(this.mainexecuteid);
}else if(v==3){ }
this.basicmodal= false; // else if(v==3){
this.mainmodal= false; // this.basicmodal= false;
this.dispatchedmodal= true; // this.mainmodal= false;
 this.$refs.dispatched.getqc(this.disexecuteid); // // this.dispatchedmodal= true;
}else{ //  this.$refs.dispatched.getqc(this.disexecuteid);
// }
else{
this.basicmodal= true; this.basicmodal= true;
this.mainmodal= false; 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