sys-permissionedit-view2.vue 809 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import SYS_PERMISSIONEditView2Base from './sys-permissionedit-view2-base.vue';

import view_form from '@widgets/sys-permission/main-form/main-form.vue';
import view_drbar from '@widgets/sys-permission/default-drbar/default-drbar.vue';
@Component({
    components: {
        view_form, 
        view_drbar, 
    },
    beforeRouteEnter: (to: any, from: any, next: any) => {
        next((vm: any) => {
14 15 16
            if(!Object.is(vm.navModel,"route")){
                vm.initNavDataWithTab(vm.viewCacheData);
            }
17 18 19 20 21 22 23 24
            vm.$store.commit('addCurPageViewtag', { fullPath: to.fullPath, viewtag: vm.viewtag });
        });
    },
})
export default class SYS_PERMISSIONEditView2 extends SYS_PERMISSIONEditView2Base {

}
</script>