广告显示
This commit is contained in:
@@ -1,7 +1,8 @@
|
||||
<template><page-meta
|
||||
:page-font-size="$baseFontSize() + 'px'"
|
||||
:root-font-size="$baseFontSize() + 'px'"
|
||||
></page-meta>
|
||||
<template>
|
||||
<page-meta
|
||||
:page-font-size="$baseFontSize() + 'px'"
|
||||
:root-font-size="$baseFontSize() + 'px'"
|
||||
></page-meta>
|
||||
<view
|
||||
class="container playerBox"
|
||||
id="playerBox"
|
||||
@@ -50,7 +51,7 @@
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
border-radius: 40rpx;
|
||||
border: 15rpx solid #000;
|
||||
border: 15rpx solid #000;
|
||||
padding: 40rpx 0 20rpx;
|
||||
box-sizing: border-box;
|
||||
background-size: cover;
|
||||
@@ -1057,11 +1058,12 @@ export default {
|
||||
console.log('vm at line 926:', newValue, oldValue, ownerVm, vm)
|
||||
if (newValue != null) {
|
||||
if (this.platform == "ios") {
|
||||
this.player.one("canplay", () => {
|
||||
this.player.seek(newValue);
|
||||
});
|
||||
|
||||
player.seek(newValue);
|
||||
|
||||
|
||||
} else {
|
||||
this.player.seek(newValue);
|
||||
player.seek(newValue);
|
||||
}
|
||||
this.curTime = newValue
|
||||
}
|
||||
@@ -1069,12 +1071,11 @@ export default {
|
||||
receiveMsgjumpNumber(newValue, oldValue, ownerVm, vm) {
|
||||
console.log('vm at line 926:', newValue, oldValue, ownerVm, vm)
|
||||
if (newValue != 0) {
|
||||
|
||||
if (this.platform == "ios") {
|
||||
this.player.one("canplay", () => {
|
||||
this.player.seek(newValue);
|
||||
});
|
||||
player.seek(newValue);
|
||||
} else {
|
||||
this.player.seek(newValue);
|
||||
player.seek(newValue);
|
||||
}
|
||||
this.curTime = newValue
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user