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