<template src="./incident-info-view.html"/> <script lang='tsx'> import { Component } from 'vue-property-decorator'; import { VueLifeCycleProcessing } from '@/studio-core'; import { IncidentInfoViewBase } from './incident-info-view-base'; import view_tabexppanel from '@widgets/incident/info-viewtabexppanel-tabexppanel/info-viewtabexppanel-tabexppanel.vue'; /** * 服务案例信息视图 * * @export * @class IncidentInfoView * @extends {IncidentInfoViewBase} */ @Component({ components: { view_tabexppanel, } }) @VueLifeCycleProcessing() export default class IncidentInfoView extends IncidentInfoViewBase { } </script>