setting.js 430 B

123456789101112131415
  1. /**
  2. * 全局变量配置
  3. */
  4. module.exports = {
  5. // 开发环境接口Url
  6. devUrl: 'http://192.168.8.114:1080',
  7. // 线上环境接口Url
  8. prodUrl:'https://td.echepei.com/api',
  9. // 后端数据的接收方式application/json;charset=UTF-8或者application/x-www-form-urlencoded;charset=UTF-8
  10. contentType: 'application/json;charset=UTF-8',
  11. // 客户端ID
  12. clientId: 'saber',
  13. // 客户端密钥
  14. clientSecret: 'saber_secret'
  15. }