- 移除秒合约页面及UI - 合约页Tab改为Position Held/Transaction Record - 存款/提款/转账页增加BTC/ETH - 资产页重构(用户信息+盈亏+多语言) - 注册页改版(匹配新设计稿) - 日文全面翻译+首页菜单多语言 - 代理专属注册链接支持(?code=) - 10个locale文件同步更新
47 lines
967 B
Vue
47 lines
967 B
Vue
<template>
|
|
<view class="">
|
|
<!-- <myNav :title="titleName"></myNav> -->
|
|
<u-navbar :title="titleName" z-index="10100" back-icon-color="#FFFFFF" title-color="#fff" :background="{ background: '#080A17' }"
|
|
height="55" :border-bottom="false" :custom-back="goHome"></u-navbar>
|
|
<view class="">
|
|
<web-view :src="src"></web-view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
components: {
|
|
|
|
},
|
|
data() {
|
|
return {
|
|
src: '',
|
|
titleName: "",
|
|
}
|
|
},
|
|
computed: {
|
|
i18n() {
|
|
return this.$t('message');
|
|
},
|
|
},
|
|
onLoad(option) {
|
|
this.src = "/hybrid/html/h5.html?symbol=" + option.symbol + "&title=" + option.title + '&bb_type='+ option.bb_type + "&lang=" + uni.getStorageSync('Language') + '&h5_url='+ uni.getStorageSync('h5_url')
|
|
this.titleName = option.title
|
|
},
|
|
onShow() {
|
|
|
|
},
|
|
methods: {
|
|
goHome() {
|
|
uni.reLaunch({
|
|
url: '/pages/index/index'
|
|
});
|
|
}
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
</style>
|