- 移除秒合约页面及UI - 合约页Tab改为Position Held/Transaction Record - 存款/提款/转账页增加BTC/ETH - 资产页重构(用户信息+盈亏+多语言) - 注册页改版(匹配新设计稿) - 日文全面翻译+首页菜单多语言 - 代理专属注册链接支持(?code=) - 10个locale文件同步更新
23 lines
717 B
JavaScript
23 lines
717 B
JavaScript
export default {
|
|
onShow() {
|
|
// 强制使用浅色主题
|
|
this.theme = this.$store.state.lightTheme
|
|
|
|
// 设置tabBar样式为浅色主题
|
|
if (typeof uni.setTabBarStyle === 'function') {
|
|
uni.setTabBarStyle({
|
|
selectedColor: this.theme.selectedColor,
|
|
backgroundColor: this.theme.backgroundColor,
|
|
borderStyle: this.theme.borderStyle
|
|
})
|
|
}
|
|
|
|
// 设置状态栏样式
|
|
// #ifdef APP-PLUS
|
|
if (typeof plus !== 'undefined' && typeof plus.navigator === 'object') {
|
|
plus.navigator.setStatusBarStyle('dark')
|
|
}
|
|
// #endif
|
|
}
|
|
}
|