|
@@ -536,9 +536,9 @@ export default {
|
|
|
approvalByName: null,
|
|
|
approvalTime: null,
|
|
|
status: 1,
|
|
|
- createTimes: '',
|
|
|
- createTimeStart: '',
|
|
|
- createTimeEnd: ''
|
|
|
+ approvalTimes: '',
|
|
|
+ approvalTimeStart: '',
|
|
|
+ approvalTimeEnd: ''
|
|
|
},
|
|
|
// 表单参数
|
|
|
form: {},
|
|
@@ -554,16 +554,16 @@ export default {
|
|
|
/** 查询合作企业列表 */
|
|
|
getList() {
|
|
|
this.loading = true;
|
|
|
- if(this.queryParams.createTimes != null && this.queryParams.createTimes != ''){
|
|
|
- this.queryParams.createTimeStart = new Date(this.queryParams.createTimes[0]).toLocaleString();
|
|
|
- this.queryParams.createTimeEnd = new Date(this.queryParams.createTimes[1]).toLocaleString();
|
|
|
+ if(this.queryParams.approvalTimes != null && this.queryParams.approvalTimes != ''){
|
|
|
+ this.queryParams.approvalTimeStart = new Date(this.queryParams.approvalTimes[0]).toLocaleString();
|
|
|
+ this.queryParams.approvalTimeEnd = new Date(this.queryParams.approvalTimes[1]).toLocaleString();
|
|
|
}
|
|
|
listInfo(this.queryParams).then(response => {
|
|
|
this.infoList = response.rows;
|
|
|
this.total = response.total;
|
|
|
this.loading = false;
|
|
|
- this.queryParams.createTimeStart = '';
|
|
|
- this.queryParams.createTimeEnd = '';
|
|
|
+ this.queryParams.approvalTimeStart = '';
|
|
|
+ this.queryParams.approvalTimeEnd = '';
|
|
|
});
|
|
|
},
|
|
|
// 取消按钮
|
|
@@ -598,9 +598,9 @@ export default {
|
|
|
approvalByName: null,
|
|
|
approvalTime: null,
|
|
|
status: 1,
|
|
|
- createTimes: '',
|
|
|
- createTimeStart: '',
|
|
|
- createTimeEnd: ''
|
|
|
+ approvalTimes: '',
|
|
|
+ approvalTimeStart: '',
|
|
|
+ approvalTimeEnd: ''
|
|
|
};
|
|
|
this.resetForm("form");
|
|
|
this.alogForm = {
|