|
|
|
@ -7,7 +7,7 @@
|
|
|
|
|
</a-tab-pane> |
|
|
|
|
|
|
|
|
|
<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 tab="制式表格" key="3" forceRender> |
|
|
|
|
<process-material-warehousing-statement :materWared="this.$route.query.item" :procInstId="this.$route.query.procInstId"/> |
|
|
|
@ -41,6 +41,9 @@ export default {
|
|
|
|
|
list:"", |
|
|
|
|
getProcessPicture:'/hy/processMaterialWarehousing/getProcessPicture' |
|
|
|
|
}, |
|
|
|
|
conheight:{ |
|
|
|
|
height:'' |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
props: { |
|
|
|
@ -90,6 +93,12 @@ export default {
|
|
|
|
|
console.log(this.proMaterListId); |
|
|
|
|
// this.getPicture(); |
|
|
|
|
}, |
|
|
|
|
mounted() { |
|
|
|
|
console.log("执行声明周期监听") |
|
|
|
|
// 在 mounted 生命周期监听窗口变化并触发上文处理函数,修改高度 |
|
|
|
|
window.addEventListener('resize', this.getHeight); |
|
|
|
|
this.getHeight(); |
|
|
|
|
}, |
|
|
|
|
watch:{ |
|
|
|
|
$route(to,from) { |
|
|
|
|
this.tabKey = '1' |
|
|
|
@ -97,6 +106,9 @@ export default {
|
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
getHeight(){ |
|
|
|
|
this.conheight.height=window.innerHeight-230+'px'; |
|
|
|
|
}, |
|
|
|
|
callback(key){ |
|
|
|
|
this.tabKey = key |
|
|
|
|
if (key==2){ |
|
|
|
|