list.wxml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <mobile-main frameStyle="{{frameStyle}}" bind:back="back">
  2. <view slot="info" class="container main">
  3. <view class="one">
  4. <view class="one_1">
  5. <input type="text" placeholder="请输入关键词" />
  6. </view>
  7. <view class="one_2">
  8. <button type="primary" bindtap="toCommon" data-route="project/add">添加</button>
  9. </view>
  10. </view>
  11. <view class="two">
  12. <scroll-view scroll-y="true" class="scroll-view" bindscrolltolower="toPage">
  13. <view class="list-scroll-view">
  14. <view class="list" wx:for="{{list}}" wx:key="item">
  15. <view class="name">{{item.name||'暂无'}}</view>
  16. <view class="other">
  17. <view class="other_1 textOver">
  18. <text>比赛项目说明:</text>
  19. <text>{{item.explain||'暂无'}}</text>
  20. </view>
  21. <view class="other_1">
  22. <text>比赛人数:</text>
  23. <text>{{item.num||'0'}}人</text>
  24. </view>
  25. </view>
  26. <view class="btn">
  27. <view class="btn_1"><button type="primary" bindtap="toEdit" data-item="{{item}}">信息维护</button></view>
  28. <view class="btn_1"><button type="warn" bindtap="toDel" data-item="{{item}}">信息删除</button></view>
  29. </view>
  30. </view>
  31. </view>
  32. </scroll-view>
  33. </view>
  34. </view>
  35. </mobile-main>