list.wxml 1.5 KB

12345678910111213141516171819202122232425262728293031
  1. <mobile-main frameStyle="{{frameStyle}}" bind:back="back">
  2. <view slot="info" class="container main">
  3. <view class="one">
  4. <view class="one_1">
  5. <input type="text" placeholder="请输入关键词" />
  6. </view>
  7. </view>
  8. <view class="two">
  9. <scroll-view scroll-y="true" class="scroll-view" bindscrolltolower="toPage">
  10. <view class="list-scroll-view">
  11. <view class="list" wx:for="{{list}}" wx:key="item">
  12. <view class="name">{{item.name}}</view>
  13. <view class="other">
  14. <view class="other_1">
  15. <text>用户类型:</text>
  16. <text>{{item.type=='-1'?'管理员':item.type=='0'?'普通用户':item.type=='1'?'裁判用户':'暂无'}}</text>
  17. </view>
  18. <view class="other_1">
  19. <text>手机号:</text>
  20. <text>{{item.phone||'暂无'}}</text>
  21. </view>
  22. </view>
  23. <view class="btn">
  24. <view class="btn_1"><button type="primary" bindtap="toView" data-item="{{item}}">详细信息</button></view>
  25. </view>
  26. </view>
  27. </view>
  28. </scroll-view>
  29. </view>
  30. </view>
  31. </mobile-main>