Commit 1bcc3b36 authored by chenzj's avatar chenzj

领料单界面新增申请单号筛选

parent 41e6a5d6
......@@ -9,6 +9,14 @@
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="申请单号" prop="applyNo">
<el-input
v-model="queryParams.applyNo"
placeholder="请输入领料单编号"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="创建时间">
<el-date-picker
v-model="daterangePurchaseDate"
......@@ -258,6 +266,7 @@ export default {
areaName: null,
issueDate: null,
status: 'PREPARE',
applyNo: null,
},
// 表单参数
form: {},
......@@ -359,7 +368,8 @@ export default {
createBy: null,
createTime: null,
updateBy: null,
updateTime: null
updateTime: null,
applyNo: null,
};
this.autoGenFlag = false;
this.resetForm("form");
......
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