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.
93 lines
2.0 KiB
93 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> -->
|
|
<image src="../../../static/tongyonh/b_logo.png" mode="aspectFit" class="img"></image>
|
|
<image src="../../../static/tongyonh/textt.png" mode="aspectFit" class="img2"></image>
|
|
</view>
|
|
<view class="flex item">
|
|
<view class="text1">
|
|
{{i18n.Versionupdate}}
|
|
</view>
|
|
<view class="text2 gray">
|
|
{{version}}
|
|
</view>
|
|
</view>
|
|
<view class="flex item">
|
|
<view class="text1">
|
|
{{i18n.Officialwebsite}}
|
|
</view>
|
|
<view class="text2 gray">
|
|
https://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
|
|
this.version=plus.runtime.versionName;
|
|
// #endif
|
|
},
|
|
methods: {
|
|
goTerms() {
|
|
uni.navigateTo({
|
|
url: './terms/index'
|
|
})
|
|
},
|
|
goPrivacy() {
|
|
uni.navigateTo({
|
|
url: './Privacy/index'
|
|
})
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
<style scoped>
|
|
|
|
</style>
|
|
|
|
<style>
|
|
@import './index.css';
|
|
</style>
|
|
|