From 83f145767e46e285dd7dd7f1811ccb0639e09186 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?lemon=E6=A9=AA?= <17633066053@163.com> Date: Thu, 12 Jan 2023 11:07:25 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20=E4=BF=AE=E6=94=B9config=20API=5FDE?= =?UTF-8?q?V=E4=B8=BA=E7=BA=BF=E4=B8=8A=E6=8E=A9=E9=A5=B0=E7=AB=99?= =?UTF-8?q?=E7=82=B9api?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- manager/public/config.js | 8 ++++---- seller/public/config.js | 12 ++++++------ 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/manager/public/config.js b/manager/public/config.js index 7ef1cf91..ada826fc 100644 --- a/manager/public/config.js +++ b/manager/public/config.js @@ -3,10 +3,10 @@ var BASE = { * @description api请求基础路径 */ API_DEV: { - common: "http://192.168.0.113:8890", - buyer: "http://192.168.0.113:8888", - seller: "http://192.168.0.113:8889", - manager: "http://192.168.0.113:8887" + common: "https://common-api.pickmall.cn", + buyer: "https://buyer-api.pickmall.cn", + seller: "https://store-api.pickmall.cn", + manager: "https://admin-api.pickmall.cn" }, API_PROD: { common: "https://common-api.pickmall.cn", diff --git a/seller/public/config.js b/seller/public/config.js index 8e0e70ba..87161bcb 100644 --- a/seller/public/config.js +++ b/seller/public/config.js @@ -3,16 +3,16 @@ var BASE = { * @description api请求基础路径 */ API_DEV: { - common: "http://192.168.0.113:8890", - buyer: "http://192.168.0.113:8888", - seller: "http://192.168.0.113:8889", - manager: "http://192.168.0.113:8887" + common: "https://common-api.pickmall.cn", + buyer: "https://buyer-api.pickmall.cn", + seller: "https://store-api.pickmall.cn", + manager: "https://admin-api.pickmall.cn", }, API_PROD: { common: "https://common-api.pickmall.cn", buyer: "https://buyer-api.pickmall.cn", seller: "https://store-api.pickmall.cn", - manager: "https://admin-api.pickmall.cn" + manager: "https://admin-api.pickmall.cn", }, /** * @description // 跳转买家端地址 pc端 @@ -25,5 +25,5 @@ var BASE = { /** * @description api请求基础路径前缀 */ - PREFIX: "/store" + PREFIX: "/store", };