|
|
@ -7,7 +7,7 @@ |
|
|
|
</a-tab-pane> |
|
|
|
</a-tab-pane> |
|
|
|
|
|
|
|
|
|
|
|
<a-tab-pane tab="流程节点图" key="2" forceRender > |
|
|
|
<a-tab-pane tab="流程节点图" key="2" forceRender > |
|
|
|
<process-material-warehousing-flow-chart v-if="ifShow" :pictureId="pictureId" :procInstId="procInstId"/> |
|
|
|
<process-material-warehousing-flow-chart v-if="ifShow" :pictureId="pictureId" :procInstId="procInstId" :style=conheight style="overflow-y:auto"/> |
|
|
|
</a-tab-pane> |
|
|
|
</a-tab-pane> |
|
|
|
<a-tab-pane tab="制式表格" key="3" forceRender> |
|
|
|
<a-tab-pane tab="制式表格" key="3" forceRender> |
|
|
|
<ProcessMaterialsPlanList :materWared="this.$route.query.item" :procInstId="this.$route.query.procInstId"/> |
|
|
|
<ProcessMaterialsPlanList :materWared="this.$route.query.item" :procInstId="this.$route.query.procInstId"/> |
|
|
@ -43,6 +43,9 @@ |
|
|
|
list:"", |
|
|
|
list:"", |
|
|
|
getProcessPicture:'/hy/processMaterialWarehousing/getProcessPicture' |
|
|
|
getProcessPicture:'/hy/processMaterialWarehousing/getProcessPicture' |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
conheight:{ |
|
|
|
|
|
|
|
height:'' |
|
|
|
|
|
|
|
}, |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
props: { |
|
|
|
props: { |
|
|
@ -93,6 +96,12 @@ |
|
|
|
console.log("=================",this.proMaterListId,"===================") |
|
|
|
console.log("=================",this.proMaterListId,"===================") |
|
|
|
// this.getPicture(); |
|
|
|
// this.getPicture(); |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
mounted() { |
|
|
|
|
|
|
|
console.log("执行声明周期监听") |
|
|
|
|
|
|
|
// 在 mounted 生命周期监听窗口变化并触发上文处理函数,修改高度 |
|
|
|
|
|
|
|
window.addEventListener('resize', this.getHeight); |
|
|
|
|
|
|
|
this.getHeight(); |
|
|
|
|
|
|
|
}, |
|
|
|
watch:{ |
|
|
|
watch:{ |
|
|
|
proMaterListId:function (newData, oldData) { |
|
|
|
proMaterListId:function (newData, oldData) { |
|
|
|
//newData是更新后的数据 |
|
|
|
//newData是更新后的数据 |
|
|
@ -107,6 +116,9 @@ |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
methods: { |
|
|
|
|
|
|
|
getHeight(){ |
|
|
|
|
|
|
|
this.conheight.height=window.innerHeight-230+'px'; |
|
|
|
|
|
|
|
}, |
|
|
|
callback(key) { |
|
|
|
callback(key) { |
|
|
|
this.tabKey = key |
|
|
|
this.tabKey = key |
|
|
|
console.log("=================",key,"===================") |
|
|
|
console.log("=================",key,"===================") |
|
|
|