1234567891011121314151617181920212223242526272829303132 |
- <cover-view class="myModal" catchtouchmove="touchMove">
- <cover-view class="box havePadding" wx:if="{{type === 'text'}}">
- <cover-view class="text" wx:for="{{text}}" wx:key="{{index}}">
- <cover-view class="{{item.type === 'bigOrange' ? 'orange' : 'normal'}}">
- {{item.text}}
- </cover-view>
- </cover-view>
- <cover-view class="btn" bindtap="confirm">{{btnText}}</cover-view>
- </cover-view>
- <cover-view class="box" wx:if="{{type === 'image'}}">
- <!-- <cover-view class="text" wx:for="{{text}}"></cover-view> -->
- <cover-image class="paySuccessImg" src="../../static/image/pay_success.png"></cover-image>
- <cover-view class="paySuccess">恭喜您支付成功</cover-view>
- <cover-view class="btn" bindtap="confirm">确定</cover-view>
- </cover-view>
- <cover-view class="androidBox" wx:if="{{type === 'androidVIP'}}">
- <!-- <cover-view class="text" wx:for="{{text}}"></cover-view> -->
- <cover-image class="androidVIPImg" src="../../static/vip/crown.png"></cover-image>
- <cover-view class="androidVIPText">快去开通VIP</cover-view>
- <cover-view class="androidVIPText">享受更多权益吧</cover-view>
- <cover-view class="btn" bindtap="confirm">立即开通</cover-view>
- </cover-view>
- <cover-view class="box" wx:if="{{type === 'iosCode'}}">
- <cover-image class="androidVIPImg" src="../../static/vip/crown.png"></cover-image>
- <cover-view class="androidVIPText">由于相关规范,ios功能暂不可用</cover-view>
- <cover-view class="androidVIPText">联系客服解锁哦</cover-view>
- <cover-view class="androidBtn" bindtap="confirm">立即解锁</cover-view>
- </cover-view>
- <cover-image class="close" src="../../static/groupImg/cha.png" bindtap="close" wx:if="{{isCloseShow}}">
- <!-- <cover-image src="" /> -->
- </cover-image>
- </cover-view>
|