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