chore: 增加妇幼生殖VIP相关修改

- 将manifest.json中的版本号更新至1.0.63
- 调整baseUrl配置以使用本地开发环境
- 优化VIP权限描述,新增“妇幼生殖”分类
- 更新相关页面中的VIP课程描述,明确不包含论坛内容
This commit is contained in:
2026-05-20 13:27:46 +08:00
parent df34c1ad48
commit 8d46ee78d3
6 changed files with 19 additions and 11 deletions

View File

@@ -3,8 +3,8 @@ 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.131:9200/pb/"; // 王亚男
// baseUrl = "https://api.nuttyreading.com/"; // 线上正式
baseUrl = "http://192.168.110.131:9200/pb/"; // 王亚男
} else if (process.env.NODE_ENV === 'production') {
// 生产环境11
//baseUrl = "http://192.168.110.100:9200/pb/"; // 张川川

View File

@@ -352,7 +352,8 @@ $http.dataFactory = async function(res) {
// 返回错误的结果(catch接受数据)
return Promise.reject({
statusCode: 0,
errMsg: "【request】" + (httpData.info || httpData.msg),
// errMsg: "【request】" + (httpData.info || httpData.msg),
errMsg: (httpData.info || httpData.msg),
data: res.data
});
}