refactor: 更新API路径以使用buyer API

This commit is contained in:
pikachu1995@126.com
2026-07-13 16:51:57 +08:00
parent 4d0b0fb5e4
commit 3ec61f41bc
6 changed files with 23 additions and 29 deletions

View File

@@ -37,7 +37,7 @@ export function getLogistics() {
*/
export function getAddressCode(cityCode, townName) {
return http.request({
url: api.common + "/common/region/region",
url: `${api.buyer}/common/region/region`,
method: Method.GET,
needToken: true,
params: { cityCode, townName },

View File

@@ -1,5 +1,5 @@
/**
* 公共API
* 公共 API(由 buyer-api 提供)
*/
import { http, Method } from "@/utils/request.js";
import api from "@/config/api.js";
@@ -10,16 +10,16 @@ import api from "@/config/api.js";
*/
export function getRegionsById(id = 0) {
return http.request({
url: `${api.common}/common/region/item/${id}`,
url: `${api.buyer}/common/region/item/${id}`,
method: Method.GET,
message: false,
});
}
// 获取IM接口前缀
// 获取 IM 接口前缀
export function getIMDetail() {
return http.request({
url: `${api.common}/IM`,
url: `${api.buyer}/common/IM`,
method: Method.GET,
message: false,
});
@@ -29,14 +29,14 @@ export function getIMDetail() {
* 文件上传地址
* @type {string}
*/
export const upload = api.common + "/common/upload/file";
export const upload = `${api.buyer}/common/upload/file`;
/**
* 获取主题色配置
*/
export function getThemeSetting() {
return http.request({
url: `${api.common}/common/common/site/theme`,
url: `${api.buyer}/common/site/theme`,
method: Method.GET,
message: false,
});

View File

@@ -15,11 +15,11 @@ import { http, Method } from "@/utils/request.js";
}
/**
* 从ES中获取相关商品品牌名称分类名称及属性
* 获取商品搜索筛选条件
*/
export function getGoodsRelated(params) {
return http.request({
url: `/goods/goods/es/related`,
url: `/goods/goods/search/related`,
method: Method.GET,
params,
});
@@ -56,7 +56,7 @@ export function getGoodsRelated(params) {
*/
export function getGoodsList(params) {
return http.request({
url: "/goods/goods/es",
url: "/goods/goods/search",
method: Method.GET,
params,
});

View File

@@ -59,7 +59,7 @@ export function getAutoCoup(){
*/
export function sendMobile(mobile,type='LOGIN') {
return http.request({
url: `${api.common}/common/sms/${type}/${mobile}`,
url: `${api.buyer}/common/sms/${type}/${mobile}`,
method: "GET",
});
}