对账更新

This commit is contained in:
磷叶 2024-12-03 16:29:34 +08:00
parent 7abe723b31
commit 2c74b2f255

View File

@ -6,6 +6,9 @@
:end-date.sync="queryParams.dateEnd"
@change="getList"
/>
<el-select v-model="queryParams.channelId" @change="getList" placeholder="请选择渠道">
<el-option v-for="dict of dict.type.channel_type" :key="dict.value" :label="dict.label" :value="dict.value"/>
</el-select>
</el-row>
<daily-bill-amount-report :bill-data="billData" width="100%" height="250px"/>
</div>
@ -19,6 +22,7 @@ import DailyBillAmountReport from '@/views/dashboard/DailyBillAmountReport.vue'
export default {
name: 'DailyBillAmountChart',
dicts: ['channel_type'],
components: { DailyBillAmountReport, DateRangePicker },
data() {
return {
@ -26,6 +30,7 @@ export default {
queryParams: {
dateStart: getLastDateStr(6),
dateEnd: getLastDateStr(0),
channelId: null,
},
billData: []
}