<script lang='tsx'> import { Component } from 'vue-property-decorator'; import EMRFODEGridViewBase from './emrfodegrid-view-base.vue'; import view_grid from '@widgets/emrfode/main2-grid/main2-grid.vue'; import view_searchform from '@widgets/emrfode/default-searchform/default-searchform.vue'; /** * 现象 * * @export * @class EMRFODEGridView * @extends {EMRFODEGridViewBase} */ @Component({ components: { view_grid, view_searchform, }, beforeRouteEnter: (to: any, from: any, next: any) => { next((vm: any) => { vm.$store.commit('addCurPageViewtag', { fullPath: to.fullPath, viewtag: vm.viewtag }); }); }, }) export default class EMRFODEGridView extends EMRFODEGridViewBase { } </script>