| 1234567891011121314151617181920212223 |
- <view class="container FlexColumn" style='min-height:{{Containnerheight}}rpx;'>
- <view class="main FlexColumn">
- <block wx:for="{{List}}" wx:key="index">
- <view class="panelItem FlexRow" bindtap="gotoLesson" data-id="{{index+1}}">
- <view class="panelItem1">
- {{item}}
- </view>
- <view class="panelItem2 FlexRow">
- <image class="universalpic_indicator_right_gray" src='../images/universalpic_indicator_right_gray.png' />
- </view>
- </view>
- <view class='lineFooter'></view>
- </block>
- </view>
-
- <view style='height:100rpx;'></view>
- <button bindtap='gotoUserList'>审核用户</button>
- <view style='height:100rpx;'></view>
- <button bindtap='gotoMarketingUserList'>推广用户</button>
- <view style='height:100rpx;'></view>
- <input class='input' maxlength='4' auto-focus bindinput="onKeyInput" value="{{CheckListUserID}}" />
- <button bindtap='gotoCheckList'>CheckList</button>
- </view>
|