|
@@ -51,7 +51,7 @@
|
|
></el-input>
|
|
></el-input>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-col>
|
|
- <el-col :xs="24" :sm="12" :lg="6">
|
|
|
|
|
|
+ <!-- <el-col :xs="24" :sm="12" :lg="6">
|
|
<el-form-item label="发货申请开始日期" prop="startDeliverTime">
|
|
<el-form-item label="发货申请开始日期" prop="startDeliverTime">
|
|
<el-date-picker
|
|
<el-date-picker
|
|
class="dateStyle"
|
|
class="dateStyle"
|
|
@@ -76,7 +76,7 @@
|
|
>
|
|
>
|
|
</el-date-picker>
|
|
</el-date-picker>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
- </el-col>
|
|
|
|
|
|
+ </el-col> -->
|
|
<!-- <el-col :xs="24" :sm="12" :lg="6">
|
|
<!-- <el-col :xs="24" :sm="12" :lg="6">
|
|
<el-form-item label="产品名称" prop="">
|
|
<el-form-item label="产品名称" prop="">
|
|
<el-input placeholder="请输入"></el-input>
|
|
<el-input placeholder="请输入"></el-input>
|
|
@@ -88,7 +88,7 @@
|
|
</el-form-item>
|
|
</el-form-item>
|
|
</el-col> -->
|
|
</el-col> -->
|
|
|
|
|
|
- <el-col :xs="24" :sm="24" :lg="18">
|
|
|
|
|
|
+ <el-col :xs="24" :sm="24" :lg="6">
|
|
<el-form-item label="" class="fr">
|
|
<el-form-item label="" class="fr">
|
|
<el-button size="small" @click="resetFn">清空</el-button>
|
|
<el-button size="small" @click="resetFn">清空</el-button>
|
|
<el-button size="small" type="primary" @click="searchFn"
|
|
<el-button size="small" type="primary" @click="searchFn"
|
|
@@ -208,6 +208,8 @@
|
|
<!-- 分页 -->
|
|
<!-- 分页 -->
|
|
<div class="fr">
|
|
<div class="fr">
|
|
<el-pagination
|
|
<el-pagination
|
|
|
|
+ @size-change="handleSizeChange"
|
|
|
|
+ @current-change="handleCurrentChange"
|
|
:current-page="currentPage"
|
|
:current-page="currentPage"
|
|
:page-sizes="[10, 20, 30, 50]"
|
|
:page-sizes="[10, 20, 30, 50]"
|
|
:page-size="10"
|
|
:page-size="10"
|
|
@@ -243,8 +245,8 @@ export default {
|
|
refEnginRecordNo: "",
|
|
refEnginRecordNo: "",
|
|
customerKeyword: "",
|
|
customerKeyword: "",
|
|
refProjectName: "",
|
|
refProjectName: "",
|
|
- startDeliverTime: "",
|
|
|
|
- endDeliverTime: "",
|
|
|
|
|
|
+ // startDeliverTime: "",
|
|
|
|
+ // endDeliverTime: "",
|
|
}, //搜索表单
|
|
}, //搜索表单
|
|
listLoading: false, // 列表加载loading
|
|
listLoading: false, // 列表加载loading
|
|
examine: "",
|
|
examine: "",
|
|
@@ -260,17 +262,56 @@ export default {
|
|
confirmName: "",
|
|
confirmName: "",
|
|
createName: "",
|
|
createName: "",
|
|
customerKeyword: "",
|
|
customerKeyword: "",
|
|
- endDeliverTime: "",
|
|
|
|
|
|
+ // endDeliverTime: "",
|
|
enginOrderNo: "",
|
|
enginOrderNo: "",
|
|
enginOrderType: "",
|
|
enginOrderType: "",
|
|
examineStatus: "",
|
|
examineStatus: "",
|
|
refEnginRecordNo: "",
|
|
refEnginRecordNo: "",
|
|
refProjectName: "",
|
|
refProjectName: "",
|
|
refUseUnit: "",
|
|
refUseUnit: "",
|
|
- startDeliverTime: "",
|
|
|
|
|
|
+ // startDeliverTime: "",
|
|
});
|
|
});
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
|
|
+ // 更改每页数量
|
|
|
|
+ handleSizeChange(val) {
|
|
|
|
+ this.pageSize = val;
|
|
|
|
+ this.currentPage = 1;
|
|
|
|
+ this.getDataList({
|
|
|
|
+ pageSize: this.pageSize,
|
|
|
|
+ pageNum: this.currentPage,
|
|
|
|
+ confirmName: "",
|
|
|
|
+ createName: "",
|
|
|
|
+ customerKeyword: "",
|
|
|
|
+ // endDeliverTime: "",
|
|
|
|
+ enginOrderNo: "",
|
|
|
|
+ enginOrderType: "",
|
|
|
|
+ examineStatus: this.examine,
|
|
|
|
+ refEnginRecordNo: "",
|
|
|
|
+ refProjectName: "",
|
|
|
|
+ refUseUnit: "",
|
|
|
|
+ // startDeliverTime: "",
|
|
|
|
+ });
|
|
|
|
+ },
|
|
|
|
+ // 更改当前页
|
|
|
|
+ handleCurrentChange(val) {
|
|
|
|
+ this.currentPage = val;
|
|
|
|
+ this.getDataList({
|
|
|
|
+ pageSize: this.pageSize,
|
|
|
|
+ pageNum: this.currentPage,
|
|
|
|
+ confirmName: "",
|
|
|
|
+ createName: "",
|
|
|
|
+ customerKeyword: "",
|
|
|
|
+ // endDeliverTime: "",
|
|
|
|
+ enginOrderNo: "",
|
|
|
|
+ enginOrderType: "",
|
|
|
|
+ examineStatus: this.examine,
|
|
|
|
+ refEnginRecordNo: "",
|
|
|
|
+ refProjectName: "",
|
|
|
|
+ refUseUnit: "",
|
|
|
|
+ // startDeliverTime: "",
|
|
|
|
+ });
|
|
|
|
+ },
|
|
//切换radio
|
|
//切换radio
|
|
changeRadioFn(v) {
|
|
changeRadioFn(v) {
|
|
this.examine = v;
|
|
this.examine = v;
|
|
@@ -280,14 +321,14 @@ export default {
|
|
confirmName: "",
|
|
confirmName: "",
|
|
createName: "",
|
|
createName: "",
|
|
customerKeyword: "",
|
|
customerKeyword: "",
|
|
- endDeliverTime: "",
|
|
|
|
|
|
+ // endDeliverTime: "",
|
|
enginOrderNo: "",
|
|
enginOrderNo: "",
|
|
enginOrderType: "",
|
|
enginOrderType: "",
|
|
examineStatus: this.examine,
|
|
examineStatus: this.examine,
|
|
refEnginRecordNo: "",
|
|
refEnginRecordNo: "",
|
|
refProjectName: "",
|
|
refProjectName: "",
|
|
refUseUnit: "",
|
|
refUseUnit: "",
|
|
- startDeliverTime: "",
|
|
|
|
|
|
+ // startDeliverTime: "",
|
|
});
|
|
});
|
|
},
|
|
},
|
|
//导出
|
|
//导出
|