123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <view class="box">
- <view class="top">
- <input type="number" placeholder="用户手机号" placeholder-style="font-size:26rpx;padding-left:14rpx;" bindinput="mobile" value="{{mobile}}"/>
- <input type="text" placeholder="用户昵称" placeholder-style="font-size:26rpx;padding-left:14rpx;" bindinput="name" value="{{name}}"/>
- <view bindtap="chaxun" style="background:#43E0B8;">
- <text>查询</text>
- </view>
- <view bindtap="chongzhi">
- <text>重置</text>
- </view>
- </view>
- <view class="content">
- <view wx:for="{{arr}}" class="item" wx:if="{{arr!=''}}">
- <view class="left">
- <view class="top1">
- <image src="{{item.avatar}}" mode="aspectFit"></image>
- <text>昵称:{{item.nickname}}</text>
- </view>
- <view class="bottom">
- <text>手机号:{{item.mobile}}</text>
- <text style="padding-left:10rpx;color:#43E0B8;">余额:{{item.wallet_money}}</text>
- </view>
- </view>
- <view class="right">
- <view bindtap="fanxian" data-id="{{item.id}}" data-money="{{item.wallet_money}}">
- <text>手动返现</text>
- </view>
- </view>
- </view>
- <view wx:if="{{arr==''}}" class="none">
- <text>暂无信息~</text>
- </view>
- </view>
- <view class="background" wx:if="{{return}}"></view>
- <view class="model" wx:if="{{return}}">
- <text>手动提现</text>
- <input type="number" placeholder="输入提现金额" bindinput="userMoney"/>
- <text>用户可提现金额:<text style="color:red;">{{money}}</text></text>
- <view class="model_bottom">
- <view bindtap="quxiao" style="border-right:2rpx solid #ccc">
- <text>取消</text>
- </view>
- <view bindtap="queding" style="color:#43E0B8">
- <text>确定</text>
- </view>
- </view>
- </view>
- </view>
|