support importing transaction in frontend

This commit is contained in:
MaysWind
2024-09-09 01:31:43 +08:00
parent 3d5a03a629
commit 470a74f420
32 changed files with 1772 additions and 197 deletions
+4 -4
View File
@@ -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) {