emrfocagrid-view.vue 757 字节
<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import EMRFOCAGridViewBase from './emrfocagrid-view-base.vue';

import view_grid from '@widgets/emrfoca/main2-grid/main2-grid.vue';
import view_searchform from '@widgets/emrfoca/default-searchform/default-searchform.vue';

/**
 * 原因
 *
 * @export
 * @class EMRFOCAGridView
 * @extends {EMRFOCAGridViewBase}
 */
@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 EMRFOCAGridView extends EMRFOCAGridViewBase { }
</script>