19 lines
436 B
JavaScript
19 lines
436 B
JavaScript
import http from "../utils/http";
|
|
import config from "../config/config";
|
|
|
|
/** 更新商店营业状态
|
|
* @author Seven
|
|
* @data 2025-6-25
|
|
* @returns { }
|
|
* @see https://mall.gpxscs.cn/api/admin/shop/shop-store-base/update/storeBizState
|
|
*/
|
|
|
|
export function UpdateStoreBizState(params) {
|
|
return http({
|
|
url: "shop/shop-store-base/update/storeBizState",
|
|
method: "post",
|
|
baseURL: config.adminApi,
|
|
data: params,
|
|
});
|
|
}
|