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

@Component({})
export default class AppIndexNavTabs 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 AppIndexNavTabs
     */
    @Prop() public name!: string;

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

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

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

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

    /**
     * 当前容器样式
     *
     * @memberof AppIndexNavTabs
     */
    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
        }
    }

}
</script>
72 73
<style lang='scss'>
@import './app-index-nav-tabs.scss';
74
</style>