|
|
@@ -1,6 +1,40 @@
|
|
|
<template>
|
|
|
- <view>
|
|
|
+ <view class="icon-box">
|
|
|
+ <Nav title="资产" :left-show="false" bgckgroundBox="#146AF0" titleColor="#fff"></Nav>
|
|
|
+ <view class="mui-content">
|
|
|
+ <view class="ln-assets-blue">
|
|
|
+ <view class="ln-assets-top">总账户资产折合(USDT)</view>
|
|
|
+ <view class="ln-assets-hd">
|
|
|
+ <view class="ln-assets-num">10800.11</view>
|
|
|
+ <view class="ln-assets-price">≈21122.1 CNY</view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="order-list">
|
|
|
+ <view class="order-item" v-for="coin in 2">
|
|
|
+ <view @click="" class="order-list-hd">
|
|
|
+ <view class="order-list-nm text-blue">USDT</view>
|
|
|
+ <view class="order-list-state"><i class="iconfont mui-icon-arrowright"></i></view>
|
|
|
+ </view>
|
|
|
+ <view class="order-list-con ">
|
|
|
+ <view class="order-list-iteam">
|
|
|
+ <view class="order-list-tit">可用(USDT)</view>
|
|
|
+ <view class="order-list-num">454554.12</view>
|
|
|
+ </view>
|
|
|
+ <view class="order-list-iteam">
|
|
|
+ <view class="order-list-tit">冻结(USDT)</view>
|
|
|
+ <view class="order-list-num">4454545</view>
|
|
|
+ </view>
|
|
|
+ <view class="order-list-iteam order-list-iteamr">
|
|
|
+ <view class="order-list-tit">折合(CNY)</view>
|
|
|
+ <view class="order-list-num">2154.12</view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
|
|
|
+ </view>
|
|
|
+
|
|
|
+
|
|
|
+ </view>
|
|
|
</view>
|
|
|
</template>
|
|
|
|
|
|
@@ -21,5 +55,128 @@ export default {
|
|
|
</script>
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
+@import url("/components/static/css/en-common.css") ;
|
|
|
+.icon-box{
|
|
|
+ background: #131E30;
|
|
|
+ min-height: calc(100vh - 50px);
|
|
|
+ .mui-icon-arrowright{
|
|
|
+ color: #7388a7;
|
|
|
+ }
|
|
|
+ .mui-content{
|
|
|
+ color: #7388a7;
|
|
|
+ .ln-assets-blue{
|
|
|
+ position: relative;
|
|
|
+ width: 100%;
|
|
|
+ padding:0 10px 10px 10px;
|
|
|
+ color: rgba(255,255,255,0.6);
|
|
|
+ background: #146AF0;
|
|
|
+ .ln-assets-top{
|
|
|
+ width: 100%;
|
|
|
+ height: 16px;
|
|
|
+ line-height: 16px;
|
|
|
+ font-size: 12px;
|
|
|
+ overflow: hidden;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ white-space: nowrap;
|
|
|
+ color: rgba(255,255,255,0.6);
|
|
|
+ }
|
|
|
+ .ln-assets-hd{
|
|
|
+ width: 100%;
|
|
|
+ margin: 15px auto;
|
|
|
+ .ln-assets-num {
|
|
|
+ width: 100%;
|
|
|
+ line-height: 28px;
|
|
|
+ color: #FFFFFF;
|
|
|
+ font-size: 24px;
|
|
|
+ }
|
|
|
+ .ln-assets-price {
|
|
|
+ width: 100%;
|
|
|
+ line-height: 20px;
|
|
|
+ font-size: 12px;
|
|
|
+ color: rgba(255,255,255,0.6);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .order-list{
|
|
|
+ width: calc(100% - 20px);
|
|
|
+ list-style-type: none;
|
|
|
+ margin: 0;
|
|
|
+ -webkit-padding-start: 0;
|
|
|
+ padding: 0 10px;
|
|
|
+ .order-item{
|
|
|
+ width: 100%;
|
|
|
+ padding: 6px 0;
|
|
|
+ border-bottom: 1px solid #213141;
|
|
|
+ position: relative;
|
|
|
+ margin: 0;
|
|
|
+ -webkit-padding-start: 0;
|
|
|
+ .order-list-hd {
|
|
|
+ width: 100%;
|
|
|
+ height: 28px;
|
|
|
+ line-height: 28px;
|
|
|
+ padding: 6px 0;
|
|
|
+ .order-list-nm.text-blue {
|
|
|
+ font-size: 16px;
|
|
|
+ color: #146AF0;
|
|
|
+ }
|
|
|
+ .order-list-nm {
|
|
|
+ max-width: 70%;
|
|
|
+ height: 28px;
|
|
|
+ font-size: 16px;
|
|
|
+ font-weight: 800;
|
|
|
+ color: #FFFFFF;
|
|
|
+ float: left;
|
|
|
+ overflow: hidden;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ white-space: nowrap;
|
|
|
+ }
|
|
|
+ .order-list-state, .order-list-statewhite {
|
|
|
+ width: 28%;
|
|
|
+ height: 28px;
|
|
|
+ line-height: 28px;
|
|
|
+ text-align: right;
|
|
|
+ float: right;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .order-list-con {
|
|
|
+ position: relative;
|
|
|
+ width: 100%;
|
|
|
+ padding: 6px 0;
|
|
|
+ overflow: auto;
|
|
|
+ .order-list-iteam {
|
|
|
+ width: 35%;
|
|
|
+ margin-right: 2%;
|
|
|
+ float: left;
|
|
|
+ .order-list-tit {
|
|
|
+ width: 100%;
|
|
|
+ height: 20px;
|
|
|
+ line-height: 20px;
|
|
|
+ color: #495B73;
|
|
|
+ font-size: 12px;
|
|
|
+ overflow: hidden;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ white-space: nowrap;
|
|
|
+ }
|
|
|
+ .order-list-num {
|
|
|
+ width: 100%;
|
|
|
+ height: 24px;
|
|
|
+ line-height: 24px;
|
|
|
+ font-size: 13px;
|
|
|
+ color: #FFFFFF;
|
|
|
+ overflow: hidden;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ white-space: nowrap;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .order-list-iteamr {
|
|
|
+ width: 26%;
|
|
|
+ margin-right: 0;
|
|
|
+ text-align: right;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
|
|
|
</style>
|