|
|
|
@ -54,7 +54,7 @@
|
|
|
|
|
</a-form-item> |
|
|
|
|
</a-col> |
|
|
|
|
<a-col :span="8"> |
|
|
|
|
<a-form-item label="文件id" :labelCol="labelCol" :wrapperCol="wrapperCol"> |
|
|
|
|
<a-form-item label="文件" :labelCol="labelCol" :wrapperCol="wrapperCol"> |
|
|
|
|
<j-upload v-decorator="['fileId']" :trigger-change="true"></j-upload> |
|
|
|
|
</a-form-item> |
|
|
|
|
</a-col> |
|
|
|
@ -65,15 +65,20 @@
|
|
|
|
|
<a-tabs v-model="activeKey" @change="handleChangeTabs" ref="tabs"> |
|
|
|
|
<a-tab-pane tab="预算计划采购流程物料清单表" :key="refKeys[0]" :forceRender="true"> |
|
|
|
|
<j-editable-table |
|
|
|
|
:ref="refKeys[0]" |
|
|
|
|
ref="processUdgetPlanMaterial" |
|
|
|
|
:loading="processUdgetPlanMaterialTable.loading" |
|
|
|
|
:columns="processUdgetPlanMaterialTable.columns" |
|
|
|
|
:dataSource="processUdgetPlanMaterialTable.dataSource" |
|
|
|
|
@valueChange ="onSelect" |
|
|
|
|
:maxHeight="300" |
|
|
|
|
:disabled="formDisabled" |
|
|
|
|
:rowNumber="true" |
|
|
|
|
:rowSelection="true" |
|
|
|
|
:actionButton="true"/> |
|
|
|
|
|
|
|
|
|
<template v-slot:materialCode="props"> |
|
|
|
|
<a-input :value="props.text" disabled /> |
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
</a-tab-pane> |
|
|
|
|
</a-tabs> |
|
|
|
|
<div class="div_process"> |
|
|
|
@ -118,6 +123,7 @@
|
|
|
|
|
}, |
|
|
|
|
data() { |
|
|
|
|
return { |
|
|
|
|
bigId:[], |
|
|
|
|
labelCol: { |
|
|
|
|
xs: { span: 24 }, |
|
|
|
|
sm: { span: 6 } |
|
|
|
@ -145,14 +151,24 @@
|
|
|
|
|
loading: false, |
|
|
|
|
dataSource: [], |
|
|
|
|
columns: [ |
|
|
|
|
|
|
|
|
|
{ |
|
|
|
|
title: '物料组', |
|
|
|
|
key: 'materialGroup', |
|
|
|
|
type: FormTypes.select, |
|
|
|
|
// type: FormTypes.slot, // <-------------改为 slot 格式 |
|
|
|
|
// slotName: 'actions', // <-------------slot 的名称,对应 v-slot 冒号后面和等号前面的内容 |
|
|
|
|
type: FormTypes.sel_search, |
|
|
|
|
dictCode: '', |
|
|
|
|
width: '200px', |
|
|
|
|
placeholder: '请输入${title}', |
|
|
|
|
defaultValue: '' |
|
|
|
|
options: [], |
|
|
|
|
props:{title: 'show title'} |
|
|
|
|
// scopedSlots: { customRender: 'edit' },//引入的插槽 |
|
|
|
|
// customRender:function (t,r,index) { |
|
|
|
|
// console.log(t,r); |
|
|
|
|
// |
|
|
|
|
// } |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
title: '物料号', |
|
|
|
@ -309,6 +325,8 @@
|
|
|
|
|
add: '/hy/processUdgetPlan/add', |
|
|
|
|
edit: '/hy/processUdgetPlan/edit', |
|
|
|
|
queryById: '/hy/processUdgetPlan/queryById', |
|
|
|
|
descriptionRake: "/description/processDescription/descriptionName", |
|
|
|
|
merchandiseNewsList: "/merchandisenews/processMerchandiseNews/merchandiseNewsList", |
|
|
|
|
processUdgetPlanMaterial: { |
|
|
|
|
list: '/hy/processUdgetPlan/queryProcessUdgetPlanMaterialByMainId' |
|
|
|
|
} |
|
|
|
@ -374,8 +392,61 @@
|
|
|
|
|
this.init(); |
|
|
|
|
} |
|
|
|
|
this.getAllTable() |
|
|
|
|
this.fetchData(); |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
onSelect(record) { |
|
|
|
|
// this.$refs.processUdgetPlanMaterial.getValues((error, values) => { |
|
|
|
|
// |
|
|
|
|
// console.log(error, values) |
|
|
|
|
// }) |
|
|
|
|
|
|
|
|
|
console.log(record.row); |
|
|
|
|
console.log(record.row.materialGroup); |
|
|
|
|
if(record.row.materialGroup.length > 0){ |
|
|
|
|
console.log("执行l") |
|
|
|
|
this.fetchMerchandiseNews(record.row.materialGroup); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
fetchMerchandiseNews(value){ //查询物料组 |
|
|
|
|
//查询大品类数据 |
|
|
|
|
let par = { |
|
|
|
|
delFlag: 0, |
|
|
|
|
descriptionId:value, |
|
|
|
|
} |
|
|
|
|
this.bigId = []; |
|
|
|
|
getAction(this.url.merchandiseNewsList,par).then((res)=>{ |
|
|
|
|
if(res.success){ |
|
|
|
|
console.log(res.result); |
|
|
|
|
// res.result.forEach( item => { |
|
|
|
|
// this.processUdgetPlanMaterialTable.columns[0].options.push({ |
|
|
|
|
// title : item.descriptionName, |
|
|
|
|
// value : item.id, |
|
|
|
|
// }) |
|
|
|
|
// }) |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
fetchData(value){ //查询物料组 |
|
|
|
|
//查询大品类数据 |
|
|
|
|
let par = { |
|
|
|
|
delFlag: 0, |
|
|
|
|
} |
|
|
|
|
this.bigId = []; |
|
|
|
|
getAction(this.url.descriptionRake,par).then((res)=>{ |
|
|
|
|
if(res.success){ |
|
|
|
|
console.log(res.result); |
|
|
|
|
res.result.forEach( item => { |
|
|
|
|
this.processUdgetPlanMaterialTable.columns[0].options.push({ |
|
|
|
|
title : item.descriptionName, |
|
|
|
|
value : item.id, |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
/*回显数据*/ |
|
|
|
|
init(){ |
|
|
|
|
this.btndisabled = true; |
|
|
|
|