feat: 更新环境配置,修改 API 地址,添加格式化金额功能,优化 RWA 交易视图

This commit is contained in:
2025-12-19 18:01:21 +07:00
parent 72775b4b37
commit 0bccd85744
11 changed files with 215 additions and 36 deletions

3
auto-imports.d.ts vendored
View File

@@ -38,6 +38,8 @@ declare global {
const effectScope: typeof import('vue').effectScope
const emailPattern: typeof import('./src/utils/pattern').emailPattern
const extendRef: typeof import('@vueuse/core').extendRef
const formatAmount: typeof import('./src/utils/helper').formatAmount
const formatAmountWithUnit: typeof import('./src/utils/helper').formatAmountWithUnit
const formatBalance: typeof import('./src/utils/helper').formatBalance
const getActivePinia: typeof import('pinia').getActivePinia
const getCurrentInstance: typeof import('vue').getCurrentInstance
@@ -378,6 +380,7 @@ declare module 'vue' {
readonly effectScope: UnwrapRef<typeof import('vue')['effectScope']>
readonly emailPattern: UnwrapRef<typeof import('./src/utils/pattern')['emailPattern']>
readonly extendRef: UnwrapRef<typeof import('@vueuse/core')['extendRef']>
readonly formatAmount: UnwrapRef<typeof import('./src/utils/helper')['formatAmount']>
readonly formatBalance: UnwrapRef<typeof import('./src/utils/helper')['formatBalance']>
readonly getActivePinia: UnwrapRef<typeof import('pinia')['getActivePinia']>
readonly getCurrentInstance: UnwrapRef<typeof import('vue')['getCurrentInstance']>