<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import EMITEMCSEditView9Base from './emitemcsedit-view9-base.vue';

import view_form from '@widgets/emitemcs/main2-form/main2-form.vue';

/**
 * 调整单
 *
 * @export
 * @class EMITEMCSEditView9
 * @extends {EMITEMCSEditView9Base}
 */
@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 EMITEMCSEditView9 extends EMITEMCSEditView9Base { }
</script>