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.
 
 
 
 

82 lines
1.6 KiB

<template>
<view class="">
<navigation :showBack="true">
About us
</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/textt.png" mode="aspectFit" class="img2"></image>
</view>
<view class="flex item">
<view class="text1">
Version update
</view>
<view class="text2 gray">
v2.2.9
</view>
</view>
<view class="flex item">
<view class="text1">
Official website
</view>
<view class="text2 gray">
https://bitcooo.com
</view>
</view>
<view class="flex item" @click="goTerms">
<view class="text1">
Terms of Service
</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">
Privacy Policy
</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 {
};
},
methods: {
goTerms(){
uni.navigateTo({
url:'./terms/index'
})
},
goPrivacy(){
uni.navigateTo({
url:'./Privacy/index'
})
}
}
};
</script>
<style scoped>
</style>
<style>
@import './index.css';
</style>