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.
21 lines
489 B
21 lines
489 B
2 years ago
|
module.exports = {
|
||
|
//是否开发模式
|
||
|
IS_DEV: true,
|
||
|
// 开发环境地址
|
||
|
DEV_URL: "http://aps-api.njrzwl.cn/app",
|
||
|
// 生产环境地址
|
||
|
PRO_URL: "http://aps-api.njrzwl.cn/app",
|
||
|
//请求超时时间
|
||
|
TIMEOUT:60000,
|
||
|
//是否开启请求日志
|
||
|
REQUEST_LOG:false,
|
||
|
//是否开启请求异常提示
|
||
|
CATCH_MESS:false,
|
||
|
//请求时提示文字
|
||
|
LOADING_TEXT:'正在加载',
|
||
|
//是否需要签名
|
||
|
IS_SECRET:false,
|
||
|
//签名字符串
|
||
|
APP_SECRET:"uniapp!@#2022",
|
||
|
};
|