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.
120 lines
3.1 KiB
120 lines
3.1 KiB
<template>
|
|
<view class="">
|
|
<navigation :showBack="true" :bgnum="true">
|
|
<text class="big_title">
|
|
Add to
|
|
</text>
|
|
</navigation>
|
|
<view class="main">
|
|
<view class="bot_con">
|
|
<view class="item flexx">
|
|
<view class="left flex">
|
|
<image src="../../../../static/tongyonh/bye.png" mode="aspectFit" class="img1"></image>
|
|
<view class="textcon">
|
|
<view class="text1">
|
|
Bitcoin
|
|
</view>
|
|
<view class="text2">
|
|
Bitcoin
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="rig">
|
|
<image src="../../../../static/tongyonh/chevron_right_24px.png" mode="aspectFit" class="rimg"></image>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="item flexx">
|
|
<view class="left flex">
|
|
<image src="../../../../static/tongyonh/Frame3299.png" mode="aspectFit" class="img1"></image>
|
|
<view class="textcon">
|
|
<view class="text1">
|
|
Ethereum
|
|
</view>
|
|
<view class="text2">
|
|
ETH
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="rig">
|
|
<image src="../../../../static/tongyonh/chevron_right_24px.png" mode="aspectFit" class="rimg"></image>
|
|
</view>
|
|
</view>
|
|
|
|
|
|
<view class="item flexx">
|
|
<view class="left flex">
|
|
<image src="../../../../static/tongyonh/tron1.png" mode="aspectFit" class="img1"></image>
|
|
<view class="textcon">
|
|
<view class="text1">
|
|
Tron
|
|
</view>
|
|
<view class="text2">
|
|
TRX
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="rig">
|
|
<image src="../../../../static/tongyonh/chevron_right_24px.png" mode="aspectFit" class="rimg"></image>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<u-mask :show="show" @click="show = false" z-index="10"></u-mask>
|
|
<view class="bottom_con">
|
|
<view class="tiao"></view>
|
|
<view class="title">
|
|
ETH
|
|
</view>
|
|
<view class="white">
|
|
<view class="item flexx">
|
|
<view class="rig flex">
|
|
<image src="../../../../static/tongyonh/profile1.png" mode="aspectFit" class="img"></image>
|
|
<text class="text">Create a wallet</text>
|
|
</view>
|
|
<image src="../../../../static/tongyonh/chevron_right_24px.png" mode="aspectFit" class="lef"></image>
|
|
</view>
|
|
<view class="item flexx">
|
|
<view class="rig flex">
|
|
<image src="../../../../static/tongyonh/Frame669.png" mode="aspectFit" class="img"></image>
|
|
<text class="text">Mnemonic import</text>
|
|
</view>
|
|
<image src="../../../../static/tongyonh/chevron_right_24px.png" mode="aspectFit" class="lef"></image>
|
|
</view>
|
|
<view class="item flexx">
|
|
<view class="rig flex">
|
|
<image src="../../../../static/tongyonh/Frame69.png" mode="aspectFit" class="img"></image>
|
|
<text class="text">Private key import</text>
|
|
</view>
|
|
<image src="../../../../static/tongyonh/chevron_right_24px.png" mode="aspectFit" class="lef"></image>
|
|
</view>
|
|
</view>
|
|
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import cont from "@/components/navigation/navigation.vue"
|
|
import tabBar from "@/components/tabBar/tabBar.vue"
|
|
export default {
|
|
data() {
|
|
return {
|
|
show: true
|
|
}
|
|
},
|
|
methods: {
|
|
}
|
|
};
|
|
</script>
|
|
<style scoped>
|
|
page{
|
|
background: #FAFAFA;
|
|
}
|
|
</style>
|
|
|
|
<style>
|
|
|
|
@import './index.css';
|
|
|
|
</style>
|
|
|