project.wxml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <mobile-main frameStyle="{{frameStyle}}" bind:back="back" bind:tabPath="tabPath">
  2. <view slot="info" class="container main">
  3. <view class="zero one">
  4. <view class="one_1">
  5. <input type="text" value="{{searchInfo.name}}" bindconfirm="search" placeholder="请输入比赛项目" />
  6. </view>
  7. <view class="one_2">
  8. <button type="primary" size="mini" bindtap="toAdd">添加</button>
  9. </view>
  10. </view>
  11. <view class="zero two">
  12. <scroll-view scroll-y="true" class="scroll-view">
  13. <view class="list-scroll-view">
  14. <view class="list" wx:for="{{list}}" wx:key="item">
  15. <view class="info">
  16. <view class="list_2">
  17. <view class="name">
  18. <text>{{item.name||'暂无'}}</text>
  19. </view>
  20. <view class="other">
  21. <view class="other_1">
  22. <text>比赛项目说明:</text>
  23. <text>{{item.explain||'暂无'}}</text>
  24. </view>
  25. <view class="other_1">
  26. <text>比赛人数:</text>
  27. <text>{{item.num||'0'}}人</text>
  28. </view>
  29. </view>
  30. </view>
  31. </view>
  32. <view class="btn">
  33. <button type="primary" bindtap="toEdit" data-id="{{item._id}}" size="mini">信息维护</button>
  34. <button size="mini" type="warn" bindtap="toDel" data-id="{{item._id}}">信息删除</button>
  35. </view>
  36. </view>
  37. </view>
  38. </scroll-view>
  39. </view>
  40. </view>
  41. </mobile-main>