123456789101112131415161718192021222324252627282930 |
- <template name="options">
- <view class="options-bg" id="{{cellProductId}}" bindtap="selectAction" hidden="{{hidden}}">
- <view class="options-icon-bg">
- <image class="options-icon" src="../../resource/ic_brain_coin.png" mode="aspectFit"></image>
- </view>
- <view class="options-content">
- <view class="options-title">{{name}}</view>
- <view class="options-menoy">¥ {{fee / 100}}</view>
- </view>
- <view class="options-welfare-bg">
- <view class="options-welfare" hidden="{{type!=1}}">{{top}}</view>
- </view>
- <image wx:if="{{selected}}" class="options-selected" src="../../resource/add_hook.png"></image>
- <view wx:else class="options-check"></view>
- </view>
- </template>
- <view class="top-view"></view>
- <view class="tips">脑力值可按一定速度分裂增殖,可分享本小程序给好友攒脑力值,但最快捷的方式是打赏获得更多脑力值</view>
- <template is="options" wx:if="{{canPay}}" wx:for="{{options}}" wx:for-index="i" wx:key=" " data="{{...options[i]}}"/>
- <view wx:if="{{canPay}}" class="buy" bindtap="buyAction" >立即打赏赚脑力值</view>
- <view wx:else class="can-not-pay">
- <image src="../../resource/add_on_pay.png" class="can-not-pay-img"></image>
- <view class="can-not-pay-text-title">IOS在本页暂不支持支付</view>
- <view class="can-not-pay-text">可联系小脑客服,通过打赏获脑力值</view>
- <button class="contact" open-type="contact" session-from="{{contact.sfrom}}" show-message-card="{{contact.card}}" send-message-title="{{contact.message[0]}}" send-message-img="{{contact.message[1]}}" send-message-path="{{contact.message[2]}}">联系客服购买脑力值</button>
- </view>
- <!-- <button class="phone" hidden="{{phone!=''}}" hover-class="none" open-type="getPhoneNumber" bindgetphonenumber="getPhoneNumber">绑定手机号可赚{{getPhoneCell}}脑力值</button> -->
- <view class="bottom-tips">更多问题,可添加客服微信“hiachen”咨询</view>
|