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.
140 lines
3.4 KiB
140 lines
3.4 KiB
<template>
|
|
<view class="">
|
|
<navigation :showBack="true" :bgnum="true">
|
|
<text class="big_title">
|
|
Profile
|
|
</text>
|
|
</navigation>
|
|
<view class="main">
|
|
<view class="main_con">
|
|
<view class="title">
|
|
App settings
|
|
</view>
|
|
<view class="item flex" @click="goMan()">
|
|
<view class="itemImg flex">
|
|
<image src="../../../static/tongyonh/profile1.png" class="img1" mode="aspectFit"></image>
|
|
<text class="text1">Manage Wallet</text>
|
|
</view>
|
|
<image src="../../../static/tongyonh/chevron_right_24px.png" class="img2" mode="aspectFit"></image>
|
|
</view>
|
|
<view class="item flex" @click="goAddress()">
|
|
<view class="itemImg flex">
|
|
<image src="../../../static/tongyonh/circle.png" class="img1" mode="aspectFit"></image>
|
|
<text class="text1">Address Book</text>
|
|
</view>
|
|
<image src="../../../static/tongyonh/chevron_right_24px.png" class="img2" mode="aspectFit"></image>
|
|
</view>
|
|
<view class="item flex" @click="goSettings()">
|
|
<view class="itemImg flex">
|
|
<image src="../../../static/tongyonh/Frame68p.png" class="img1" mode="aspectFit"></image>
|
|
<text class="text1">Settings</text>
|
|
</view>
|
|
<image src="../../../static/tongyonh/chevron_right_24px.png" class="img2" mode="aspectFit"></image>
|
|
</view>
|
|
<view class="item flex" @click="goHelp()">
|
|
<view class="itemImg flex">
|
|
<image src="../../../static/tongyonh/Frame70.png" class="img1" mode="aspectFit"></image>
|
|
<text class="text1">Help Center</text>
|
|
</view>
|
|
<image src="../../../static/tongyonh/chevron_right_24px.png" class="img2" mode="aspectFit"></image>
|
|
</view>
|
|
<view class="item flex" @click="goAbout()">
|
|
<view class="itemImg flex">
|
|
<image src="../../../static/tongyonh/Frame71.png" class="img1" mode="aspectFit"></image>
|
|
<text class="text1">About Us</text>
|
|
</view>
|
|
<image src="../../../static/tongyonh/chevron_right_24px.png" class="img2" mode="aspectFit"></image>
|
|
</view>
|
|
</view>
|
|
|
|
|
|
<view class="main_con">
|
|
<view class="title">
|
|
Hardware
|
|
</view>
|
|
<view class="item flex" @click="goMatching()">
|
|
<view class="itemImg flex">
|
|
<image src="../../../static/tongyonh/Frame72.png" class="img1" mode="aspectFit"></image>
|
|
<text class="text1">Matching hardware</text>
|
|
</view>
|
|
<image src="../../../static/tongyonh/chevron_right_24px.png" class="img2" mode="aspectFit"></image>
|
|
</view>
|
|
|
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<tab-bar :selectActive="5"></tab-bar>
|
|
</view>
|
|
|
|
|
|
|
|
|
|
</template>
|
|
|
|
<script>
|
|
import cont from "@/components/navigation/navigation.vue"
|
|
import tabBar from "@/components/tabBar/tabBar.vue"
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
|
|
|
|
methods: {
|
|
goMatching(){
|
|
uni.showToast({
|
|
title: 'Not yet open',
|
|
icon: 'none',
|
|
duration: 1500
|
|
})
|
|
},
|
|
goAbout(){
|
|
uni.navigateTo({
|
|
url:'/pages/menu/about/index'
|
|
})
|
|
},
|
|
goHelp(){
|
|
uni.showToast({
|
|
title: 'Not yet open',
|
|
icon: 'none',
|
|
duration: 1500
|
|
})
|
|
},
|
|
goSettings(){
|
|
uni.navigateTo({
|
|
url:'/pages/menu/setting/index'
|
|
})
|
|
},
|
|
goMan(){
|
|
uni.navigateTo({
|
|
url:'/pages/menu/wallet/mwallet/index'
|
|
})
|
|
},
|
|
goAddress(){
|
|
uni.navigateTo({
|
|
url:'/pages/menu/sendToken/address/index'
|
|
})
|
|
},
|
|
},
|
|
onLoad() {
|
|
|
|
}
|
|
};
|
|
</script>
|
|
<style scoped>
|
|
page{
|
|
background-color: #FAFAFA;
|
|
}
|
|
</style>
|
|
|
|
<style>
|
|
@import './index.css';
|
|
</style>
|
|
|