mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-17 16:24:25 +08:00
add keyword parameters to the URL when searching for transaction descriptions in the desktop transaction list
This commit is contained in:
@@ -473,6 +473,10 @@ export const useTransactionsStore = defineStore('transactions', {
|
||||
querys.push('minTime=' + this.transactionsFilter.minTime);
|
||||
}
|
||||
|
||||
if (this.transactionsFilter.keyword) {
|
||||
querys.push('keyword=' + encodeURIComponent(this.transactionsFilter.keyword));
|
||||
}
|
||||
|
||||
return querys.join('&');
|
||||
},
|
||||
loadTransactions({ reload, count, page, withCount, autoExpand, defaultCurrency }) {
|
||||
|
||||
Reference in New Issue
Block a user