feat: 前端全量更新 - 含所有本次需求

- 移除秒合约页面及UI
- 合约页Tab改为Position Held/Transaction Record
- 存款/提款/转账页增加BTC/ETH
- 资产页重构(用户信息+盈亏+多语言)
- 注册页改版(匹配新设计稿)
- 日文全面翻译+首页菜单多语言
- 代理专属注册链接支持(?code=)
- 10个locale文件同步更新
This commit is contained in:
li
2026-03-30 20:14:20 +08:00
commit 5f40e4e1b5
605 changed files with 154871 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
let toast = (text,callback,duration=2000,icon='none', position='bottom', image = '',mask=true) =>{
uni.showToast({
title: text,
icon: icon,
duration:duration,
mask: mask,
image: image,
position: position,
success() {
callback&&callback()
}
})
}
export default toast