添加倍速

This commit is contained in:
@fawn-nine
2024-07-19 17:16:19 +08:00
parent 9508af8780
commit 719f90889c
7 changed files with 1451 additions and 67 deletions

View File

@@ -2,6 +2,7 @@ export const state = {
//webView地址
webViewUrl: "",
loadingShow: false,
videoTimer: false,
//微信场景参数
chatScenesInfo: {},
//绑定微信头像昵称弹窗状态
@@ -47,6 +48,14 @@ export const mutations = {
// #endif
}
},
setVideoTimer(state, data) {
if (data) {
state.videoTimer = data;
// #ifdef H5
// window.sessionStorage.setItem('webViewUrl', data);
// #endif
}
},
//数据加载状态
setLoadingShow(state, data) {
if(state.loadingShow){
@@ -95,6 +104,7 @@ export const mutations = {
checkIapOrder(){
console.log('验证苹果支付未关闭订单')
}
};
export const actions = {