|
|
|
@ -1,7 +1,7 @@
|
|
|
|
|
<template> |
|
|
|
|
<a-card :bordered="false" > |
|
|
|
|
|
|
|
|
|
<a-tabs style="text-align: center" @change="callback"> |
|
|
|
|
<a-tabs style="text-align: center" :default-active-key="this.tabKey" @change="callback"> |
|
|
|
|
<a-tab-pane tab="采购明细" key="1" forceRender > |
|
|
|
|
<process-materials-plan-detail :materPlanId="this.$route.query.item" /> |
|
|
|
|
</a-tab-pane> |
|
|
|
@ -18,10 +18,10 @@
|
|
|
|
|
|
|
|
|
|
<script> |
|
|
|
|
import ProcessMaterialsPlanDetail from '../modules/ProcessMaterialsPlanDetail' |
|
|
|
|
import ProcessMaterialWarehousingFlowChart from '@views/accessrecords/flowchart/ProcessMaterialWarehousingFlowChart' |
|
|
|
|
import ProcessMaterialsPlanStatement from '@views/accessrecords/statement/ProcessMaterialsPlanStatement' |
|
|
|
|
import ProcessMaterialWarehousingFlowChart from '../flowchart/ProcessMaterialWarehousingFlowChart' |
|
|
|
|
import ProcessMaterialsPlanStatement from '../statement/ProcessMaterialsPlanStatement' |
|
|
|
|
import { getAction } from '@api/manage' |
|
|
|
|
import ProcessMaterialsPlanList from '@views/accessrecords/plan/ProcessMaterialsPlanList' |
|
|
|
|
import ProcessMaterialsPlanList from '../plan/ProcessMaterialsPlanList' |
|
|
|
|
|
|
|
|
|
export default { |
|
|
|
|
name: 'ProcessMaterialsPlan', |
|
|
|
@ -33,6 +33,7 @@
|
|
|
|
|
}, |
|
|
|
|
data() { |
|
|
|
|
return { |
|
|
|
|
tabKey:"1", |
|
|
|
|
isNew:'', |
|
|
|
|
ifShow:false, |
|
|
|
|
pictureId:'', |
|
|
|
@ -87,30 +88,41 @@
|
|
|
|
|
// required: false |
|
|
|
|
// } |
|
|
|
|
// }, |
|
|
|
|
|
|
|
|
|
created(){ |
|
|
|
|
console.log(this.proMaterListId); |
|
|
|
|
console.log("=================",this.proMaterListId,"===================") |
|
|
|
|
// this.getPicture(); |
|
|
|
|
}, |
|
|
|
|
watch:{ |
|
|
|
|
proMaterListId:function (newData, oldData) { |
|
|
|
|
//newData是更新后的数据 |
|
|
|
|
//oldData是旧数据 |
|
|
|
|
if(newData !== oldData){ |
|
|
|
|
console.log("=================","值发生了变化","===================") |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
callback(key){ |
|
|
|
|
if (key==2){ |
|
|
|
|
getAction(this.url.getProcessPicture, { id:this.$route.query.item }).then((res) => { |
|
|
|
|
callback(key) { |
|
|
|
|
console.log("=================",key,"===================") |
|
|
|
|
if (key == 2) { |
|
|
|
|
getAction(this.url.getProcessPicture, { id: this.$route.query.item }).then((res) => { |
|
|
|
|
if (res.success) { |
|
|
|
|
// this.dataSource = res.result.records; |
|
|
|
|
// this.ipagination.total = res.result.total; |
|
|
|
|
this.pictureId=res.result.procDefId; |
|
|
|
|
this.ifShow=true; |
|
|
|
|
console.log(res,'获取数据') |
|
|
|
|
this.pictureId = res.result.procDefId; |
|
|
|
|
this.ifShow = true; |
|
|
|
|
console.log(res, '获取数据') |
|
|
|
|
} |
|
|
|
|
if(res.code===510){ |
|
|
|
|
if (res.code === 510) { |
|
|
|
|
this.$message.warning(res.message) |
|
|
|
|
} |
|
|
|
|
this.loading = false; |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
</script> |
|
|
|
|
|
|
|
|
|