123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- import { defineConfig } from '@umijs/max';
- export default defineConfig({
- antd: {},
- dva: {},
- access: {},
- model: {},
- initialState: {},
- request: {},
- layout: {
- title: '金科环境数字化平台',
- locale: false,
- },
- proxy: {
- '/api': {
- // target: 'http://47.96.12.136:8788/',
- target: 'http://47.96.12.136:8896/',
- // target: 'http://120.55.44.4:8900/',
- changeOrigin: true,
- },
- },
- routes: [
- {
- path: '/',
- redirect: '/home',
- },
- {
- name: '首页',
- path: '/home',
- component: './Home/index',
- layout: false,
- },
- {
- name: '流程图管理',
- path: '/flow',
- hideChildrenInMenu: true,
- routes: [
- {
- path: '/flow',
- redirect: '/flow/list',
- },
- {
- name: '流程图列表',
- path: '/flow/list',
- component: './Flow/index',
- },
- {
- name: '流程图详情',
- path: '/flow/audit',
- component: './Flow/Audit',
- hideInMenu: true,
- },
- ],
- },
- {
- name: 'OA审批',
- path: '/oa',
- hideChildrenInMenu: true,
- routes: [
- {
- path: '/oa',
- redirect: '/oa/list',
- },
- {
- name: 'OA审批',
- path: '/oa/list',
- component: './Flow/Oa',
- },
- {
- name: 'OA详情',
- path: '/oa/detail/:oaId',
- component: './Flow/OaDetail',
- },
- ],
- },
- {
- name: '权限演示',
- path: '/access',
- component: './Access',
- },
- {
- name: 'CRUD 示例',
- path: '/table',
- component: './Table',
- },
- {
- name: '登录',
- path: '/login',
- component: './Login/index',
- layout: false,
- },
- {
- name: '文档管理',
- path: '/fileManagement',
- component: './FileManagement/index',
- },
- {
- name: '合同管理',
- path: '/contract-manager',
- component: './ContractManager/index',
- },
- {
- name: '授权管理',
- path: '/permission',
- routes: [
- {
- name: '菜单授权',
- path: '/permission/menu',
- component: './Permission/menu',
- },
- {
- name: '文档管理',
- path: '/permission/file',
- component: './Permission/file',
- },
- ],
- },
- ],
- npmClient: 'yarn',
- });
|