|
|
|
@ -4,27 +4,26 @@
|
|
|
|
|
<div class="table-page-search-wrapper"> |
|
|
|
|
<a-form layout="inline" @keyup.enter.native="searchQuery"> |
|
|
|
|
<a-row :gutter="24"> |
|
|
|
|
<a-col :xl="4" :lg="7" :md="8" :sm="16"> |
|
|
|
|
<a-col :xl="5" :lg="7" :md="8" :sm="24"> |
|
|
|
|
<a-form-item label="供应商"> |
|
|
|
|
<a-input placeholder="请输入供应商信息" v-model="queryParam.supplierId"></a-input> |
|
|
|
|
</a-form-item> |
|
|
|
|
</a-col> |
|
|
|
|
<a-col :xl="4" :lg="7" :md="8" :sm="16"> |
|
|
|
|
<a-col :xl="5" :lg="7" :md="8" :sm="24"> |
|
|
|
|
<a-form-item label="物料组"> |
|
|
|
|
<a-input placeholder="请输入物料组" v-model="queryParam.materialGroup"/> |
|
|
|
|
<a-input placeholder="请输入物料组" v-model="queryParam.materialClassify"/> |
|
|
|
|
</a-form-item> |
|
|
|
|
</a-col> |
|
|
|
|
<a-col :xl="4" :lg="7" :md="8" :sm="16" hidden="hidden" > |
|
|
|
|
<a-form-item label="物料号"> |
|
|
|
|
<a-input placeholder="请输入物料" v-model="queryParam.materialNumber" disabled="disabled"/> |
|
|
|
|
</a-form-item> |
|
|
|
|
</a-col> |
|
|
|
|
<a-col :xl="4" :lg="7" :md="8" :sm="16"> |
|
|
|
|
<a-col :xl="5" :lg="7" :md="8" :sm="24"> |
|
|
|
|
<a-form-item label="物料名称"> |
|
|
|
|
<a-input placeholder="请输入物料名称" v-model="queryParam.materialName"/> |
|
|
|
|
</a-form-item> |
|
|
|
|
</a-col> |
|
|
|
|
|
|
|
|
|
<a-col :xl="8" :lg="7" :md="8" :sm="24"> |
|
|
|
|
<a-button type="primary" icon="download" @click="handleExportXls('物资采购记录')">导出</a-button> |
|
|
|
|
<a-button type="primary" @click="searchQuery" icon="search" style="margin-left: 8px">查询</a-button> |
|
|
|
|
<a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button> |
|
|
|
|
</a-col> |
|
|
|
|
<!-- <a-col :xl="4" :lg="7" :md="8" :sm="16">--> |
|
|
|
|
<!-- <a-form-item label="出库人">--> |
|
|
|
|
<!-- <a-input placeholder="请选择出库人" v-model="queryParam.librarySign"/>--> |
|
|
|
@ -48,17 +47,14 @@
|
|
|
|
|
<!-- 查询区域-END --> |
|
|
|
|
|
|
|
|
|
<!-- 操作按钮区域 --> |
|
|
|
|
<div class="table-operator" style="float: left;"> |
|
|
|
|
<!-- <a-button @click="handleAdd" type="primary" icon="plus">新增</a-button>--> |
|
|
|
|
<a-button type="primary" icon="download" @click="handleExportXls('物资出库流程')">导出</a-button> |
|
|
|
|
<a-button type="primary" @click="searchQuery" icon="search">查询</a-button> |
|
|
|
|
<a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button> |
|
|
|
|
<!-- <a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">--> |
|
|
|
|
<!-- <a-button type="primary" icon="import">导入</a-button>--> |
|
|
|
|
<!-- </a-upload>--> |
|
|
|
|
<!-- <!– 高级查询区域 –>--> |
|
|
|
|
<!-- <j-super-query :fieldList="superFieldList" ref="superQueryModal" @handleSuperQuery="handleSuperQuery"></j-super-query>--> |
|
|
|
|
</div> |
|
|
|
|
<!-- <div class="table-operator" style="float: left;">--> |
|
|
|
|
|
|
|
|
|
<!-- <!– <a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">–>--> |
|
|
|
|
<!-- <!– <a-button type="primary" icon="import">导入</a-button>–>--> |
|
|
|
|
<!-- <!– </a-upload>–>--> |
|
|
|
|
<!-- <!– <!– 高级查询区域 –>–>--> |
|
|
|
|
<!-- <!– <j-super-query :fieldList="superFieldList" ref="superQueryModal" @handleSuperQuery="handleSuperQuery"></j-super-query>–>--> |
|
|
|
|
<!-- </div>--> |
|
|
|
|
|
|
|
|
|
<!-- table区域-begin --> |
|
|
|
|
<div> |
|
|
|
@ -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){ |
|
|
|
|