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.
125 lines
2.7 KiB
125 lines
2.7 KiB
<template>
|
|
<view class="hr">
|
|
<navigation :showBack="true" :bgnum="true">
|
|
<image src="../../../../static/tongyonh/IconGroup.png" mode="aspectFit" class="renYou" slot="logo"></image>
|
|
<text class="big_title">
|
|
Address
|
|
</text>
|
|
</navigation>
|
|
<view class="main">
|
|
<view class="item flex">
|
|
<view class="textcon flex">
|
|
<view class="bigcon">
|
|
<view class="textimg flexx">
|
|
<image src="../../../../static/tongyonh/bye.png" mode="aspectFit" class="img"></image>
|
|
<text class="textt">BTC</text>
|
|
<text class="textt2">Chisu</text>
|
|
</view>
|
|
<view class="text1">
|
|
TAADz1cFXLB2fWikE1sRi9znpmFFaMgaad
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="btncon">
|
|
<image src="../../../../static/tongyonh/more_vert_24px_outlined.svg" mode="aspectFit" class="img2" @click="show = true">
|
|
</image>
|
|
</view>
|
|
|
|
<view class="set_con" v-if="show">
|
|
<image src="../../../../static/tongyonh/xg.png" mode="aspectFit" class="img1" @click="show = false"></image>
|
|
<view class="itemm flexx">
|
|
<image src="../../../../static/tongyonh/create_24px.png" mode="aspectFit" class="img"></image>
|
|
Edit
|
|
</view>
|
|
<view class="itemm flexx red">
|
|
<image src="../../../../static/tongyonh/trash.png" mode="aspectFit" class="img"></image>
|
|
Delete
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
|
|
<view class="item flex">
|
|
<view class="textcon flex">
|
|
<view class="bigcon">
|
|
<view class="textimg flexx">
|
|
<image src="../../../../static/tongyonh/bye.png" mode="aspectFit" class="img"></image>
|
|
<text class="textt">BTC</text>
|
|
<text class="textt2">Chisu</text>
|
|
</view>
|
|
<view class="text1">
|
|
TAADz1cFXLB2fWikE1sRi9znpmFFaMgaad
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="btncon">
|
|
<image src="../../../../static/tongyonh/more_vert_24px_outlined.svg" mode="aspectFit" class="img2">
|
|
</image>
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
|
<view class="info_con green">
|
|
<view class="text">
|
|
BTC TAADz1c...1sFFaMgaad
|
|
</view>
|
|
<view class="text text2">
|
|
DELETE
|
|
</view>
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
<u-mask z-index="10" :show="show" ></u-mask>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
</template>
|
|
|
|
<script>
|
|
import cont from "@/components/navigation/navigation.vue"
|
|
export default {
|
|
data() {
|
|
return {
|
|
show: true,
|
|
list: [
|
|
{
|
|
name: 'Single address',
|
|
checked: true,
|
|
disabled: false
|
|
},
|
|
{
|
|
name: 'Batch add 10 addresses',
|
|
checked: false,
|
|
disabled: false
|
|
},
|
|
{
|
|
name: 'Batch add 50 addresses',
|
|
checked: false,
|
|
disabled: false
|
|
}
|
|
]
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
};
|
|
</script>
|
|
<style scoped>
|
|
page {
|
|
background: #FAFAFA;
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
|
|
<style>
|
|
@import './index.css';
|
|
</style>
|
|
|