index.js 806 B

12345678910111213141516171819202122
  1. export default {
  2. title: "芯片扫描",
  3. key: 'hid_app', //配置主键,目前用于存储
  4. clientId: 'hid_app', // 客户端id
  5. clientSecret: 'hid_app_secret', // 客户端密钥
  6. platform: 'hid_app', //app的key,用于检测升级
  7. tenantMode: true, // 是否开启租户模式
  8. tenantId: "000000", // 管理组租户编号
  9. captchaMode: false, // 是否开启验证码模式
  10. switchMode: false, // 是否开启部门切换模式
  11. lockPage: '/lock',
  12. tokenTime: 1700,
  13. //测试环境
  14. testApi: 'http://39.108.216.210:8090',
  15. //正式环境
  16. baseApi: 'http://39.108.216.210:8090',
  17. //H5测试设置
  18. vite: {
  19. port: '3001',
  20. host: '0.0.0.0'
  21. }
  22. }