123456789101112131415161718192021222324252627282930313233343536 |
- <mobile-main frameStyle="{{frameStyle}}" bind:back="back" bind:tabPath="tabPath">
- <view slot="info" class="container main">
- <view class="zero one">
- <view class="one_1">
- <input type="text" value="{{searchInfo.name}}" bindconfirm="search" placeholder="请输入组名称" />
- </view>
- <view class="one_2">
- <view class="btn">
- <button type="primary" bindtap="toCommon" data-route="raceteam/auto">自动编排</button>
- </view>
- <view class="btn">
- <button type="primary" bindtap="toCommon" data-route="raceteam/add">手动编排</button>
- </view>
- </view>
- </view>
- <view class="zero two">
- <scroll-view scroll-y="true" class="scroll-view">
- <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.match_name||'暂无'}}</text></view>
- <view class="other_1"><text>赛事组别:</text><text>{{item.grouping_name||'暂无'}}</text></view>
- <view class="other_1"><text>组内项目:</text><text>{{item.project_name||'暂无'}}</text></view>
- <view class="other_1"><text>前x名晋级:</text><text>{{item.rise||'暂无'}}</text></view>
- </view>
- <view class="btn">
- <button type="primary" size="mini" bindtap="toEdit" data-item="{{item}}">信息维护</button>
- <button type="warn" size="mini" bindtap="toDel" data-item="{{item}}">信息删除</button>
- </view>
- </view>
- </view>
- </scroll-view>
- </view>
- </view>
- </mobile-main>
|