+
-
+
+ 导出
+ 查询
+ 重置
+
@@ -48,17 +47,14 @@
-
-
-
导出
-
查询
-
重置
-
-
-
-
-
-
+
+
+
+
+
+
+
+
@@ -190,12 +186,12 @@
{
title:'物料组',
align:"center",
- dataIndex: 'descriptionName',
+ dataIndex: 'materialClassify',
},
{
title:'物料号',
align:"center",
- dataIndex: 'materialClassify',
+ dataIndex: 'materialsNumber',
},
{
title:'物料名称及规格型号',
@@ -248,7 +244,7 @@
},
],
url: {
- list: "/hy/processUdgetPlan/queryProcessUdgetPlanMaterialByMainId",
+ list: "/hy/processUdgetPlan/queryProcessUdgetPlanMaterialByMainIdDetail",
delete: "/hy/processUdgetPlan/deleteProcessUdgetPlanMaterial",
deleteBatch: "/hy/processUdgetPlan/deleteBatchProcessUdgetPlanMaterial",
exportXlsUrl: "/hy/processUdgetPlan/exportProcessUdgetPlanMaterial",
@@ -275,9 +271,22 @@
superFieldList:[],
}
},
+
created() {
- console.log("=============",this.deliveryDetailId);
+ // console.log("=============",this.deliveryDetailId);
this.getSuperFieldList();
+ this.loadData();
+ },
+
+ watch:{
+ materPlanId:function (newData, oldData) {
+ //newData是更新后的数据
+ //oldData是旧数据
+ if(newData !== oldData){
+ this.loadData();
+ }
+ }
+
},
computed: {
importExcelUrl: function(){
@@ -336,14 +345,15 @@
this.ipagination.current = 1;
}
this.onClearSelected()
- this.queryParam.id = this.materPlanId;
+ this.queryParam.processUdgetPlanId = this.materPlanId;
var params = this.getQueryParams();//查询条件
this.loading = true;
console.log("=====>",params)
+ console.log(params)
getAction(this.url.list, params).then((res) => {
console.log(res,"//////////////////////////");
if (res.success) {
- this.dataSource = res.result;
+ this.dataSource = res.result.records;
this.ipagination.total = res.result.total;
}
if(res.code===510){
diff --git a/src/views/dashboard/HomePage.vue b/src/views/dashboard/HomePage.vue
index 60dbe48..ad0a865 100644
--- a/src/views/dashboard/HomePage.vue
+++ b/src/views/dashboard/HomePage.vue
@@ -37,6 +37,7 @@
>
+
@@ -74,10 +75,10 @@