|
|
@ -4,7 +4,7 @@ |
|
|
|
<swiper class="swiper" :indicator-dots="indicatorDots" :autoplay="autoplay" :interval="interval"> |
|
|
|
<swiper-item> |
|
|
|
<view class="swiper-item"> |
|
|
|
<image src="../../static/tongyonh/phone_image.png" class="img1" mode="aspectFit"></image> |
|
|
|
<image src="../../static/tongyonh/Illustration.png" class="img1" mode="aspectFit"></image> |
|
|
|
<view class="text_con"> |
|
|
|
<view class="text1"> |
|
|
|
{{i18n.Decentralised}} |
|
|
@ -18,13 +18,27 @@ |
|
|
|
</swiper-item> |
|
|
|
<swiper-item> |
|
|
|
<view class="swiper-item"> |
|
|
|
<image src="../../static/tongyonh/phone_image.png" class="img1" mode="aspectFit"></image> |
|
|
|
<image src="../../static/tongyonh/Frame.png" class="img1" mode="aspectFit"></image> |
|
|
|
<view class="text_con"> |
|
|
|
<view class="text1"> |
|
|
|
{{i18n.Decentralised}} |
|
|
|
{{i18n.EasyDecentralised}} |
|
|
|
</view> |
|
|
|
<view class="text2"> |
|
|
|
{{i18n.Localstorage}} |
|
|
|
{{i18n.EasyLocalstorage}} |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
|
|
|
|
</view> |
|
|
|
</swiper-item> |
|
|
|
<swiper-item> |
|
|
|
<view class="swiper-item"> |
|
|
|
<image src="../../static/tongyonh/Nftimg.png" class="img1" mode="aspectFit"></image> |
|
|
|
<view class="text_con"> |
|
|
|
<view class="text1"> |
|
|
|
{{i18n.NftDecentralised}} |
|
|
|
</view> |
|
|
|
<view class="text2"> |
|
|
|
{{i18n.NftLocalstorage}} |
|
|
|
</view> |
|
|
|
</view> |
|
|
|
|
|
|
@ -78,13 +92,14 @@ |
|
|
|
|
|
|
|
</view> |
|
|
|
|
|
|
|
<view class="lans" @click="show = true"> |
|
|
|
<view class="lans" @click="show = true"> |
|
|
|
{{i18n.lans}} |
|
|
|
</view> |
|
|
|
<view class="select"> |
|
|
|
<u-checkbox-group @change="checkboxGroupChange"> |
|
|
|
<u-checkbox @change="checkboxChange" v-for="(item, index) in list2" :key="index" |
|
|
|
v-model="item.checked" :name="item.name" active-color="#5B53FF"> <text class="name">{{i18n.AgreementConfirmation}} |
|
|
|
v-model="item.checked" :name="item.name" active-color="#5B53FF"> <text |
|
|
|
class="name">{{i18n.AgreementConfirmation}} |
|
|
|
<text class="active" @click.stop="Terms">{{i18n.TermsofService}}</text> |
|
|
|
</text> </u-checkbox> |
|
|
|
</u-checkbox-group> |
|
|
@ -92,7 +107,7 @@ |
|
|
|
|
|
|
|
</view> |
|
|
|
|
|
|
|
<u-select :confirm-text="cnt" :cancel-text="can" v-model="show" :list="list3" @confirm="confirm"></u-select> |
|
|
|
<u-select :confirm-text="cnt" :cancel-text="can" v-model="show" :list="list3" @confirm="confirm"></u-select> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -110,8 +125,8 @@ |
|
|
|
data() { |
|
|
|
return { |
|
|
|
language: this.$store.state.language == 'en' ? 'English' : '简体中文', |
|
|
|
cnt:this.$t('index').Confirm, |
|
|
|
can:this.$t('index').Cancel, |
|
|
|
cnt: this.$t('index').Confirm, |
|
|
|
can: this.$t('index').Cancel, |
|
|
|
show: false, |
|
|
|
list3: [{ |
|
|
|
label: this.$t('index').langfan, |
|
|
@ -161,8 +176,8 @@ |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
|
|
|
|
confirm(e){ |
|
|
|
uni.setStorageSync('lang',e[0].value) |
|
|
|
confirm(e) { |
|
|
|
uni.setStorageSync('lang', e[0].value) |
|
|
|
|
|
|
|
if (e[0].value == 'c') { |
|
|
|
this._i18n.locale = 'en' |
|
|
@ -174,7 +189,7 @@ |
|
|
|
this.$store.commit('setLanguage', 'zh-CN') |
|
|
|
uni.setStorageSync("language", 'zh-CN') |
|
|
|
uni.setStorageSync('langTrue', '简体中文') |
|
|
|
} else if (e[0].value == 'b'){ |
|
|
|
} else if (e[0].value == 'b') { |
|
|
|
this._i18n.locale = 'zh-CNF' |
|
|
|
this.$store.commit('setLanguage', 'zh-CNF') |
|
|
|
uni.setStorageSync("language", 'zh-CNF') |
|
|
|