12345678910111213141516171819202122232425 |
- //主要配置
- export default {
- title: '泓创智诚',
- desc: '泓创智诚数字工程档案平台',
- indexTitle: '泓创智诚',
- key: 'client', // 配置主键,目前用于存储
- clientId: 'client', // 客户端id
- clientSecret: 'client_secret', // 客户端密钥
- tenantMode: true, // 是否开启租户模式
- tenantId: "000000", // 管理组租户编号
- captchaMode: false, // 是否开启验证码模式
- switchMode: false, // 是否开启部门切换模式
- tokenTime: 3000,
- tokenHeader: 'Blade-Auth',
- tokenKey: 'client-access-token',
- refreshTokenKey: 'client-refresh-token',
- statusWhiteList: [], //http的status默认放行列表
- ossUrl: 'https://bladex-test-info.oss-cn-chengdu.aliyuncs.com', //oss地址
- smsPhone: '', //测试接受短信验证码的手机号
- dev_version: '202209291855', //开发版本号
- prod_host: 'http://47.110.251.215:8090', //线上
- //dev_host: 'http://192.168.4.6', //黄键楠
- dev_host: 'http://192.168.0.118', //祝炜
- //dev_host: 'http://192.168.0.155', //刘依程
- }
|