This commit is contained in:
wtq
2025-11-14 10:30:53 +08:00
commit 6bc72db0ee
348 changed files with 53952 additions and 0 deletions

21
src/api/config.ts Normal file
View File

@@ -0,0 +1,21 @@
/**
* model: 配置文件
* 作者zhang-shu-wei
* 日期2022年8月10日
* 邮箱2966211270@qq.com
*/
let url_config = '' // 用户登录
if (process.env.NODE_ENV === 'development') {
// 开发环境 配置域名
console.log('~开发环境~')
url_config = "https://wx.jxc4.com/jxgy"
} else {
// 生产环境
console.log('~生产环境~')
url_config = "https://wx.jxc4.com/jxgy"
}
export default url_config