|
|
|
@ -1,18 +1,37 @@
|
|
|
|
|
<template> |
|
|
|
|
<a-card :bordered="false"> |
|
|
|
|
<a-tabs style="text-align: center" @change="changeTables"> |
|
|
|
|
<a-tab-pane tab="总库出库" key="1" v-if="onlineDisabled" forceRender> |
|
|
|
|
<a-tabs style="text-align: center"> |
|
|
|
|
<a-tab-pane tab="流程正文" key="1" forceRender> |
|
|
|
|
<process-materials-delivery-form :dianshang="delivery" :isNew="isNew" :hieg="hieg" @delivery="showType" :processData="processData" :disabled="disabled" |
|
|
|
|
@afterSubmit="afterSub" @close="close" :task="task" @passTask="passTask" |
|
|
|
|
@backTask="backTask" @loadData="loadData"/> |
|
|
|
|
</a-tab-pane> |
|
|
|
|
|
|
|
|
|
<a-tabs style="text-align: center"> |
|
|
|
|
<a-tab-pane tab="流程正文" key="1" forceRender> |
|
|
|
|
<process-materials-delivery-form :isNew="isNew" :hieg="hieg" :processData="processData" :disabled="disabled" |
|
|
|
|
@afterSubmit="afterSub" @close="close" :task="task" @passTask="passTask" |
|
|
|
|
@backTask="backTask" @loadData="loadData"/> |
|
|
|
|
<a-tab-pane tab="流程节点图" key="2" forceRender> |
|
|
|
|
<historic-pictrue :pictureId="pictureId" :procInstId="procInstId"/> |
|
|
|
|
</a-tab-pane> |
|
|
|
|
<a-tab-pane tab="审批历史" key="3" forceRender> |
|
|
|
|
<historic-detail :pictureId="pictureId" :procInstId="procInstId"/> |
|
|
|
|
</a-tab-pane> |
|
|
|
|
</a-tabs> |
|
|
|
|
</a-tab-pane> |
|
|
|
|
<a-tab-pane tab="项目部出库" key="2" v-if="noDisabled" forceRender> |
|
|
|
|
<a-tabs style="text-align: center"> |
|
|
|
|
<a-tab-pane tab="流程正文" key="1" forceRender> |
|
|
|
|
<process-materials-delivery-form :dianshang="delivery" :isNew="isNew" :hieg="hieg" @delivery="showType" :processData="processData" :disabled="disabled" |
|
|
|
|
@afterSubmit="afterSub" @close="close" :task="task" @passTask="passTask" |
|
|
|
|
@backTask="backTask" @loadData="loadData"/> |
|
|
|
|
</a-tab-pane> |
|
|
|
|
|
|
|
|
|
<a-tab-pane tab="流程节点图" key="2" forceRender> |
|
|
|
|
<historic-pictrue :pictureId="pictureId" :procInstId="procInstId"/> |
|
|
|
|
</a-tab-pane> |
|
|
|
|
<a-tab-pane tab="审批历史" key="3" forceRender> |
|
|
|
|
<historic-detail :pictureId="pictureId" :procInstId="procInstId"/> |
|
|
|
|
<a-tab-pane tab="流程节点图" key="2" forceRender> |
|
|
|
|
<historic-pictrue :pictureId="pictureId" :procInstId="procInstId"/> |
|
|
|
|
</a-tab-pane> |
|
|
|
|
<a-tab-pane tab="审批历史" key="3" forceRender> |
|
|
|
|
<historic-detail :pictureId="pictureId" :procInstId="procInstId"/> |
|
|
|
|
</a-tab-pane> |
|
|
|
|
</a-tabs> |
|
|
|
|
</a-tab-pane> |
|
|
|
|
</a-tabs> |
|
|
|
|
</a-card> |
|
|
|
@ -27,7 +46,11 @@
|
|
|
|
|
name: 'ProcessMaterialsDelivery', |
|
|
|
|
components: { ProcessMaterialsDeliveryForm, historicPictrue, historicDetail }, |
|
|
|
|
data() { |
|
|
|
|
return {} |
|
|
|
|
return { |
|
|
|
|
delivery: 1, |
|
|
|
|
onlineDisabled:true, |
|
|
|
|
noDisabled:true |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
props: { |
|
|
|
|
/*流程数据*/ |
|
|
|
@ -79,6 +102,17 @@
|
|
|
|
|
}, |
|
|
|
|
loadData() { |
|
|
|
|
this.$emit('loadData') |
|
|
|
|
}, |
|
|
|
|
changeTables(val){ |
|
|
|
|
this.delivery=Number(val); |
|
|
|
|
}, |
|
|
|
|
showType(val){ |
|
|
|
|
if (val==2){ |
|
|
|
|
this.onlineDisabled=false |
|
|
|
|
} |
|
|
|
|
if (val==1){ |
|
|
|
|
this.noDisabled=false |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|