1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
| /*
| * @Author: 李喆(开发组) lzhe@yxqiche.com
| * @Date: 2025-06-11 10:04:08
| * @LastEditors: 李喆(开发组) lzhe@yxqiche.com
| * @LastEditTime: 2025-07-07 17:46:08
| * @FilePath: /dev-optimize-0710-lzhe/Users/test/MDM/mdmweb/src/config/website.js
| * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
| */
| /**
| * 全局配置文件
| */
| export default {
| title: 'MDM',
| logo: 'X',
| key: 'saber', //配置主键,目前用于存储
| indexTitle: 'MDM管理平台',
| clientId: 'saber3', // 客户端id
| clientSecret: 'saber3_secret', // 客户端密钥
| tenantMode: false, // 是否开启租户模式
| tenantId: '000000', // 管理组租户编号
| captchaMode: false, // 是否开启验证码模式
| switchMode: false, // 是否开启登录切换角色部门
| lockPage: '/lock',
| tokenTime: 3000,
| tokenHeader: 'Blade-Auth',
| //HTTP状态码白名单
| statusWhiteList: [],
| //配置首页不可关闭
| setting: {
| sidebar: 'vertical',
| tag: true,
| debug: true,
| collapse: true,
| search: true,
| color: true,
| lock: true,
| screenshot: true,
| fullscreen: true,
| theme: true,
| menu: true,
| },
| //首页配置
| fistPage: {
| name: '首页',
| path: '/wel/index',
| },
| //配置菜单的属性
| menu: {
| iconDefault: 'icon-caidan',
| label: 'name',
| path: 'path',
| icon: 'source',
| children: 'children',
| query: 'query',
| href: 'path',
| meta: 'meta',
| },
| //水印配置
| watermark: {
| mode: false,
| text: 'MDM',
| },
| //oauth2配置
| oauth2: {
| // 是否开启注册功能
| registerMode: true,
| // 使用后端工程 @org.springblade.test.Sm2KeyGenerator 获取
| publicKey: '04cd1b295876209215161da4620bbdea7ee96654ed8a6306ea6f75acd2715c4cbcac26679f13a027114dc83ef4f743a8d998defbc5cea2a0fd1a39750f684cf093',
| // 第三方系统授权地址
| authUrl: 'http://localhost/blade-auth/oauth/render',
| // 单点登录系统认证
| ssoMode: false, // 是否开启单点登录功能
| ssoBaseUrl: 'http://localhost:8100', // 单点登录系统地址(cloud端口为8100,boot端口为80)
| ssoAuthUrl: '/oauth/authorize?client_id=saber3&response_type=code&redirect_uri=', // 单点登录授权地址
| ssoLogoutUrl: '/oauth/authorize/logout?redirect_uri=', // 单点登录退出地址
| redirectUri: 'http://localhost:2888/login', // 单点登录回调地址(Saber服务的登录界面地址)
| },
| //设计器配置
| design: {
| // 流程设计器类型(true->nutflow,false->flowable)
| designMode: true,
| // 流程设计器地址(flowable模式)
| designUrl: 'http://localhost:9999',
| // 报表设计器地址(cloud端口为8108,boot端口为80)
| reportUrl: 'http://localhost:8108/ureport',
| // 规则设计引擎地址
| edgeUrl: 'http://localhost:1880',
| },
| };
|
|