Commit 7771226a authored by chenzj's avatar chenzj

调拨料界面调整

parent 0e7876be
...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
<div class="app-container"> <div class="app-container">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch"
label-width="100px"> label-width="100px">
<el-form-item label="申请单号" prop="allocationMaterialCode"> <el-form-item label="申请单号" prop="applyNo">
<el-input v-model="queryParams.allocationMaterialCode" placeholder="请输入申请单号" clearable <el-input v-model="queryParams.applyNo" placeholder="请输入申请单号" clearable
@keyup.enter.native="handleQuery" /> @keyup.enter.native="handleQuery" />
</el-form-item> </el-form-item>
<el-form-item label="产品编码" prop="sapItemCode"> <el-form-item label="产品编码" prop="sapItemCode">
...@@ -27,6 +27,7 @@ ...@@ -27,6 +27,7 @@
placeholder="请选择需求日期"> placeholder="请选择需求日期">
</el-date-picker> </el-date-picker>
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button> <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
...@@ -56,7 +57,7 @@ ...@@ -56,7 +57,7 @@
<el-table v-loading="loading" :data="ProAllocationMaterialList" @selection-change="handleSelectionChange"> <el-table v-loading="loading" :data="ProAllocationMaterialList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" /> <el-table-column type="selection" width="55" align="center" />
<el-table-column label="申请单号" align="center" prop="allocationMaterialCode" /> <el-table-column label="申请单号" align="center" prop="applyNo" />
<el-table-column label="产品编码" align="center" prop="sapItemCode" /> <el-table-column label="产品编码" align="center" prop="sapItemCode" />
<el-table-column label="产品名称" align="center" prop="itemName" /> <el-table-column label="产品名称" align="center" prop="itemName" />
<el-table-column label="工作中心编码" align="center" prop="workstationCode" /> <el-table-column label="工作中心编码" align="center" prop="workstationCode" />
...@@ -96,8 +97,8 @@ ...@@ -96,8 +97,8 @@
<el-form ref="form" :model="form" :rules="rules" label-width="100px"> <el-form ref="form" :model="form" :rules="rules" label-width="100px">
<el-row> <el-row>
<el-col span="12"> <el-col span="12">
<el-form-item label="申请单号" prop="allocationMaterialCode"> <el-form-item label="申请单号" prop="applyNo">
<el-input disabled v-model="form.allocationMaterialCode" placeholder="自动生成" /> <el-input disabled v-model="form.applyNo" placeholder="自动生成" />
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col span="12"> <el-col span="12">
...@@ -200,7 +201,7 @@ export default { ...@@ -200,7 +201,7 @@ export default {
queryParams: { queryParams: {
pageNum: 1, pageNum: 1,
pageSize: 10, pageSize: 10,
allocationMaterialCode: null, applyNo: null,
sapItemCode: null, sapItemCode: null,
itemName: null, itemName: null,
workstationId: null, workstationId: null,
...@@ -282,7 +283,7 @@ export default { ...@@ -282,7 +283,7 @@ export default {
reset() { reset() {
this.form = { this.form = {
allocationMaterialId: null, allocationMaterialId: null,
allocationMaterialCode: null, applyNo: null,
sapItemCode: null, sapItemCode: null,
itemName: null, itemName: null,
workstationId: null, workstationId: null,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment