Files
2026-08-17 11:01:21 +08:00

29 lines
534 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
const config = {
// 基础请求地址
baseUrl: '',
// 请求超时时间(ms
timeout: 15000,
// 上传文件地址
uploadUrl: '',
// token 存储键名
tokenKey: 'token',
// 用户信息存储键名
userInfoKey: 'userInfo',
// 默认分页大小
pageSize: 10,
}
// #ifdef H5
config.baseUrl = '/api'
// #endif
// #ifdef MP-WEIXIN
config.baseUrl = 'https://qhse.cncecoa.com/qhse_webapi/api'
// #endif
// #ifdef APP-PLUS
config.baseUrl = 'https://your-api-domain.com/api'
// #endif
export default config