app-ctrl-pos.vue 1.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
<template>
    <div :class="curClassName" :style="curStyle">
        <slot></slot>
    </div>
</template>
<script lang="ts">
import { Component, Prop, Vue } from "vue-property-decorator";

@Component({})
export default class AppCtrlPos extends Vue {
    
    /**
     * 名称
     *
     * @type {string}
     * @memberof AppCtrlPos
     */
    @Prop() public name!: string;

    /**
     * 布局模型详情
     *
     * @type {*}
     * @memberof AppCtrlPos
     */
    @Prop() public layoutModelDetails: any;

    /**
     * 当前布局模型
     *
     * @type {*}
     * @memberof AppCtrlPos
     */
    public currentLayoutModel: any;

    /**
     * 当前容器类名
     *
     * @memberof AppCtrlPos
     */
    get curClassName() {
        return {
            'app-ctrl-pos': true,
            [this.name]: true,
            [this.currentLayoutModel.sysCss]: this.currentLayoutModel.sysCss ? true : false
        }
    }

    /**
     * 当前容器样式
     *
     * @memberof AppCtrlPos
     */
    get curStyle() {
        if (this.currentLayoutModel) {
            return this.currentLayoutModel.getElementStyle();
        }
        return '';
    }

    /**
     * Vue生命周期 --- created
     *
     * @memberof AppCtrlPos
     */
    created() {
        this.currentLayoutModel = this.layoutModelDetails[this.name];
    }
    
}
</script>
<style lang='less'>
@import './app-ctrl-pos.less';
</style>