bitcooo
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

102 lines
2.0 KiB

<template>
<view class="">
<navigation :showBack="true">
{{i18n.aboutus}}
</navigation>
<view class="main">
<view class="bot_con">
<view class="topcon">
<image src="../../../static/tongyonh/Group285.png" mode="aspectFit" class="img"></image>
<view class="bitcooo">
BitCooo
</view>
</view>
<view class="flex item">
<view class="text1">
{{i18n.Versionupdate}}
</view>
<view class="text2 gray">
{{version}}
</view>
</view>
<view class="flex item" @click="goWeb">
<view class="text1">
{{i18n.Officialwebsite}}
</view>
<view class="text2 gray">
https://www.bitcooo.com
</view>
</view>
<view class="flex item" @click="goTerms">
<view class="text1">
{{i18n.TermsofService}}
</view>
<view class="text2 gray">
<image src="../../../static/tongyonh/chevron_right_24px.png" mode="aspectFit" class="img1">
</image>
</view>
</view>
<!-- <view class="flex item" @click="goPrivacy">
<view class="text1">
{{i18n.PrivacyPolicy}}
</view>
<view class="text2 gray">
<image src="../../../static/tongyonh/chevron_right_24px.png" mode="aspectFit" class="img1">
</image>
</view>
</view> -->
</view>
</view>
</view>
</template>
<script>
import cont from "@/components/navigation/navigation.vue"
export default {
data() {
return {
version: '1.0.0'
};
},
computed: {
i18n() {
return this.$t('index')
},
},
onLoad() {
// #ifdef APP-PLUS
let that=this
plus.runtime.getProperty(plus.runtime.appid, (wgtinfo) => {
console.log(wgtinfo,123132)
that.version = wgtinfo.version;
})
// #endif
},
methods: {
goWeb(){
plus.runtime.openURL('https://www.bitcooo.com/');
},
goTerms() {
uni.navigateTo({
url: './terms/index'
})
},
goPrivacy() {
uni.navigateTo({
url: './Privacy/index'
})
}
}
};
</script>
<style scoped>
</style>
<style>
@import './index.css';
</style>