123456789101112131415161718192021222324252627282930313233 |
- import config from './index.json'
- //主要配置
- export default {
- title: '档案管理 泓创智诚',
- desc: '泓创智诚数字工程档案平台',
- key: 'archives', // 配置主键,目前用于存储
- clientId: 'archives', // 客户端id
- clientSecret: 'archives_secret', // 客户端密钥
- tenantMode: true, // 是否开启租户模式
- tenantId: "000000", // 管理组租户编号
- captchaMode: false, // 是否开启验证码模式
- switchMode: false, // 是否开启部门切换模式
- tokenTime: 3000,
- tokenHeader: 'Blade-Auth',
- tokenKey: 'archives-access-token',
- refreshTokenKey: 'archives-refresh-token',
- statusWhiteList: [], //http的status默认放行列表
- role_id: "1610526744728031234", //档案总管理角色组ID
- isLog: 'auto', //是否打印日志
- ...config,
- ossUrl: 'https://bladex-chongqing-info.oss-cn-hangzhou.aliyuncs.com', //oss地址
- // socket: 'wss://business.hcxxy.com/wss/websocket/', //测试线上
- //socket: 'ws://192.168.0.113:8686/websocket/archive/', //王文龙
- // socket: 'ws://archives.hczcxx.cn/websocket/archive/',
- socket: 'ws://archives.hczcxx.cn/wss/websocket/archive/'
-
- //这里不再支持配置请求地址,请在 src/config/index.json 文件中配置。
- //相关参数,可查阅 src/config/index.md 文件说明
- //target: 'http://47.110.251.215:8090', //测试线上
- //target: 'http://127.0.0.1:8090', //打包线上http://120.79.83.156/
- }
|