incident-by-parent-key.vue 725 字节
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="./incident-by-parent-key.html"/>
<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import { VueLifeCycleProcessing } from '@/studio-core';
import { IncidentByParentKeyBase } from './incident-by-parent-key-base';
import view_grid from '@widgets/incident/main-grid/main-grid.vue';
import view_searchform from '@widgets/incident/default-searchform/default-searchform.vue';

/**
 * 服务案例信息视图
 *
 * @export
 * @class IncidentByParentKey
 * @extends {IncidentByParentKeyBase}
 */
@Component({
    components: {
        view_grid, 
        view_searchform, 
    }
})
@VueLifeCycleProcessing()
export default class IncidentByParentKey extends IncidentByParentKeyBase { }
</script>