index.axml 971 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <block>
  2. <!-- 刮刮乐 -->
  3. <plugin-scratch
  4. componentData="{{ componentData }}"
  5. a:if="{{ pageType === 'scratchActivity' }}"
  6. />
  7. <!-- 秒杀 -->
  8. <instant-kill-detail
  9. componentData="{{ componentData }}"
  10. a:if="{{ pageType === 'seckillActivity' }}"
  11. />
  12. <!-- 大转盘 -->
  13. <wheel
  14. componentData="{{ componentData }}"
  15. a:if="{{ pageType === 'slyderAdventures' }}"
  16. />
  17. <!-- 芝麻GO签约页 -->
  18. <zm-go-aoi
  19. componentData="{{ componentData }}"
  20. a:if="{{ pageType === 'zmGoAoiComponent' }}"
  21. />
  22. <!-- 芝麻GO门店列表 -->
  23. <zm-go-store
  24. componentData="{{ componentData }}"
  25. a:if="{{ pageType === 'zmGoAoiComponent' }}"
  26. />
  27. <!-- 营销广告展位 -->
  28. <group-coupon
  29. componentData="{{ componentData }}"
  30. a:if="{{ pageType === 'groupCouponComponent' }}"
  31. />
  32. <!-- 单次抽发奖活动 -->
  33. <lucky-draw
  34. componentData="{{ componentData }}"
  35. a:if="{{ pageType === 'luckyDrawComponent' }}"
  36. />
  37. </block>