1234567891011121314151617181920212223242526272829303132333435 |
- <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="project/add">添加</button>
- </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 textOver">
- <text>比赛项目说明:</text>
- <text>{{item.explain||'暂无'}}</text>
- </view>
- <view class="other_1">
- <text>比赛人数:</text>
- <text>{{item.num||'0'}}人</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>
|