You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1.3 KiB

3 months ago
  1. // +----------------------------------------------------------------------
  2. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  3. // +----------------------------------------------------------------------
  4. // | Copyright (c) 2016~2025 https://www.crmeb.com All rights reserved.
  5. // +----------------------------------------------------------------------
  6. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  7. // +----------------------------------------------------------------------
  8. // | Author: CRMEB Team <admin@crmeb.com>
  9. // +----------------------------------------------------------------------
  10. //移动端商城API
  11. let domain = 'http://127.0.0.1:8086'
  12. // let domain = 'https://apif.java.crmeb.net'
  13. module.exports = {
  14. // 请求域名 格式: https://您的域名
  15. // #ifdef MP || APP-PLUS
  16. // HTTP_REQUEST_URL:'',
  17. HTTP_REQUEST_URL: domain,
  18. // H5商城地址
  19. HTTP_H5_URL: 'http://java.crmeb.net',
  20. // #endif
  21. // #ifdef H5
  22. HTTP_REQUEST_URL:domain,
  23. // #endif
  24. HEADER:{
  25. 'content-type': 'application/json'
  26. },
  27. HEADERPARAMS:{
  28. 'content-type': 'application/x-www-form-urlencoded'
  29. },
  30. // 回话密钥名称 请勿修改此配置
  31. TOKENNAME: 'Authori-zation',
  32. // 缓存时间 0 永久
  33. EXPIRE:0,
  34. //分页最多显示条数
  35. LIMIT: 10
  36. };