hroperation-unit-tab-exp-view.vue 720 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
<template src="./hroperation-unit-tab-exp-view.html"/>
<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import { VueLifeCycleProcessing } from '@/studio-core';
import { HROperationUnitTabExpViewBase } from './hroperation-unit-tab-exp-view-base';
import view_tabexppanel from '@widgets/hroperation-unit/tab-exp-viewtabexppanel-tabexppanel/tab-exp-viewtabexppanel-tabexppanel.vue';

/**
 * 运营单位视图
 *
 * @export
 * @class HROperationUnitTabExpView
 * @extends {HROperationUnitTabExpViewBase}
 */
@Component({
    components: {
        view_tabexppanel, 
    }
})
@VueLifeCycleProcessing()
export default class HROperationUnitTabExpView extends HROperationUnitTabExpViewBase { }
</script>