rebuild all

This commit is contained in:
吴红兵
2026-03-02 10:06:48 +08:00
parent c8aaeee298
commit 4167a2a94d
12 changed files with 836 additions and 4 deletions

View File

@@ -11,6 +11,7 @@ import { staticRoutes, notFoundAndNoPower } from '/@/router/route';
import { initBackEndControlRoutes } from '/@/router/backEnd';
import { flowConfig } from "/@/flow/designer/config/flow-config";
import { replaceRouterRoute } from "/@/flow/support/extend";
import { NextLoading } from '/@/utils/loading';
/**
* 1、前端控制路由时isRequestRoutes 为 false需要写 roles需要走 setFilterRoute 方法。
@@ -148,6 +149,7 @@ router.beforeEach(async (to, from, next) => {
// 路由加载后
router.afterEach(() => {
NProgress.done();
NextLoading.done();
});
// 导出路由

View File

@@ -99,6 +99,14 @@ export const staticRoutes: Array<RouteRecordRaw> = [
isAuth: true,
},
},
{
path: '/purchase/purchasingrequisition/add',
name: 'purchase.purchasingrequisition.add',
component: () => import('/@/views/purchase/purchasingrequisition/add.vue'),
meta: {
isAuth: true,
},
},
...staticRoutesFlow
];