This commit is contained in:
lipenggao 2024-07-17 17:34:34 +08:00
parent 2a2819e1ca
commit 138523ab99
6 changed files with 60 additions and 58 deletions

View File

@ -33,7 +33,7 @@
</view> </view>
</view> </view>
<view class="_my_step_3"> <!-- <view class="_my_step_3">
<view class="_my_ste_3_vip"> <view class="_my_ste_3_vip">
<view class="_my_ste_3_v_info"> <view class="_my_ste_3_v_info">
<image src="/static/my_v_bg.png" class="__my_bg_img"></image> <image src="/static/my_v_bg.png" class="__my_bg_img"></image>
@ -95,7 +95,7 @@
</view> </view>
</view> </view>
</view> </view>
</view> </view> -->
<view class="_my_step_4" tt:if="{{historyList.length}}"> <view class="_my_step_4" tt:if="{{historyList.length}}">
<view class="_my_ste_4_header"> <view class="_my_ste_4_header">

View File

@ -53,7 +53,7 @@ Page({
// if (batchlistRes.status == 1 && Array.isArray(batchlistRes.data)) { // if (batchlistRes.status == 1 && Array.isArray(batchlistRes.data)) {
// batchList = batchlistRes.data; // batchList = batchlistRes.data;
// } // }
console.log(getNewModule2Res, "getNewModule2Res") // console.log(getNewModule2Res, "getNewModule2Res")
if (getNewModule2Res.status == 1 && Array.isArray(getNewModule2Res.data.module)) { if (getNewModule2Res.status == 1 && Array.isArray(getNewModule2Res.data.module)) {
const moduleList = getNewModule2Res.data.module; const moduleList = getNewModule2Res.data.module;
const batchList = this.data.batchList; const batchList = this.data.batchList;
@ -66,12 +66,12 @@ Page({
if (page == 1) { if (page == 1) {
this.setData({ this.setData({
batchList: ls, batchList: ls,
page page,
}) })
} else { } else {
this.setData({ this.setData({
batchList: batchList.concat(ls), batchList: batchList.concat(ls),
page page,
}) })
} }
@ -95,12 +95,13 @@ Page({
nextContext?.play?.(); nextContext?.play?.();
this.selectComponent(`#${nextId}`, (res: any) => { this.selectComponent(`#${nextId}`, (res: any) => {
console.log(res, "resres") // console.log(res, "resres")
res?.hidePauseIcon() res?.hidePauseIcon()
}); });
this.setData({ this.setData({
videoPlayerCurrent: current, videoPlayerCurrent: current,
videoErrorText: ''
}) })
if (current + 5 >= batchList.length) { if (current + 5 >= batchList.length) {
const page = this.data.page; const page = this.data.page;
@ -108,8 +109,8 @@ Page({
} }
}, },
videoPlayerEnded() { videoPlayerEnded(err: any) {
console.log('videoPlayerEnded') console.log(err, 'videoPlayerEnded')
const videoPlayerCurrent = this.data.videoPlayerCurrent; const videoPlayerCurrent = this.data.videoPlayerCurrent;
this.setData({ this.setData({
videoPlayerCurrent: videoPlayerCurrent + 1, videoPlayerCurrent: videoPlayerCurrent + 1,

View File

@ -1,7 +1,7 @@
<!-- style="padding-bottom:{{ statusBarHeight ? 166 : 98}}rpx;" --> <!-- style="padding-bottom:{{ statusBarHeight ? 166 : 98}}rpx;" -->
<view class="_recom_html" > <view class="_recom_html" >
<!-- <block tt:if="{{videoCanIUse}}"> --> <!-- <block tt:if="{{videoCanIUse}}"> -->
<swiper bindchange="handelSeiperChange" class="_m_vi_pl_swiper" vertical="{{true}}" duration="{{100}}" <swiper bindchange="handelSeiperChange" class="_m_vi_pl_swiper" vertical="{{true}}" duration="{{200}}"
easing-function="easeInOutCubic" current="{{videoPlayerCurrent}}"> easing-function="easeInOutCubic" current="{{videoPlayerCurrent}}">
<block tt:for="{{batchList}}"> <block tt:for="{{batchList}}">
<!-- tt:key="{{item.id}}" --> <!-- tt:key="{{item.id}}" -->
@ -18,7 +18,7 @@
enable-progress-gesture="{{true}}" autoplay="{{ videoPlayerCurrent == index}}" enable-progress-gesture="{{true}}" autoplay="{{ videoPlayerCurrent == index}}"
id="{{item.id}}" enable-dark-water-mark="{{true}}" bindended="videoPlayerEnded" id="{{item.id}}" enable-dark-water-mark="{{true}}" bindended="videoPlayerEnded"
binderror="videPlayerError"> binderror="videPlayerError">
<block tt:if="{{videoPlayerCurrent == index}}"> <!-- <block tt:if="{{videoPlayerCurrent == index}}">
<block tt:if="{{videoErrorText}}"> <block tt:if="{{videoErrorText}}">
<view class="_iii_video_content"> <view class="_iii_video_content">
<block tt:if="{{videoErrorText}}"> <block tt:if="{{videoErrorText}}">
@ -34,7 +34,7 @@
</block> </block>
</view> </view>
</block> </block>
</block> </block> -->
</video-player> </video-player>
</block> </block>
<block tt:else> <block tt:else>
@ -42,7 +42,7 @@
src="{{item.videoinfo.video_url}}" version="1" enable-progress-gesture="{{true}}" src="{{item.videoinfo.video_url}}" version="1" enable-progress-gesture="{{true}}"
autoplay="{{ videoPlayerCurrent == index}}" id="{{item.id}}" autoplay="{{ videoPlayerCurrent == index}}" id="{{item.id}}"
enable-dark-water-mark="{{true}}" bindended="videoPlayerEnded" binderror="videError"> enable-dark-water-mark="{{true}}" bindended="videoPlayerEnded" binderror="videError">
<block tt:if="{{videoPlayerCurrent == index}}"> <!-- <block tt:if="{{videoPlayerCurrent == index}}">
<block tt:if="{{videoErrorText}}"> <block tt:if="{{videoErrorText}}">
<view class="_iii_video_content"> <view class="_iii_video_content">
<block tt:if="{{videoErrorText}}"> <block tt:if="{{videoErrorText}}">
@ -58,11 +58,9 @@
</block> </block>
</view> </view>
</block> </block>
</block> </block> -->
</video> </video>
</block> </block>
<!-- </block> <!-- </block>
<block tt:else> <block tt:else>
<view class="_m_v_w_it_ma_cover"> <view class="_m_v_w_it_ma_cover">

View File

@ -388,6 +388,8 @@ Page({
// 监听视频播放完成 // 监听视频播放完成
adBanner.onClose(async (res: any) => { adBanner.onClose(async (res: any) => {
console.log(res, "resres") console.log(res, "resres")
if (res.isEnded) {
// const videoIndex = batchList.findIndex( // const videoIndex = batchList.findIndex(
// (r: any) => r.id === videoInfo.id // (r: any) => r.id === videoInfo.id
// ); // );
@ -428,6 +430,7 @@ Page({
}, },
selectionConList: lk selectionConList: lk
}) })
}
}); });
// 预加载资源 // 预加载资源

View File

@ -74,7 +74,7 @@
<view class="_k_l_unlo_btn_warp"> <view class="_k_l_unlo_btn_warp">
<icon class="_k_l_unlo_btn_warp_icon" size="{{28}}" type="cancel" color="#fff" <icon class="_k_l_unlo_btn_warp_icon" size="{{28}}" type="cancel" color="#fff"
catchtap="hideUnlock"></icon> catchtap="hideUnlock"></icon>
<block tt:if="{{platform != 'ios'}}"> <!-- <block tt:if="{{platform != 'ios'}}">
<view class="_k_l_unlo_ma_pay" catchtap="toPathPay"> <view class="_k_l_unlo_ma_pay" catchtap="toPathPay">
<view class="_k_l_unlo_ma_p_icon"> <view class="_k_l_unlo_ma_p_icon">
<image src="/static//unlock_icon.png" class="__wa_img_no_radius"> <image src="/static//unlock_icon.png" class="__wa_img_no_radius">
@ -84,7 +84,7 @@
<text class="_k_l_unlo_ma_na_text">充值解锁</text> <text class="_k_l_unlo_ma_na_text">充值解锁</text>
</view> </view>
</view> </view>
</block> </block> -->
<view class="_k_l_unlo_ma_ad" catchtap="watchAdvertisement"> <view class="_k_l_unlo_ma_ad" catchtap="watchAdvertisement">
<view class="_k_l_unlo_ma_p_icon"> <view class="_k_l_unlo_ma_p_icon">
<image src="/static//unlock_icon.png" class="__wa_img_no_radius"> <image src="/static//unlock_icon.png" class="__wa_img_no_radius">
@ -96,8 +96,8 @@
</view> </view>
</view> </view>
</view> </view>
<view class="_k_l_unlo_mask" tt:else> <view class="_k_l_unlo_mask" tt:else catchtap="showUnlockFlag">
<view catchtap="showUnlockFlag" > <view>
<text class="_k_ll_show_un_text">点击屏蔽再次解锁</text> <text class="_k_ll_show_un_text">点击屏蔽再次解锁</text>
</view> </view>
</view> </view>

View File

@ -13,6 +13,6 @@
] ]
}, },
"appid": "tte8719ecc7742e53d01", "appid": "tte8719ecc7742e53d01",
"projectname": "初晴剧场", "projectname": "古言剧场",
"douyinProjectType": "native" "douyinProjectType": "native"
} }