list.wxml 1.6 KB

123456789101112131415161718192021222324252627
  1. <mobile-main frameStyle="{{frameStyle}}" bind:back="back">
  2. <view slot="info" class="container main">
  3. <view class="one">
  4. <input type="text" placeholder="请输入关键词" />
  5. </view>
  6. <view class="two">
  7. <scroll-view scroll-y="true" class="scroll-view" bindscrolltolower="toPage">
  8. <view class="list-scroll-view">
  9. <view class="list" wx:for="{{list}}" wx:key="item">
  10. <view class="list_1">
  11. <view class="name textOver">{{item.title||'暂无'}}</view>
  12. <view class="other">
  13. <view class="other_1 textOver"><text>金额:</text><text>¥{{item.money||'暂无'}}元</text></view>
  14. <view class="other_1 textOver"><text>状态:</text><text>{{item.zhStatus||'暂无'}}</text></view>
  15. <view class="other_1 textOver"><text>人数上限:</text><text>{{item.limit||'暂无'}}人</text></view>
  16. <view class="other_1 textOver"><text>上课时间:</text><text>{{item.time_start||'暂无'}}-{{item.time_end||'暂无'}}</text></view>
  17. </view>
  18. </view>
  19. <view class="btn">
  20. <button size="mini" type="primary" bindtap="toView" data-item="{{item}}">详细信息</button>
  21. </view>
  22. </view>
  23. </view>
  24. </scroll-view>
  25. </view>
  26. </view>
  27. </mobile-main>