为保持开发环境一致性,将管理端与商家端的 API 基础地址均从 localhost 修改为生产环境地址。

说明:
fix(config):配置类修复,保留 git commit 前缀规范
manager:管理端
seller:商家端
localhost:本地地址
This commit is contained in:
田香琪
2026-08-17 11:18:08 +08:00
parent 6552767823
commit b9d48fab05
2 changed files with 2 additions and 2 deletions

View File

@@ -3,7 +3,7 @@ var BASE = {
* @description api请求基础路径
*/
API_DEV: {
manager: "http://127.0.0.1:8887",
manager: "https://admin-api.pickmall.cn",
},
API_PROD: {
manager: "https://admin-api.pickmall.cn"