|
@@ -13,7 +13,13 @@
|
|
|
<view class="userData-data">¥{{personAccount.availableAmount != null ? personAccount.availableAmount.toFixed(2) : '0.00'}}</view>
|
|
|
<view class="userData-foot">可用余额</view>
|
|
|
</view>
|
|
|
- <view class="userInfo-btn" @click="toRecharge">充值</view>
|
|
|
+ <view class="line">
|
|
|
+
|
|
|
+ </view>
|
|
|
+ <view class="userData-num" >
|
|
|
+ <view class="userData-data">0</view>
|
|
|
+ <view class="userData-foot">优惠券</view>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
<view class="userBanner">
|
|
|
<u-image width="100%" height="80px" src="../../static/img/banner.jpg"></u-image>
|
|
@@ -399,11 +405,11 @@
|
|
|
.userData{
|
|
|
background-color: #fff;
|
|
|
margin: 16px;
|
|
|
- padding: 16px 24px;
|
|
|
+ padding: 16px 20px;
|
|
|
border-radius: 8px;
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
- justify-content: space-between;
|
|
|
+ justify-content: space-around;
|
|
|
}
|
|
|
.userData-num{
|
|
|
display: flex;
|
|
@@ -413,6 +419,8 @@
|
|
|
padding-left: 5px;
|
|
|
.userData-data{
|
|
|
font-size: 24px;
|
|
|
+ font-weight: 600;
|
|
|
+
|
|
|
}
|
|
|
.userData-name{
|
|
|
font-size: 16px;
|
|
@@ -425,8 +433,13 @@
|
|
|
}
|
|
|
.userInfo-btn{
|
|
|
padding: 6px 30px;
|
|
|
- background-color: #00B962;
|
|
|
- color:#fff;
|
|
|
- border-radius: 15px;
|
|
|
+ // background-color: #00B962;
|
|
|
+ // color:#fff;
|
|
|
+ // border-radius: 15px;
|
|
|
+ }
|
|
|
+ .line{
|
|
|
+ width: 0px;
|
|
|
+ height: 36px;
|
|
|
+ border: 1px solid rgba(237, 237, 237, 100);
|
|
|
}
|
|
|
</style>
|