12345678910111213141516171819202122 |
- export default {
- title: "芯片扫描",
- key: 'hid_app', //配置主键,目前用于存储
- clientId: 'hid_app', // 客户端id
- clientSecret: 'hid_app_secret', // 客户端密钥
- platform: 'hid_app', //app的key,用于检测升级
- tenantMode: true, // 是否开启租户模式
- tenantId: "000000", // 管理组租户编号
- captchaMode: false, // 是否开启验证码模式
- switchMode: false, // 是否开启部门切换模式
- lockPage: '/lock',
- tokenTime: 1700,
- //测试环境
- testApi: 'http://39.108.216.210:8090',
- //正式环境
- baseApi: 'http://39.108.216.210:8090',
- //H5测试设置
- vite: {
- port: '3001',
- host: '0.0.0.0'
- }
- }
|