|
@@ -193,8 +193,8 @@ export default {
|
|
|
financialStatus: undefined, // 财务状态
|
|
|
beginDate: undefined,
|
|
|
endDate: undefined,
|
|
|
- auditBeginDate: undefined,
|
|
|
- auditEndDate: undefined
|
|
|
+ beginAuditDate: undefined,
|
|
|
+ endAuditDate: undefined
|
|
|
},
|
|
|
countData: null, // 统计数据
|
|
|
// 表头
|
|
@@ -231,11 +231,11 @@ export default {
|
|
|
}
|
|
|
// 审核时间
|
|
|
if (this.examineTime && this.examineTime.length > 0) {
|
|
|
- this.queryParam.auditBeginDate = moment(this.examineTime[0]).format(this.dateFormat)
|
|
|
- this.queryParam.auditEndDate = moment(this.examineTime[1]).format(this.dateFormat)
|
|
|
+ this.queryParam.beginAuditDate = moment(this.examineTime[0]).format(this.dateFormat)
|
|
|
+ this.queryParam.endAuditDate = moment(this.examineTime[1]).format(this.dateFormat)
|
|
|
} else {
|
|
|
- this.queryParam.auditBeginDate = undefined
|
|
|
- this.queryParam.auditEndDate = undefined
|
|
|
+ this.queryParam.beginAuditDate = undefined
|
|
|
+ this.queryParam.endAuditDate = undefined
|
|
|
}
|
|
|
// 查询总计
|
|
|
this.getQueryCount(Object.assign(parameter, this.queryParam))
|
|
@@ -335,8 +335,8 @@ export default {
|
|
|
this.queryParam.financialStatus = undefined
|
|
|
this.queryParam.beginDate = undefined
|
|
|
this.endDate = undefined
|
|
|
- this.auditBeginDate = undefined
|
|
|
- this.auditEndDate = undefined
|
|
|
+ this.beginAuditDate = undefined
|
|
|
+ this.endAuditDate = undefined
|
|
|
this.createDate = []
|
|
|
this.examineTime = []
|
|
|
this.$refs.table.refresh(true)
|