2025-01-06 14:18:31 +08:00

93 lines
5.5 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!-- components/loadmore/index.wxml -->
<view class="h-screen flex flex-col justify-center items-center" wx:if="{{adShow}}">
<view class=" flex flex-col justify-center items-center ad-bg w-600 h-520">
<view class="pt-190 text-36">恭喜你!</view>
<view class="pt-10 text-36">获得免费看剧名额</view>
<view class="mt-40 w-500">
<van-button round color="#FFA845" block bind:tap="watchTheAD">看广告解锁本集</van-button>
</view>
<view class="mt-20" wx:if="{{countdown}}">{{countdown}}s后自动广告解锁</view>
</view>
<i class="iconfont icon-a-Frame5029 text-40 p-14 mt-main leading-1 bg-fff-25 rounded-full text-fff" bind:tap="cloneAD" />
</view>
<view class="charge-dialog-desc" bind:tap="closePay" wx:if="{{payShow}}">
<view class="w-full rounded-t-24 relative" catch:tap="catchTap">
<view class="absolute left-0 top-0 w-full">
<view class="absolute top-0 left-0 w-full h-128">
<image class="w-full h-128" src="/static/images/pay-head-bg.png" />
<view class="absolute left-0 top-0 w-full text-center mt-16 text-32 text-fff leading-1">
充值
</view>
</view>
<view class="absolute top-70 left-0 w-full rounded-t-48 bg-[#FFFBF3] pt-32 z-[9999]">
<view class="flex justify-between items-center mx-main border-0 border-b-2 border-solid border-pay-line pb-24">
<view class="h-46 w-46 rounded-full mr-10 flex items-center justify-center bg-[#23c36d] ">
<i class="iconfont icon-weixin text-fff text-32" />
</view>
<view class="flex-1 text-40">微信支付</view>
<image class="w-48 h-48" src="/static/images/clone.png" bind:tap="closePay" />
<!-- <i class="iconfont icon-a-Frame5029 text-40 pl-main" /> -->
</view>
</view>
</view>
<view class="bg-gradient-to-b from-[#FFFBF3] to-[#fff] mt-150 py-34 px-main max-h-[75vh] overflow-auto">
<view class="border-0 border-b-2 border-solid border-pay-line w-full py-24">
<view class="">
我的K币
<span class="text-[#FF0049]">{{ userInfo.egold || 0 }}</span>
</view>
<view class="flex justify-between items-center pt-16">
<view class="">
解锁{{newExtParam.price?'本集':'单集'}}消耗: {{ newExtParam.price || 200 }} K币
</view>
<view>在播剧目总数:{{ userInfo.jsvip || 0 }} 部</view>
</view>
</view>
<view class="pt-main w-full">
<view class="flex justify-between items-center">
<view class="text-28 flex-1">
充值
<span class="text-24">1元=100K币</span>
</view>
<view class="text-[#FF0049] underline" bind:tap="openAgreement">会员服务协议</view>
<view class="text-[#FF0049] underline ml-36" bind:tap="openPurchaseNotes">付费须知</view>
</view>
<!-- <view class="h-240 w-full relative mt-24" bind:tap="pay" data-item="{{backInfo}}">
<image class="w-full h-full" mode="widthFix" src="/static/images/pay-bg-1.png" />
<image class="absolute right-0 top-0 w-126 h-72" mode="widthFix" src="/static/images/pay-hot.png" />
<view class="absolute left-32 top-32 right-32 flex flex-col">
<view class="text-36 text-fff">
充{{ backInfo.price || 0 }}送{{ backInfo.zbegold || 0 }}
</view>
<view class="text-24 mt-2 text-[#FFDAB5]">共{{ backInfo.egold || 0 }}K币惊喜福利超低充值</view>
<van-button type="primary" plain color="#F9637B" block custom-class="recharge-button">
¥{{ backInfo.price || 0 }}
</van-button>
</view>
</view> -->
<view class="w-full flex flex-wrap items-center justify-between mt-main">
<view class="w-330 h-200 rounded-16 flex flex-col mb-main relative border-2 border-solid border-[#FDBAC5] overflow-hidden {{item.type===1?'bg-fff':item.type===2?'bg-[#FDBAC5]':'bg-gradient-to-r from-[#DE7DEF] to-[#EE9376] text-fff'}}" wx:for="{{list}}" wx:key="*this" bind:tap="pay" data-item="{{item}}">
<view class="absolute top-0 right-0 bg-gradient-to-r from-[#F3583D] to-[#FA5EAE] rounded-bl-16 px-16 h-36 leading-[36rpx] text-24 text-fff font-400" hidden="{{!item.poster}}">
{{item.poster}}
</view>
<view class="px-32 h-124 mt-12 flex flex-col justify-center items-start">
<view class="flex flex-wrap items-center justify-center w-full pt-20">
<view class="text-48 leading-1.4">
<span class="text-32">¥</span>
<span class="text-48">{{item.price}}</span>
<span class="text-32 pl-8">元</span>
</view>
</view>
</view>
<view class="absolute left-0 bottom-0 h-64 w-full flex items-center justify-center text-28 {{item.type===1?'text-[#F9637B] bg-[#FDBAC5]':item.type===2?'bg-[#F9637B] text-fff':item.type===4?'bg-gradient-to-r from-[#F76D67] to-[#FB5196] text-fff':'bg-[#FDBAC5] text-[#F9637B]'}}">
<image class="w-32 h-32 mr-10" mode="widthFix" src="/static/images/{{item.type===1?'gift':item.type===2?'diamond':'suo'}}.png" />
<view class="leading-1.4">
{{item.type===1?(item.giveegold?(item.egold+'+'+item.giveegold + 'K币'):item.egold + 'K币'):item.type===2?item.title:item.description}}
</view>
</view>
</view>
</view>
</view>
</view>
</view>
</view>