user_list.wxml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <view class="box">
  2. <view class="top">
  3. <input type="number" placeholder="用户手机号" placeholder-style="font-size:26rpx;padding-left:14rpx;" bindinput="mobile" value="{{mobile}}"/>
  4. <input type="text" placeholder="用户昵称" placeholder-style="font-size:26rpx;padding-left:14rpx;" bindinput="name" value="{{name}}"/>
  5. <view bindtap="chaxun" style="background:#43E0B8;">
  6. <text>查询</text>
  7. </view>
  8. <view bindtap="chongzhi">
  9. <text>重置</text>
  10. </view>
  11. </view>
  12. <view class="content">
  13. <view wx:for="{{arr}}" class="item" wx:if="{{arr!=''}}">
  14. <view class="left">
  15. <view class="top1">
  16. <image src="{{item.avatar}}" mode="aspectFit"></image>
  17. <text>昵称:{{item.nickname}}</text>
  18. </view>
  19. <view class="bottom">
  20. <text>手机号:{{item.mobile}}</text>
  21. <text style="padding-left:10rpx;color:#43E0B8;">余额:{{item.wallet_money}}</text>
  22. </view>
  23. </view>
  24. <view class="right">
  25. <view bindtap="fanxian" data-id="{{item.id}}" data-money="{{item.wallet_money}}">
  26. <text>手动返现</text>
  27. </view>
  28. </view>
  29. </view>
  30. <view wx:if="{{arr==''}}" class="none">
  31. <text>暂无信息~</text>
  32. </view>
  33. </view>
  34. <view class="background" wx:if="{{return}}"></view>
  35. <view class="model" wx:if="{{return}}">
  36. <text>手动提现</text>
  37. <input type="number" placeholder="输入提现金额" bindinput="userMoney"/>
  38. <text>用户可提现金额:<text style="color:red;">{{money}}</text></text>
  39. <view class="model_bottom">
  40. <view bindtap="quxiao" style="border-right:2rpx solid #ccc">
  41. <text>取消</text>
  42. </view>
  43. <view bindtap="queding" style="color:#43E0B8">
  44. <text>确定</text>
  45. </view>
  46. </view>
  47. </view>
  48. </view>