newuser.wxml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <view class="container FlexColumn" style='min-height:{{Containnerheight}}rpx;'>
  2. <block wx:if="{{PanelShow==0}}">
  3. <image id="Image{{index}}" wx:for="{{List}}" wx:key="*this" class="img" lazy-load="true" mode="widthFix"
  4. src='{{ImagePath}}web/{{item.Image}}.png' bindtap="{{item.BindTap}}" data-url="{{item.Url}}"
  5. bindtouchmove="scroll" wx:if="{{ (!IsShowMore && index<24) || IsShowMore}}"/>
  6. <view bindtap="showMore" class="btn3 FlexRow" wx:if="{{!IsShowMore && PageIndex==0}}">更多评语</view>
  7. <view style="height:150rpx;"></view>
  8. <view wx:if="{{IsShowPay}}" class="panelBottom FlexColumn" style='height:{{Containnerheight}}rpx;' catchtap="hidePay">
  9. <view class="panelBottom0 FlexColumn">
  10. <text class="text1">欢迎您\n报名秒过新手培训</text>
  11. <text class="text2">新手包仅售1元</text>
  12. <view class="btn FlexColumn" catchtap="payMoney">
  13. <image class="bm_sy_banner-zf" src='{{ImagePath}}web/bm_sy_banner-zf.png' />
  14. </view>
  15. <view class="panelBottom1 FlexColumn" wx:if="{{!StartDate}}">
  16. <view class='text3'>7天手把手</view>
  17. <view class='text4'>教您上手新方法</view>
  18. </view>
  19. <view class="panelBottom1 FlexColumn" wx:if="{{StartDate}}">
  20. <view class='text3'>预计开班时间</view>
  21. <view class='text4'>{{StartDate}}</view>
  22. </view>
  23. <image class="bm_sy_bg" src='{{ImagePath}}web/bm_sy_bg.png' />
  24. </view>
  25. </view>
  26. <view class="panelShowPay{{IsIPad}} FlexColumn" wx:if="{{IsShowBtn}}" >
  27. <view class="btn2 FlexRow">
  28. <image class="bm_sy_banner-zf" src='{{ImagePath}}web/bm_sy_banner-bm.png' />
  29. </view>
  30. </view>
  31. </block>
  32. <block wx:if="{{PanelShow==1}}">
  33. <image src="{{ImagePath}}web/trial_registration_xcode2.png" class="trial_registration_xcode2"></image>
  34. <view class="btn" bindtap='copyManager'>复制公众号名称</view>
  35. </block>
  36. </view>