|
@@ -129,8 +129,8 @@ export default {
|
|
|
queryParam: {
|
|
|
settleClientNameCurrent: '', // 客户名称
|
|
|
settleClientType: undefined, // 单位类型
|
|
|
- auditBeginDate: '', // 开始审核时间
|
|
|
- auditEndDate: '' // 结束审核时间
|
|
|
+ beginDate: '', // 开始审核时间
|
|
|
+ endDate: '' // 结束审核时间
|
|
|
},
|
|
|
// 表头
|
|
|
columns: [
|
|
@@ -199,8 +199,8 @@ export default {
|
|
|
// 选择审核时间
|
|
|
auditDateChange (date) {
|
|
|
this.auditTime = date
|
|
|
- this.queryParam.auditBeginDate = date[0]
|
|
|
- this.queryParam.auditEndDate = date[1]
|
|
|
+ this.queryParam.beginDate = date[0]
|
|
|
+ this.queryParam.endDate = date[1]
|
|
|
},
|
|
|
// 详情
|
|
|
handleDetail (row) {
|
|
@@ -233,8 +233,8 @@ export default {
|
|
|
this.queryParam.settleClientNameCurrent = ''
|
|
|
this.queryParam.settleClientType = undefined
|
|
|
this.$refs.rangeDate.resetDate(this.auditTime)
|
|
|
- this.queryParam.auditBeginDate = getDate.getMonthDays(3).starttime
|
|
|
- this.queryParam.auditEndDate = getDate.getMonthDays(3).endtime
|
|
|
+ this.queryParam.beginDate = getDate.getMonthDays(3).starttime
|
|
|
+ this.queryParam.endDate = getDate.getMonthDays(3).endtime
|
|
|
this.$refs.table.refresh(true)
|
|
|
},
|
|
|
// 页面初始化
|