12345678910111213141516171819202122232425262728293031 |
- <mobile-main frameStyle="{{frameStyle}}" bind:back="back">
- <view slot="info" class="container main">
- <view class="one">
- <view class="one_1">
- <input type="text" placeholder="请输入关键词" />
- </view>
- </view>
- <view class="two">
- <scroll-view scroll-y="true" class="scroll-view" bindscrolltolower="toPage">
- <view class="list-scroll-view">
- <view class="list" wx:for="{{list}}" wx:key="item">
- <view class="name">{{item.name}}</view>
- <view class="other">
- <view class="other_1">
- <text>用户类型:</text>
- <text>{{item.type=='-1'?'管理员':item.type=='0'?'普通用户':item.type=='1'?'裁判用户':'暂无'}}</text>
- </view>
- <view class="other_1">
- <text>手机号:</text>
- <text>{{item.phone||'暂无'}}</text>
- </view>
- </view>
- <view class="btn">
- <view class="btn_1"><button type="primary" bindtap="toView" data-item="{{item}}">详细信息</button></view>
- </view>
- </view>
- </view>
- </scroll-view>
- </view>
- </view>
- </mobile-main>
|