123456789101112131415161718192021222324252627282930313233343536373839 |
- <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 class="one_2">
- <button type="primary" bindtap="toCommon" data-route="address/add">添加</button>
- </view>
- </view>
- <view class="two">
- <scroll-view scroll-y="true" class="scroll-view" bindscrolltolower="upcroll">
- <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.referee_name||'暂无'}}</text>
- </view>
- <view class="other_1">
- <text>备注:</text>
- <text>{{item.remark||'暂无'}}</text>
- </view>
- <view class="other_1">
- <text>是否启用:</text>
- <text>{{item.is_use=='0'?'启用':item.is_use=='1'?'禁用':'暂无'}}</text>
- </view>
- </view>
- <view class="btn">
- <view class="btn_1"><button type="primary" bindtap="toEdit" data-item="{{item}}">信息维护</button></view>
- <view class="btn_1"><button type="warn" bindtap="toDel" data-item="{{item}}">信息删除</button></view>
- </view>
- </view>
- </view>
- </scroll-view>
- </view>
- </view>
- </mobile-main>
|