对账更新

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

View File

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