BUG修改

This commit is contained in:
a0049873 2022-08-01 17:52:38 +08:00
parent 52c1850cfb
commit 9bb633e1e6
1 changed files with 20 additions and 3 deletions

View File

@ -1,12 +1,16 @@
<!-- <!--
* @Author: hisense.liangjunhua * @Author: hisense.liangjunhua
* @Date: 2022-06-08 15:25:33 * @Date: 2022-06-08 15:25:33
* @LastEditors: hisense.wuhongjian * @LastEditors: hisense.liangjunhua
* @LastEditTime: 2022-07-16 17:03:24 * @LastEditTime: 2022-08-01 17:52:20
* @Description: 应用展示 视频播放 * @Description: 应用展示 视频播放
--> -->
<template> <template>
<div class="application-presentation" v-if="flag"> <div
class="application-presentation"
id="application-presentation"
v-if="flag"
>
<detals-title title="应用展示" type="IMAGE&VIDEO"></detals-title> <detals-title title="应用展示" type="IMAGE&VIDEO"></detals-title>
<div class="box"> <div class="box">
<div class="left" @click="chagneShow()"></div> <div class="left" @click="chagneShow()"></div>
@ -33,6 +37,7 @@
</div> </div>
<a-modal <a-modal
v-model:visible="visible" v-model:visible="visible"
:getContainer="() => document.getElementById('application-presentation')"
title="视频预览" title="视频预览"
:width="750" :width="750"
destroyOnClose destroyOnClose
@ -84,7 +89,19 @@
} }
} }
const showModal = () => { const showModal = () => {
// console.log(
// '==================>',
// document.documentElement.scrollTop,
// document.body.scrollTop
// )
visible.value = true visible.value = true
// window.setTimeout(() => {
// console.log(
// '==================>',
// document.documentElement.scrollTop,
// document.body.scrollTop
// )
// }, 1000)
} }
const props = defineProps({ const props = defineProps({
dataList: { type: Object, default: null }, dataList: { type: Object, default: null },