Browse Source

我的账户界面调整修改

master
dy-hu 9 months ago
parent
commit
a44632a382
  1. 4
      App.vue
  2. 2
      locale/en.json
  3. 2
      locale/zh-Hans.json
  4. 28
      pages_category_page2/userModule/memberAccount.vue

4
App.vue

@ -798,6 +798,10 @@ uni-checkbox:not([disabled]) .uni-checkbox-input:hover {
color: #CBCCDE;
}
.font-color-ABAFE0{
color: #ABAFE0;
}
.bor-line-D3D4DE {
border-bottom: #D3D4DE 1rpx solid;
}

2
locale/en.json

@ -431,7 +431,7 @@
"common.ordermsg":"Order message",
"common.systemnotice":"System message",
"common.msgempty":"No message",
"common.balance":"Balance",
"common.balance":"My Balance",
"common.withdraw":"Withdraw",
"common.bankaccountempty":"You have to add your bank card first.",
"common.addressempty":"You have to add your address first.",

2
locale/zh-Hans.json

@ -431,7 +431,7 @@
"common.ordermsg":"订单消息",
"common.systemnotice":"系统消息",
"common.msgempty":"暂无消息",
"common.balance":"余额",
"common.balance":"我的余额",
"common.withdraw":"提现",
"common.bankaccountempty":"你还没有添加银行卡哦~",
"common.addressempty":"你还没有添加地址哦~",

28
pages_category_page2/userModule/memberAccount.vue

@ -7,18 +7,22 @@
</view>
<view class="balanceInfo">
<view class="infoBox">
<view class="fs28 font-color-ABAFE0 mar-top-20">{{$t('common.balance')}}</view>
<view v-if="accountInfo.price != null " class="cur-balance">{{accountInfo.price}}</view>
<view v-else class="cur-balance">0.00</view>
<view class="mar-top-20">{{$t('common.balance')}}</view>
</view>
</view>
<view class="balance-operation">
<!-- <view class="balance-operation">
<view class="item-btn" @click="memberAccountWithdraw">
<image class="item-btn-icon" src="https://ceres.zkthink.com/static/images/withdraw.png" mode="widthFix"></image>
<view class="item-btn-text">{{$t('common.withdraw')}}</view>
<image class="item-btn-right" src="https://ceres.zkthink.com/static/images/greyArrow.png" mode="widthFix"></image>
</view>
</view>
</view>-->
<view style="display: flex;justify-content: center;margin-top: 60rpx">
<view class="with-draw-btn" @click="memberAccountWithdraw">{{$t('common.withdraw')}}</view>
</view>
</view>
</view>
</template>
@ -112,8 +116,8 @@ page {
.infoBox {
text-align: center;
.cur-balance{
font-size:60rpx;
color: #71521B;
font-size:70rpx;
color: #ffffff;
}
}
}
@ -157,4 +161,18 @@ page {
.mt1{
margin-top: 1upx;
}
.with-draw-btn{
background-color: #252744;
border-radius: 50rpx;
width: 690rpx;
height: 98rpx;
margin-bottom: 68rpx;
position: fixed;
bottom: 0;
line-height: 98rpx;
color: #ffffff;
text-align: center;
font-size: 32rpx;
}
</style>
Loading…
Cancel
Save