12345678910111213141516171819202122232425262728293031323334353637 |
- <block>
- <!-- 刮刮乐 -->
- <plugin-scratch
- componentData="{{ componentData }}"
- a:if="{{ pageType === 'scratchActivity' }}"
- />
- <!-- 秒杀 -->
- <instant-kill-detail
- componentData="{{ componentData }}"
- a:if="{{ pageType === 'seckillActivity' }}"
- />
- <!-- 大转盘 -->
- <wheel
- componentData="{{ componentData }}"
- a:if="{{ pageType === 'slyderAdventures' }}"
- />
- <!-- 芝麻GO签约页 -->
- <zm-go-aoi
- componentData="{{ componentData }}"
- a:if="{{ pageType === 'zmGoAoiComponent' }}"
- />
- <!-- 芝麻GO门店列表 -->
- <zm-go-store
- componentData="{{ componentData }}"
- a:if="{{ pageType === 'zmGoAoiComponent' }}"
- />
- <!-- 营销广告展位 -->
- <group-coupon
- componentData="{{ componentData }}"
- a:if="{{ pageType === 'groupCouponComponent' }}"
- />
- <!-- 单次抽发奖活动 -->
- <lucky-draw
- componentData="{{ componentData }}"
- a:if="{{ pageType === 'luckyDrawComponent' }}"
- />
- </block>
|