<script lang='tsx'> import { Component } from 'vue-property-decorator'; import EMITEMPLEditView9_EditModeBase from './emitempledit-view9-edit-mode-base.vue'; import view_form from '@widgets/emitempl/main3-form/main3-form.vue'; /** * 损溢单 * * @export * @class EMITEMPLEditView9_EditMode * @extends {EMITEMPLEditView9_EditModeBase} */ @Component({ components: { view_form, }, beforeRouteEnter: (to: any, from: any, next: any) => { next((vm: any) => { vm.$store.commit('addCurPageViewtag', { fullPath: to.fullPath, viewtag: vm.viewtag }); }); }, }) export default class EMITEMPLEditView9_EditMode extends EMITEMPLEditView9_EditModeBase { } </script>