hreducation-grid-view.vue 735 字节
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
<template src="./hreducation-grid-view.html"/>
<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import { VueLifeCycleProcessing } from '@/studio-core';
import { HREducationGridViewBase } from './hreducation-grid-view-base';
import view_grid from '@widgets/hreducation/main-grid/main-grid.vue';
import view_searchform from '@widgets/hreducation/default-searchform/default-searchform.vue';

/**
 * 教育信息表格视图视图
 *
 * @export
 * @class HREducationGridView
 * @extends {HREducationGridViewBase}
 */
@Component({
    components: {
        view_grid, 
        view_searchform, 
    }
})
@VueLifeCycleProcessing()
export default class HREducationGridView extends HREducationGridViewBase { }
</script>