BUG修改

This commit is contained in:
a0049873 2022-07-16 16:58:33 +08:00
parent c156b52d84
commit 9001b5a5e1
1 changed files with 26 additions and 2 deletions

View File

@ -2,7 +2,7 @@
* @Author: hisense.liangjunhua
* @Date: 2022-06-08 15:25:33
* @LastEditors: hisense.liangjunhua
* @LastEditTime: 2022-07-16 15:59:09
* @LastEditTime: 2022-07-16 16:58:16
* @Description: 应用展示 视频播放
-->
<template>
@ -23,7 +23,11 @@
class="main2"
v-if="showArr.length > 0 && showArr[showFlag].attrType == '应用图片'"
>
<a-image :width="700" :src="showArr[showFlag].attrValue" />
<a-image
:width="700"
:height="340"
:src="showArr[showFlag].attrValue"
/>
</div>
<div class="right" @click="chagneShow()"></div>
</div>
@ -92,9 +96,16 @@
showArr.value = props.dataList.infoList.filter(
(item) => item.attrType === '应用展示视频' || item.attrType === '应用图片'
)
let obj = props.dataList.infoList.filter(
(item) => item.attrType === '应用展示视频'
)[0]
console.log('视频==============>', showArr.value)
if (showArr.value.length == 0) {
flag.value = false
} else {
if (obj) {
options.src = obj.attrValue
}
}
}
watch(
@ -105,9 +116,16 @@
(item) =>
item.attrType === '应用展示视频' || item.attrType === '应用图片'
)
let obj = props.dataList.infoList.filter(
(item) => item.attrType === '应用展示视频'
)[0]
console.log('视频==============>', showArr.value)
if (showArr.value.length == 0) {
flag.value = false
} else {
if (obj) {
options.src = obj.attrValue
}
}
}
}
@ -173,4 +191,10 @@
background-position: center;
}
}
:deep(.ant-image-img) {
width: 100%;
height: 100%;
object-fit: contain;
}
</style>