Commit c996b867 authored by 李驰骋's avatar 李驰骋

排程日志重置查询条件BUG修复

生产版本规格说明书添加厚度mm字段
parent 53ff7fa0
......@@ -123,6 +123,15 @@
</el-input>
</el-form-item>
</el-col>
<el-col :lg="6" :md="8" :sm="12" :xs="12">
<el-form-item label="厚度mm" prop="thick">
<el-input
v-model="form.thick"
placeholder
type="number"
:precision="2" />
</el-form-item>
</el-col>
<el-col :lg="6" :md="8" :sm="12" :xs="12"
><el-form-item label="印张长度" prop="printingPaperlenth"
><el-input
......@@ -698,6 +707,7 @@ export default {
layerNum: "",
width: "",
height: "",
thick:"",
printingPaperlenth: "",
printPaperwidth: "",
sendworkMultiple: "",
......@@ -720,7 +730,6 @@ export default {
backImg: "",
blownFilmWidth: "",
blownFilmThickness: "",
printPaperwidth: "",
inlay: "",
customerConfirmedBy: "",
customerConfirmedDate: "",
......@@ -797,6 +806,7 @@ export default {
layerNum: "",
width: "",
height: "",
thick: "",
printingPaperlenth: "",
printPaperwidth: "",
sendworkMultiple: "",
......@@ -819,7 +829,6 @@ export default {
backImg: "",
blownFilmWidth: "",
blownFilmThickness: "",
printPaperwidth: "",
inlay: "",
customerConfirmedBy: "",
customerConfirmedDate: "",
......
......@@ -148,11 +148,16 @@ export default {
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.queryParams = {
pageNum: 1,
pageSize: 10,
orderByColumn:'createTime',
isAsc:'desc'
}
this.resetForm("queryForm");
this.handleQuery();
},
......
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