app-index-org-select.vue 1.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
<template>
    <div :class="curClassName" :style="curStyle">
        <app-orgsector></app-orgsector>
    </div>
</template>
<script lang="ts">
import { Component, Prop, Vue } from "vue-property-decorator";

@Component({})
export default class AppIndexOrgSelect extends Vue {
tony001's avatar
tony001 committed
11

12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
    /**
     * 名称
     *
     * @type {string}
     * @memberof AppIndexOrgSelect
     */
    @Prop() public name!: string;

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

    /**
tony001's avatar
tony001 committed
29 30 31 32 33 34 35 36 37
     * 下标
     *
     * @type {number}
     * @memberof AppIndexOrgSelect
     */
    @Prop({ default: 0 }) public index?: number;

    /**
     * 项名称
38 39 40 41
     *
     * @type {*}
     * @memberof AppIndexOrgSelect
     */
tony001's avatar
tony001 committed
42 43 44
    get itemName() {
        return this.index ? `${this.name}_${this.index}` : this.name;
    }
45 46 47 48 49 50 51

    /**
     * 当前容器类名
     *
     * @memberof AppIndexOrgSelect
     */
    get curClassName() {
tony001's avatar
tony001 committed
52 53 54
        const layoutModel = this.layoutModelDetails[this.itemName];
        if (layoutModel) {
            return `app-index-org-select ${this.itemName} ${layoutModel.sysCss}`;
55 56 57 58 59 60 61 62 63
        }
    }

    /**
     * 当前容器样式
     *
     * @memberof AppIndexOrgSelect
     */
    get curStyle() {
tony001's avatar
tony001 committed
64 65 66
        const layoutModel = this.layoutModelDetails[this.itemName];
        if (layoutModel) {
            return layoutModel.getElementStyle();
67 68 69 70 71 72 73 74
        }
    }

}
</script>
<style lang='less'>
@import './app-index-org-select.less';
</style>