<script lang='tsx'> import { Component } from 'vue-property-decorator'; import IBIZSample0021Usr1114433946WFDynaEditViewBase from './ibizsample0021-usr1114433946-wfdyna-edit-view-base.vue'; import view_wfform_operationform from '@widgets/ibizsample0021/operation-form-form/operation-form-form.vue'; import view_form from '@widgets/ibizsample0021/usr1114790802-form/usr1114790802-form.vue'; // 基于 @VIEW/实体工作流动态编辑视图/VIEW.vue.ftl 生成 @Component({ components: { view_wfform_operationform, view_form, }, beforeRouteEnter: (to: any, from: any, next: any) => { next((vm: any) => { if(!Object.is(vm.navModel,"route")){ vm.initNavDataWithTab(vm.viewCacheData); } vm.$store.commit('addCurPageViewtag', { fullPath: to.fullPath, viewtag: vm.viewtag }); }); }, }) export default class IBIZSample0021Usr1114433946WFDynaEditView extends IBIZSample0021Usr1114433946WFDynaEditViewBase { } </script>