dk-guide.wxml 536 B

123456789101112131415
  1. <!--wxml-->
  2. <view class="guide" wx:if="{{showGuide}}">
  3. <view style="{{guideStyle}}" class="guide-box">
  4. <view class="tips guide-step-tips" style="{{tipPosition}}">
  5. <view class="text">{{ guideList[index].tips }}</view>
  6. <view class="tool-btn">
  7. <text bind:tap="skip">跳过</text>
  8. <view class="next" style="" bind:tap="next">下一步</view>
  9. </view>
  10. </view>
  11. <view class="arrow" style="{{arrowTop}}"></view>
  12. </view>
  13. <!-- 遮罩层,防止点击 -->
  14. <view class="v-model"></view>
  15. </view>