Browse Source

修改采购记录回显

dev
long 2 years ago
parent
commit
755cd5bba1
  1. 2
      src/views/accessrecords/ProcessMaterialsPlanRecord.vue
  2. 14
      src/views/accessrecords/modules/ProcessMaterialsPlanDetail.vue
  3. 2
      src/views/accessrecords/plan/ProcessMaterialsPlan.vue

2
src/views/accessrecords/ProcessMaterialsPlanRecord.vue

@ -252,7 +252,7 @@
{
title:'流程发起部门',
align:"center",
dataIndex: 'sysOrgCode_dictText',
dataIndex: 'departId_dictText',
},
{
title:'流程发起人',

14
src/views/accessrecords/modules/ProcessMaterialsPlanDetail.vue

@ -159,7 +159,7 @@
JSuperQuery
},
props:{
deliveryDetailId:{
materPlanId:{
type:String,
},
},
@ -183,12 +183,12 @@
{
title:'物料组',
align:"center",
dataIndex: 'materialClassify',
dataIndex: 'descriptionName',
},
{
title:'物料号',
align:"center",
dataIndex: 'materialsNumber',
dataIndex: 'materialClassify',
},
{
title:'物料名称及规格型号',
@ -238,7 +238,7 @@
},
],
url: {
list: "/hy/processUdgetPlan/queryProcessUdgetPlanMaterialByMainIds",
list: "/hy/processUdgetPlan/queryProcessUdgetPlanMaterialByMainId",
delete: "/hy/processUdgetPlan/deleteProcessUdgetPlanMaterial",
deleteBatch: "/hy/processUdgetPlan/deleteBatchProcessUdgetPlanMaterial",
exportXlsUrl: "/hy/processUdgetPlan/exportProcessUdgetPlanMaterial",
@ -326,14 +326,14 @@
this.ipagination.current = 1;
}
this.onClearSelected()
this.queryParam.processMaterialsDeliveryId = this.deliveryDetailId;
this.queryParam.id = this.materPlanId;
var params = this.getQueryParams();//
this.loading = true;
console.log("=====>",params)
getAction(this.url.list, params).then((res) => {
console.log(res);
console.log(res,"//////////////////////////");
if (res.success) {
this.dataSource = res.result.records;
this.dataSource = res.result;
this.ipagination.total = res.result.total;
}
if(res.code===510){

2
src/views/accessrecords/plan/ProcessMaterialsPlan.vue

@ -3,7 +3,7 @@
<a-tabs style="text-align: center" @change="callback">
<a-tab-pane tab="采购明细" key="1" forceRender >
<process-materials-plan-detail :materWared="this.$route.query.item" />
<process-materials-plan-detail :materPlanId="this.$route.query.item" />
</a-tab-pane>
<a-tab-pane tab="流程节点图" key="2" forceRender >

Loading…
Cancel
Save