|
@@ -167,6 +167,7 @@ export default defineComponent({
|
|
|
cancelButtonText: '取消',
|
|
|
messageAlign: 'center' as 'left' | 'center' | 'right',
|
|
|
|
|
|
+ showDuration: true,
|
|
|
dialogConfirmStatus: false,
|
|
|
contract_sign: false, // 是否实名认证
|
|
|
countDownTimePay: 60 * 1000,
|
|
@@ -1395,6 +1396,7 @@ export default defineComponent({
|
|
|
// 开始播放
|
|
|
videoForms.player.on('play', () => {
|
|
|
console.log('play');
|
|
|
+ forms.showDuration = false;
|
|
|
// 判断视频计时器是否暂停,如果暂停则恢复
|
|
|
videoIntervalRef.resume();
|
|
|
timer.resume();
|
|
@@ -1662,6 +1664,10 @@ export default defineComponent({
|
|
|
'https://oss.dayaedu.com/ktyq/17158281330381317fd87.png'
|
|
|
}
|
|
|
preload="auto"></video>
|
|
|
+
|
|
|
+ {forms.showDuration && (
|
|
|
+ <span class={styles.videoDuration}>1:56</span>
|
|
|
+ )}
|
|
|
</div>
|
|
|
</div>
|
|
|
|