|
|
|
@ -4,7 +4,7 @@
|
|
|
|
|
<a-tabs style="text-align: center"> |
|
|
|
|
<a-tab-pane tab="流程正文" key="1" forceRender> |
|
|
|
|
<process-udget-plan-form :isNew="isNew" :processData="processData" :disabled="disabled" @afterSubmit="afterSub" @close="close" :task="task" @passTask="passTask" @backTask="backTask" :hieg="hieg" @loadData="loadData" :isPlanType="isPlanType" |
|
|
|
|
:isSourceCapital="isSourceCapital" :routePlanName="routePlanName"/> |
|
|
|
|
:isSourceCapital="isSourceCapital" :routePlanName="routePlanName" :itemId="itemId"/> |
|
|
|
|
</a-tab-pane> |
|
|
|
|
|
|
|
|
|
<a-tab-pane tab="流程节点图" key="2" forceRender> |
|
|
|
@ -13,6 +13,9 @@
|
|
|
|
|
<a-tab-pane tab="审批历史" key="3" forceRender> |
|
|
|
|
<historic-detail :pictureId="pictureId" :procInstId="procInstId"/> |
|
|
|
|
</a-tab-pane> |
|
|
|
|
<a-tab-pane tab="制式表格" key="4" forceRender v-if="isTable"> |
|
|
|
|
<ProcessMaterialsPlanList :isTable="isTable" :materWared="this.$route.query.item"/> |
|
|
|
|
</a-tab-pane> |
|
|
|
|
</a-tabs> |
|
|
|
|
|
|
|
|
|
<!-- <a-tabs style="text-align: center"> |
|
|
|
@ -35,10 +38,11 @@
|
|
|
|
|
import ProcessUdgetPlanForm from './ProcessUdgetPlanForm' |
|
|
|
|
import historicPictrue from '../historicPictrue' |
|
|
|
|
import historicDetail from '../historicDetail' |
|
|
|
|
import ProcessMaterialsPlanList from '../../accessrecords/plan/ProcessMaterialsPlanList' |
|
|
|
|
var docxx = require("docx-preview"); |
|
|
|
|
export default { |
|
|
|
|
name: 'ProcessUdgetPlan', |
|
|
|
|
components: {ProcessUdgetPlanForm,historicPictrue, historicDetail}, |
|
|
|
|
components: {ProcessUdgetPlanForm,historicPictrue, historicDetail,ProcessMaterialsPlanList}, |
|
|
|
|
data() { |
|
|
|
|
return { |
|
|
|
|
tabKey:2, |
|
|
|
@ -50,11 +54,13 @@
|
|
|
|
|
/*流程数据*/ |
|
|
|
|
isNew: {type: Boolean, default: false, required: false}, |
|
|
|
|
task: {type: Boolean, default: false, required: false}, |
|
|
|
|
isTable:{type: Boolean, default: false, required: false}, |
|
|
|
|
/*采购类型*/ |
|
|
|
|
isPlanType: {type: Boolean, default: false, required: false}, |
|
|
|
|
/*资金来源*/ |
|
|
|
|
isSourceCapital:{type: Boolean, default: false, required: false}, |
|
|
|
|
routePlanName:{type:String,default:'',required: false}, |
|
|
|
|
itemId:{type:String,default:'',required: false}, |
|
|
|
|
processData:{ |
|
|
|
|
type:Object, |
|
|
|
|
default:()=>{return {}}, |
|
|
|
@ -112,6 +118,10 @@
|
|
|
|
|
// required: false |
|
|
|
|
// } |
|
|
|
|
// }, |
|
|
|
|
created() { |
|
|
|
|
console.log(this.itemId,"this.itemId") |
|
|
|
|
this.$route.query.item=this.itemId |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
afterSub(formData){ |
|
|
|
|
this.$emit('afterSubmit',formData) |
|
|
|
|