mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-16 16:07:33 +08:00
support importing transaction in frontend
This commit is contained in:
@@ -52,12 +52,12 @@ export default {
|
||||
this.showState = true;
|
||||
|
||||
if (isString(text)) {
|
||||
this.titleContent = this.$t(title);
|
||||
this.textContent = this.$t(text);
|
||||
this.titleContent = this.$t(title, options);
|
||||
this.textContent = this.$t(text, options);
|
||||
} else {
|
||||
this.titleContent = this.$t('global.app.title');
|
||||
this.textContent = this.$t(title);
|
||||
options = text;
|
||||
this.titleContent = this.$t('global.app.title');
|
||||
this.textContent = this.$t(title, options);
|
||||
}
|
||||
|
||||
if (options && options.color) {
|
||||
|
||||
Reference in New Issue
Block a user