fix: 解决控制台报错

- 将baseUrl配置调整为线上正式环境
- 移除medicaldes页面中不必要的@lower事件监听
- 优化common-list组件的使用,简化代码结构
- 调整样式注释,清理不必要的样式代码
This commit is contained in:
2026-03-27 10:16:29 +08:00
parent bb1d9ef281
commit 7523441a17
2 changed files with 26 additions and 12 deletions

View File

@@ -2,8 +2,8 @@ let baseUrl = "";
let socketUrl = "";
if (process.env.NODE_ENV === 'development') {
// 开发环境
baseUrl = "http://192.168.110.100:9200/pb/"; // 张川川
// baseUrl = "https://api.nuttyreading.com/"; // 线上正式
// baseUrl = "http://192.168.110.100:9200/pb/"; // 张川川
baseUrl = "https://api.nuttyreading.com/"; // 线上正式
} else if (process.env.NODE_ENV === 'production') {
// 生产环境11
//baseUrl = "http://192.168.110.100:9200/pb/"; // 张川川