app.js 402 B

123456789101112131415161718
  1. module.exports = {
  2. // 请求域名 格式: https://您的域名
  3. // #ifdef MP
  4. HTTP_REQUEST_URL:'https://admin.crmeb.net',
  5. // #endif
  6. // #ifdef H5
  7. HTTP_REQUEST_URL: window.location.protocol+"//"+window.location.host,
  8. // #endif
  9. HEADER:{
  10. 'content-type': 'application/json'
  11. },
  12. // 回话密钥名称 请勿修改此配置
  13. TOKENNAME: 'Authori-zation',
  14. // 缓存时间 0 永久
  15. EXPIRE:0,
  16. };