对账更新

This commit is contained in:
磷叶 2024-12-03 11:13:41 +08:00
parent be030610b6
commit 7abe723b31

View File

@ -2,8 +2,8 @@
<div>
<el-row style="margin-bottom: 16px">
<date-range-picker
:start-date.sync="queryParams.payDateStart"
:end-date.sync="queryParams.payDateEnd"
:start-date.sync="queryParams.dateStart"
:end-date.sync="queryParams.dateEnd"
@change="getList"
/>
</el-row>
@ -16,7 +16,6 @@ import { getLastDateStr } from '@/utils'
import { getBillDailyAmount } from '@/api/system/dashboard'
import DateRangePicker from '@/components/DateRangePicker/index.vue'
import DailyBillAmountReport from '@/views/dashboard/DailyBillAmountReport.vue'
import { PayBillStatus } from '@/utils/constants'
export default {
name: 'DailyBillAmountChart',
@ -25,9 +24,8 @@ export default {
return {
//
queryParams: {
payDateStart: getLastDateStr(6),
payDateEnd: getLastDateStr(0),
statusList: PayBillStatus.payedList()
dateStart: getLastDateStr(6),
dateEnd: getLastDateStr(0),
},
billData: []
}