|
|
@@ -0,0 +1,41 @@
|
|
|
+<view class="withdraw__bg">
|
|
|
+ <view class="withdraw__head">
|
|
|
+ <view class="title">我的余额(元)</view>
|
|
|
+ <view class="price"><currency symbol=" " value="{{cashTotal.available}}" ></currency></view>
|
|
|
+ </view>
|
|
|
+
|
|
|
+ <!-- <view class="withdraw__wid">
|
|
|
+ <view class="withdraw__content">
|
|
|
+ <view class="title">余额充值</view>
|
|
|
+ <view class="withdraw__price">
|
|
|
+ <text>¥</text>
|
|
|
+ <input type="text" placeholder="请输入充值金额" bindinput="rechargePrice" />
|
|
|
+ </view>
|
|
|
+ <view class="withdraw__btn" bindtap="createRecharge">立即充值</view>
|
|
|
+ </view>
|
|
|
+ </view> -->
|
|
|
+ <view class="granary-no" wx:if="{{cashList.length <= 0}}">
|
|
|
+ <image src="http://fohow.oss-cn-shenzhen.aliyuncs.com/xcx/user/unorders.png" class="granary-no__icon"></image>
|
|
|
+ <view class="granary-no__text">暂无提现记录</view>
|
|
|
+ </view>
|
|
|
+
|
|
|
+ <view class="withdraw-list" wx:if="{{cashList.length > 0}}">
|
|
|
+
|
|
|
+ <view class="withdraw-info" wx:key="{{index}}" wx:for="{{cashList}}">
|
|
|
+ <view class="withdraw-goods">
|
|
|
+ <view class="name"><!-- 【{{item.source_name}}】{{item.remark}} -->佣金转代金券
|
|
|
+ <view class="money"><currency symbol="-" value="{{item.count}}" ></currency>元</view>
|
|
|
+ </view>
|
|
|
+ <view class="clean"></view>
|
|
|
+ </view>
|
|
|
+ <!-- <view class="price" wx:if="{{item.count > 0}}"><currency symbol="-" value="{{item.count}}" ></currency>元</view>
|
|
|
+ <view class="price green" wx:if="{{item.count < 0}}"><currency symbol="" value="{{item.count}}" ></currency>元</view> -->
|
|
|
+ <view class="price1" wx:if="{{!item.pay_state && (!item.audit_state || item.audit_state === 1)}}">{{item.state_cn}}</view>
|
|
|
+ <view class="price2" wx:if="{{(!item.pay_state && item.audit_state === 2) || (item.pay_state === 2 && item.audit_state === 1)}}">{{item.state_cn}}</view>
|
|
|
+ <view class="price3" wx:if="{{item.pay_state ===1 && item.audit_state === 1}}">{{item.state_cn}}</view>
|
|
|
+ <view class="time"><format-time type="formatTime1" value="{{item.created_at}}" ></format-time></view>
|
|
|
+ <view class="clean"></view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+
|
|
|
+</view>
|