ibzorganization-pickup-grid-view.vue 737 字节
Newer Older
ibizdev's avatar
ibizdev committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
<script lang='tsx'>
import { Component } from 'vue-property-decorator';
import IBZOrganizationPickupGridViewBase from './ibzorganization-pickup-grid-view-base.vue';

import view_grid from '@widgets/ibzorganization/main-grid/main-grid.vue';
import view_searchform from '@widgets/ibzorganization/default-searchform/default-searchform.vue';
@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 IBZOrganizationPickupGridView extends IBZOrganizationPickupGridViewBase {

}
</script>