hookehuyr

fix: 切换BASE_URL到正式服务器环境

1 /* 1 /*
2 * @Date: 2022-09-19 14:11:06 2 * @Date: 2022-09-19 14:11:06
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2025-07-08 17:44:47 4 + * @LastEditTime: 2025-08-12 09:21:10
5 * @FilePath: /jgdl/src/utils/config.js 5 * @FilePath: /jgdl/src/utils/config.js
6 * @Description: 文件描述 6 * @Description: 文件描述
7 */ 7 */
8 // TAG:服务器环境配置 8 // TAG:服务器环境配置
9 -const BASE_URL = "https://oa-dev.onwall.cn"; // 测试服务器 9 +// const BASE_URL = "https://oa-dev.onwall.cn"; // 测试服务器
10 -// const BASE_URL = "https://oa.onwall.cn"; // 正式服务器 10 +const BASE_URL = "https://oa.onwall.cn"; // 正式服务器
11 11
12 export default BASE_URL 12 export default BASE_URL
13 13
......