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.
54 lines
2.7 KiB
54 lines
2.7 KiB
<wxs module="formate" src="../../../pages/formate.wxs"></wxs>
|
|
<cu-custom bgColor="bg-white" isBack="{{false}}">
|
|
<view slot="content" style="color:black;font-size:18px">我的</view>
|
|
</cu-custom>
|
|
|
|
<view class="header-box flex flex-justify" style="padding:32rpx" bindtap="toUserInfo">
|
|
<view class="flex">
|
|
<wux-image width="{{60}}" height="{{60}}" wux-class="image" shape="circle" src="{{avatarUrl}}" />
|
|
<view class="flex flex-column flex-center" style="margin-left:24rpx;align-items:flex-start">
|
|
<view class="flex flex-center">
|
|
<text style="white-space: nowrap">{{userName || '您还没有登录,去登录'}}</text>
|
|
</view>
|
|
<view class="flex flex-center" style="font-size:13px" catchtap="toAuthor" wx:if="{{userInfo}}">
|
|
<image class="img-auth2" src="{{userInfo.isAuth == 1 ? '/assets/image/icon_author.png' : '/assets/image/icon_unauthor.png'}}"></image>
|
|
<text class="{{userInfo.isAuth == 1 ? 'text-blue' : 'text-gray'}}">{{userInfo.isAuth == 1 ? '已认证' : '未实名认证'}}</text>
|
|
<text class="text-yellow" style="font-size:14px;padding:4px;" wx:if="{{userInfo.isAuth != 1 && userInfo.userType == 1}}">去认证</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<text class="cuIcon-right text-gray" style="font-size:18px"></text>
|
|
</view>
|
|
|
|
<view style="padding:32rpx">
|
|
<view class="account-bg flex flex-justify" style="padding:32rpx">
|
|
<view>
|
|
<view class="money">¥{{formate.numberFormat2(accountMoney)}}</view>
|
|
<view class="label">账户余额(元)</view>
|
|
</view>
|
|
<view style="width:160rpx">
|
|
<wux-button block outline size="small" type="light" bind:click="checkout">立即提现</wux-button>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<wux-cell-group>
|
|
<wux-cell title="银行卡" is-link bind:click="toBankCard">
|
|
<image slot="header" style="width:32rpx;height:32rpx;margin:12rpx 12rpx 0rpx 0rpx" src="/assets/image/icon_bank.png"></image>
|
|
</wux-cell>
|
|
<wux-cell title="提现记录" is-link bind:click="toWithdrawal">
|
|
<image slot="header" style="width:32rpx;height:32rpx;margin:12rpx 12rpx 0rpx 0rpx" src="/assets/image/icon_withdrawal.png"></image>
|
|
</wux-cell>
|
|
<wux-cell title="收支明细" is-link bind:click="toBalance">
|
|
<image slot="header" style="width:32rpx;height:32rpx;margin:12rpx 12rpx 0rpx 0rpx" src="/assets/image/icon_balance.png"></image>
|
|
</wux-cell>
|
|
</wux-cell-group>
|
|
<view style="height:32rpx"></view>
|
|
<wux-cell-group>
|
|
<wux-cell title="联系客服" is-link url="/pages/home/service/index">
|
|
<image slot="header" style="width:32rpx;height:32rpx;margin:12rpx 12rpx 0rpx 0rpx" src="/assets/image/icon_kefu.png"></image>
|
|
</wux-cell>
|
|
<wux-cell title="设置" is-link bind:click="toSetting">
|
|
<image slot="header" style="width:32rpx;height:32rpx;margin:12rpx 12rpx 0rpx 0rpx" src="/assets/image/icon_setting.png"></image>
|
|
</wux-cell>
|
|
</wux-cell-group>
|