feat: 新增广告唯一标识并优化相关功能

- 在广告模型中添加唯一标识字段
-优化广告编辑界面布局和提示文本
- 调整搜索按钮禁用逻辑,移除与 websiteId 相关的条件
- 修复优惠券列表中的数值格式化问题
- 优化经销商申请编辑界面布局
- 更新环境变量配置,注释掉 API URL
This commit is contained in:
2025-08-22 12:28:39 +08:00
parent 9aaaec8c26
commit d65cbc5d65
22 changed files with 62 additions and 46 deletions

View File

@@ -65,5 +65,7 @@ export interface ShopCoupon {
*/
export interface ShopCouponParam extends PageParam {
id?: number;
name?: string;
type?: number;
keywords?: string;
}