添加倍速

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

@@ -28,7 +28,7 @@ Vue.prototype.$apkUrl = "https://a.app.qq.com/o/simple.jsp?pkgname=com.cn.medici
uni.getSystemInfo({ uni.getSystemInfo({
success: function (res) { success: function (res) {
Vue.prototype.$platform = res.platform;
Vue.prototype.iosHidden = true; Vue.prototype.iosHidden = true;
if (res.platform == 'ios') { if (res.platform == 'ios') {
@@ -106,6 +106,8 @@ import commonAddress from '@/pages/component/commonComponents/address/index.vue'
Vue.component('common-address', commonAddress); Vue.component('common-address', commonAddress);
import commonSelectGoods from '@/pages/component/commonComponents/selectGoods.vue' import commonSelectGoods from '@/pages/component/commonComponents/selectGoods.vue'
Vue.component('common-select-goods', commonSelectGoods); Vue.component('common-select-goods', commonSelectGoods);
import commonVideoIos from '@/pages/component/commonComponents/video/ios.nvue'
Vue.component('common-video-ios', commonVideoIos);
// import musicPlay from '@/components/music.vue' // import musicPlay from '@/components/music.vue'
// Vue.component('music-play', musicPlay); // Vue.component('music-play', musicPlay);

View File

@@ -32,7 +32,8 @@
"Payment" : {}, "Payment" : {},
"Share" : {}, "Share" : {},
"Camera" : {}, "Camera" : {},
"OAuth" : {} "OAuth" : {},
"VideoPlayer" : {}
}, },
"distribute" : { "distribute" : {
"apple" : { "apple" : {

File diff suppressed because it is too large Load Diff

View File

@@ -13,16 +13,17 @@
> >
<!-- 加密视频 --> <!-- 加密视频 -->
<view :style="`background:#000`"> <view :style="`background:#000`">
<common-video <common-video-ios
@changeScreen="changeScreen" @changeScreen="changeScreen"
@changeScreenLoading="changeScreenLoading" @changeScreenLoading="changeScreenLoading"
v-if="isfresh" v-if="isfresh"
ref="commonVideo" ref="commonVideo"
 :videoTitle="curriculumData.title"
:currentVideo="currentVideo" :currentVideo="currentVideo"
:noRecored = "noRecored" :noRecored = "noRecored"
:currentVideoList="videoArray" :currentVideoList="videoArray"
> >
</common-video> </common-video-ios>
<view style="height: 200px" v-else></view> <view style="height: 200px" v-else></view>
</view> </view>

View File

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

View File

@@ -67,66 +67,3 @@ $uni-font-size-subtitle:36upx;
$uni-color-paragraph: #3F536E; // 文章段落颜色 $uni-color-paragraph: #3F536E; // 文章段落颜色
$uni-font-size-paragraph:30upx; $uni-font-size-paragraph:30upx;
/* 行为相关颜色 */
$uni-color-primary: #007aff;
$uni-color-success: #4cd964;
$uni-color-warning: #f0ad4e;
$uni-color-error: #dd524d;
/* 文字基本颜色 */
$uni-text-color:#333;//基本色
$uni-text-color-inverse:#fff;//反色
$uni-text-color-grey:#999;//辅助灰色,如加载更多的提示信息
$uni-text-color-placeholder: #808080;
$uni-text-color-disable:#c0c0c0;
/* 背景颜色 */
$uni-bg-color:#ffffff;
$uni-bg-color-grey:#f8f8f8;
$uni-bg-color-hover:#f1f1f1;//点击状态颜色
$uni-bg-color-mask:rgba(0, 0, 0, 0.4);//遮罩颜色
/* 边框颜色 */
$uni-border-color:#c8c7cc;
/* 尺寸变量 */
/* 文字尺寸 */
$uni-font-size-sm:24rpx;
$uni-font-size-base:28rpx;
$uni-font-size-lg:32rpx;
/* 图片尺寸 */
$uni-img-size-sm:40rpx;
$uni-img-size-base:52rpx;
$uni-img-size-lg:80rpx;
/* Border Radius */
$uni-border-radius-sm: 4rpx;
$uni-border-radius-base: 6rpx;
$uni-border-radius-lg: 12rpx;
$uni-border-radius-circle: 50%;
/* 水平间距 */
$uni-spacing-row-sm: 10px;
$uni-spacing-row-base: 20rpx;
$uni-spacing-row-lg: 30rpx;
/* 垂直间距 */
$uni-spacing-col-sm: 8rpx;
$uni-spacing-col-base: 16rpx;
$uni-spacing-col-lg: 24rpx;
/* 透明度 */
$uni-opacity-disabled: 0.3; // 组件禁用态的透明度
/* 文章场景相关 */
$uni-color-title: #2C405A; // 文章标题颜色
$uni-font-size-title:40rpx;
$uni-color-subtitle: #555555; // 二级标题颜色
$uni-font-size-subtitle:36rpx;
$uni-color-paragraph: #3F536E; // 文章段落颜色
$uni-font-size-paragraph:30rpx;

Binary file not shown.