| 123456789101112131415161718192021222324252627282930313233 |
- /**
- * 全局变量配置
- */
- module.exports = {
- // 应用名
- name: 'shzhjcyjptywxt',
- // 应用logo,支持本地路径和网络路径
- logo: '/static/images/logo.png',
- // 版本号
- version: '1.1.0',
- userType: 'app',
- // 开发环境接口Url
- devUrl: 'http://127.0.0.1:40004',
- // 线上环境接口Url
- //prodUrl: 'https://wx.dahengsi.com:44301/api',
- prodUrl: 'https://nmwx.dahengsi.com:20001/api',
- // 后端数据的接收方式application/json;charset=UTF-8或者application/x-www-form-urlencoded;charset=UTF-8
- contentType: 'application/json;charset=UTF-8',
- // 后端返回状态码
- codeName: 'code',
- // 操作正常code
- successCode: 200,
- // 登录失效code
- invalidCode: 401,
- // 客户端ID
- clientId: 'shzhjcyjptywxt',
- // 客户端密钥
- clientSecret: 'shzhjcyjptywxt_secret_82828800',
- //oss: 'https://wx.dahengsi.com:44301/oss/galaxy/',
- oss: 'https://nmwx.dahengsi.com:20001/oss/galaxy/',
- //img: 'https://wx.dahengsi.com:44301/img/',
- img: 'https://nmwx.dahengsi.com:20001/img/',
- }
|