This commit is contained in:
2025-03-10 18:34:00 +08:00
7 changed files with 13 additions and 13 deletions

View File

@@ -53,7 +53,7 @@ const Api = {
},
onOff(id: number | string) {
return request<any>({
url: `${baseURL}/on-off/`,
url: `${baseURL}/onOff/`,
method: "post",
});
},

View File

@@ -44,7 +44,7 @@ const AuthAPI = {
// 上下架
onOff(data: any) {
return request<any, Responseres>({
url: `${baseURL}/on-off`,
url: `${baseURL}/onOff`,
method: "post",
data,
});
@@ -371,4 +371,4 @@ export interface SkuList {
*/
weight: null;
[property: string]: any;
}
}