lessonlist.wxml 961 B

1234567891011121314151617181920212223
  1. <view class="container FlexColumn" style='min-height:{{Containnerheight}}rpx;'>
  2. <view class="main FlexColumn">
  3. <block wx:for="{{List}}" wx:key="index">
  4. <view class="panelItem FlexRow" bindtap="gotoLesson" data-id="{{index+1}}">
  5. <view class="panelItem1">
  6. {{item}}
  7. </view>
  8. <view class="panelItem2 FlexRow">
  9. <image class="universalpic_indicator_right_gray" src='../images/universalpic_indicator_right_gray.png' />
  10. </view>
  11. </view>
  12. <view class='lineFooter'></view>
  13. </block>
  14. </view>
  15. <view style='height:100rpx;'></view>
  16. <button bindtap='gotoUserList'>审核用户</button>
  17. <view style='height:100rpx;'></view>
  18. <button bindtap='gotoMarketingUserList'>推广用户</button>
  19. <view style='height:100rpx;'></view>
  20. <input class='input' maxlength='4' auto-focus bindinput="onKeyInput" value="{{CheckListUserID}}" />
  21. <button bindtap='gotoCheckList'>CheckList</button>
  22. </view>