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.
107 lines
2.7 KiB
107 lines
2.7 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">
|
|
<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">
|
|
<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">
|
|
<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">
|
|
<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">
|
|
<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">
|
|
<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: {
|
|
|
|
},
|
|
onLoad() {
|
|
|
|
}
|
|
};
|
|
</script>
|
|
<style scoped>
|
|
page{
|
|
background-color: #FAFAFA;
|
|
}
|
|
</style>
|
|
|
|
<style>
|
|
@import './index.css';
|
|
</style>
|
|
|