mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-18 00:34:28 +08:00
migrate date range selection sheet / dialog to composition API and typescript
This commit is contained in:
@@ -585,7 +585,8 @@
|
||||
:min-time="filters.minDatetime"
|
||||
:max-time="filters.maxDatetime"
|
||||
v-model:show="showCustomDateRangeDialog"
|
||||
@dateRange:change="changeCustomDateFilter" />
|
||||
@dateRange:change="changeCustomDateFilter"
|
||||
@error="showError" />
|
||||
<batch-replace-dialog ref="batchReplaceDialog" />
|
||||
<confirm-dialog ref="confirmDialog"/>
|
||||
<snack-bar ref="snackbar" />
|
||||
@@ -1568,6 +1569,9 @@ export default {
|
||||
}
|
||||
});
|
||||
},
|
||||
showError(message) {
|
||||
this.$refs.snackbar.showError(message);
|
||||
},
|
||||
getAllUsedCategoryNames() {
|
||||
const categoryNames = {};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user