<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>