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.
153 lines
3.2 KiB
153 lines
3.2 KiB
<template>
|
|
<view class="">
|
|
<navigation :showBack="true" :bgnum="true">
|
|
<image src="../../../../static/tongyonh/account_circle_24px.png" mode="aspectFit" class="renYou" slot="logo"></image>
|
|
<text class="big_title">
|
|
BTC
|
|
</text>
|
|
</navigation>
|
|
<view class="main">
|
|
<view class="money_con">
|
|
<view class="textcon1">
|
|
<text class="text1">
|
|
0.521 BTC <br>
|
|
<text class="text2">≈ $25.521.00</text>
|
|
</text>
|
|
<image src="../../../../static/tongyonh/Frame28.png" mode="aspectFill" class="img1"></image>
|
|
</view>
|
|
<view class="textcon1">
|
|
<view class="v1">
|
|
<view class="t1">
|
|
0.4
|
|
</view>
|
|
<view class="t2">
|
|
Existing balance
|
|
</view>
|
|
</view>
|
|
<view class="v1 v2">
|
|
<view class="t1">
|
|
0.121
|
|
</view>
|
|
<view class="t2">
|
|
Freeze balance
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="select_con">
|
|
<view class="select">
|
|
<u-tabs height="120" bar-width="172" active-color="#6F69FF" inactive-color="#A3AED0" :list="list" :is-scroll="false" :current="current" @change="change"></u-tabs>
|
|
|
|
<view class="item1">
|
|
<view class="lef_con">
|
|
<image src="../../../../static/tongyonh/arrow-up-left.png" mode="aspectFit" class="img1"></image>
|
|
<view class="textcon">
|
|
<view class="text1">
|
|
TDJK ... gaad
|
|
</view>
|
|
<view class="text2">
|
|
09.01/ 10:32
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="rig_con">
|
|
<view class="text1">
|
|
+0.1 BTC
|
|
</view>
|
|
<image src="../../../../static/tongyonh/Shape.png" mode="aspectFit" class="img1"></image>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="item1">
|
|
<view class="lef_con">
|
|
<image src="../../../../static/tongyonh/arrow-up-left.png" mode="aspectFit" class="img1"></image>
|
|
<view class="textcon">
|
|
<view class="text1">
|
|
TDJK ... gaad
|
|
</view>
|
|
<view class="text2">
|
|
09.01/ 10:32
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="rig_con">
|
|
<view class="text1">
|
|
+0.1 BTC
|
|
</view>
|
|
<image src="../../../../static/tongyonh/Shape.png" mode="aspectFit" class="img1"></image>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="item1">
|
|
<view class="lef_con">
|
|
<image src="../../../../static/tongyonh/arrow-up-left.png" mode="aspectFit" class="img1"></image>
|
|
<view class="textcon">
|
|
<view class="text1">
|
|
TDJK ... gaad
|
|
</view>
|
|
<view class="text2">
|
|
09.01/ 10:32
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="rig_con">
|
|
<view class="text1">
|
|
+0.1 BTC
|
|
</view>
|
|
<image src="../../../../static/tongyonh/x.png" mode="aspectFit" class="img2"></image>
|
|
</view>
|
|
</view>
|
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view class="btnconn">
|
|
<view class="btn active">
|
|
Send
|
|
</view>
|
|
<view class="btn">
|
|
Receive
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import cont from "@/components/navigation/navigation.vue"
|
|
export default {
|
|
data() {
|
|
return {
|
|
list: [{
|
|
name: 'All'
|
|
}, {
|
|
name: 'Send'
|
|
}, {
|
|
name: 'Receive',
|
|
}],
|
|
current: 0
|
|
}
|
|
},
|
|
methods: {
|
|
change(index) {
|
|
this.current = index;
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
<style scoped>
|
|
page{
|
|
background: #FAFAFA;
|
|
|
|
}
|
|
</style>
|
|
|
|
<style>
|
|
|
|
@import './index.css';
|
|
|
|
</style>
|
|
|