123456789101112131415161718192021222324252627 |
- <mobile-main frameStyle="{{frameStyle}}" bind:back="back">
- <view slot="info" class="container main">
- <view class="one">
- <input type="text" placeholder="请输入关键词" />
- </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="list_1">
- <view class="name textOver">{{item.title||'暂无'}}</view>
- <view class="other">
- <view class="other_1 textOver"><text>金额:</text><text>¥{{item.money||'暂无'}}元</text></view>
- <view class="other_1 textOver"><text>状态:</text><text>{{item.zhStatus||'暂无'}}</text></view>
- <view class="other_1 textOver"><text>人数上限:</text><text>{{item.limit||'暂无'}}人</text></view>
- <view class="other_1 textOver"><text>上课时间:</text><text>{{item.time_start||'暂无'}}-{{item.time_end||'暂无'}}</text></view>
- </view>
- </view>
- <view class="btn">
- <button size="mini" type="primary" bindtap="toView" data-item="{{item}}">详细信息</button>
- </view>
- </view>
- </view>
- </scroll-view>
- </view>
- </view>
- </mobile-main>
|