forked from github/dataease
67 lines
1.9 KiB
Vue
67 lines
1.9 KiB
Vue
|
<template>
|
|||
|
<div class="group">
|
|||
|
<div>
|
|||
|
<template v-for="item in propValue">
|
|||
|
<component
|
|||
|
class="component"
|
|||
|
:is="item.component"
|
|||
|
:style="item.groupStyle"
|
|||
|
:propValue="item.propValue"
|
|||
|
:key="item.id"
|
|||
|
:id="'component' + item.id"
|
|||
|
:element="item"
|
|||
|
/>
|
|||
|
</template>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</template>
|
|||
|
|
|||
|
<script>
|
|||
|
import { getStyle } from '@/utils/style'
|
|||
|
|
|||
|
export default {
|
|||
|
props: {
|
|||
|
propValue: {
|
|||
|
type: Array,
|
|||
|
default: () => [],
|
|||
|
},
|
|||
|
element: {
|
|||
|
type: Object,
|
|||
|
},
|
|||
|
},
|
|||
|
created() {
|
|||
|
const parentStyle = this.element.style
|
|||
|
this.propValue.forEach(component => {
|
|||
|
// component.groupStyle 的 top left 是相对于 group 组件的位置
|
|||
|
// 如果已存在 component.groupStyle,说明已经计算过一次了。不需要再次计算
|
|||
|
if (!Object.keys(component.groupStyle).length) {
|
|||
|
const style = { ...component.style }
|
|||
|
component.groupStyle = getStyle(style)
|
|||
|
component.groupStyle.left = this.toPercent((style.left - parentStyle.left) / parentStyle.width)
|
|||
|
component.groupStyle.top = this.toPercent((style.top - parentStyle.top) / parentStyle.height)
|
|||
|
component.groupStyle.width = this.toPercent(style.width / parentStyle.width)
|
|||
|
component.groupStyle.height = this.toPercent(style.height / parentStyle.height)
|
|||
|
}
|
|||
|
})
|
|||
|
},
|
|||
|
methods: {
|
|||
|
toPercent(val) {
|
|||
|
return val * 100 + '%'
|
|||
|
},
|
|||
|
},
|
|||
|
}
|
|||
|
</script>
|
|||
|
|
|||
|
<style lang="scss" scoped>
|
|||
|
.group {
|
|||
|
& > div {
|
|||
|
position: relative;
|
|||
|
width: 100%;
|
|||
|
height: 100%;
|
|||
|
|
|||
|
.component {
|
|||
|
position: absolute;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
</style>
|