This commit is contained in:
xingyu4j
2025-08-19 17:34:00 +08:00
165 changed files with 15467 additions and 177 deletions

View File

@@ -16,6 +16,7 @@ export namespace InfraFileConfigApi {
accessKey?: string;
accessSecret?: string;
pathStyle?: boolean;
enablePublicAccess?: boolean;
domain: string;
}

View File

@@ -48,6 +48,8 @@ export namespace MallCombinationActivityApi {
combinationPrice?: number;
/** 商品列表 */
products: CombinationProduct[];
/** 图片 */
picUrl?: string;
}
/** 扩展 SKU 配置 */

View File

@@ -52,7 +52,7 @@ export function deleteDiyPage(id: number) {
/** 获得装修页面属性 */
export function getDiyPageProperty(id: number) {
return requestClient.get<string>(`/promotion/diy-page/get-property?id=${id}`);
return requestClient.get(`/promotion/diy-page/get-property?id=${id}`);
}
/** 更新装修页面属性 */

View File

@@ -55,6 +55,8 @@ export namespace MallSeckillActivityApi {
seckillPrice?: number;
/** 秒杀商品列表 */
products?: SeckillProduct[];
/** 图片 */
picUrl?: string;
}
/** 扩展 SKU 配置 */