feat(project): restore product labels page and split modules

This commit is contained in:
2026-02-21 10:17:58 +08:00
parent 83ea84bf11
commit a53db5f0a4
17 changed files with 1341 additions and 434 deletions

View File

@@ -386,11 +386,9 @@ export interface BindProductAddonGroupProductsDto {
/** 商品标签。 */
export interface ProductLabelDto {
color: string;
description: string;
id: string;
name: string;
productCount: number;
productIds: string[];
sort: number;
status: ProductSwitchStatus;
updatedAt: string;
@@ -406,10 +404,8 @@ export interface ProductLabelQuery {
/** 保存标签参数。 */
export interface SaveProductLabelDto {
color: string;
description: string;
id?: string;
name: string;
productIds: string[];
sort: number;
status: ProductSwitchStatus;
storeId: string;