562bug
This commit is contained in:
parent
9f5186f12b
commit
0929b51faf
|
@ -9,12 +9,15 @@
|
|||
<div class="application-presentation" v-if="flag">
|
||||
<detals-title title="图层预览" type="PREVIEW"></detals-title>
|
||||
<div class="main">
|
||||
<iframe
|
||||
<!-- <iframe
|
||||
:src="img"
|
||||
width="100%"
|
||||
height="100%"
|
||||
border-radius="0.1rem"
|
||||
></iframe>
|
||||
></iframe> -->
|
||||
<div class="iframe-box">
|
||||
<iframe :src="img" width="100%" height="440"></iframe>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
@ -37,7 +40,7 @@
|
|||
} else {
|
||||
props.dataList.infoList.map((item) => {
|
||||
if (item.attrType === '预览服务地址') {
|
||||
img.value = imgindex.attrValue || '--'
|
||||
img.value = item.attrValue.replace(/amp;/g, '') || '--'
|
||||
}
|
||||
})
|
||||
}
|
||||
|
@ -54,7 +57,7 @@
|
|||
} else {
|
||||
val.infoList.map((item) => {
|
||||
if (item.attrType === '预览服务地址') {
|
||||
img.value = imgindex.attrValue || '--'
|
||||
img.value = item.attrValue.replace(/amp;/g, '') || '--'
|
||||
}
|
||||
})
|
||||
}
|
||||
|
@ -64,14 +67,23 @@
|
|||
</script>
|
||||
<style lang="less" scoped>
|
||||
.application-presentation {
|
||||
padding: 0.8rem 3rem 0;
|
||||
padding: 0.8rem 3rem 0.6rem;
|
||||
.main {
|
||||
height: 5rem;
|
||||
border-radius: 0.1rem;
|
||||
// border-radius: 0.1rem;
|
||||
margin-top: 0.4rem;
|
||||
// display: flex;
|
||||
// justify-content: center;
|
||||
// align-items: center;
|
||||
iframe {
|
||||
border: none;
|
||||
}
|
||||
.iframe-box {
|
||||
width: 100%;
|
||||
height: 440px;
|
||||
margin-top: 10px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in New Issue