feat: 新增广告唯一标识并优化相关功能
- 在广告模型中添加唯一标识字段 -优化广告编辑界面布局和提示文本 - 调整搜索按钮禁用逻辑,移除与 websiteId 相关的条件 - 修复优惠券列表中的数值格式化问题 - 优化经销商申请编辑界面布局 - 更新环境变量配置,注释掉 API URL
This commit is contained in:
@@ -8,6 +8,8 @@ export interface CmsAd {
|
||||
adId?: number;
|
||||
// 类型
|
||||
type?: number;
|
||||
// 唯一标识
|
||||
code?: string;
|
||||
// 栏目分类
|
||||
categoryId?: number;
|
||||
// 栏目名称
|
||||
|
||||
@@ -65,5 +65,7 @@ export interface ShopCoupon {
|
||||
*/
|
||||
export interface ShopCouponParam extends PageParam {
|
||||
id?: number;
|
||||
name?: string;
|
||||
type?: number;
|
||||
keywords?: string;
|
||||
}
|
||||
|
||||
@@ -12,6 +12,10 @@ export interface ShopGift {
|
||||
code?: string;
|
||||
// 商品ID
|
||||
goodsId?: number;
|
||||
// 商品名称
|
||||
goodsName?: string;
|
||||
// 面值
|
||||
faceValue?: string;
|
||||
// 领取时间
|
||||
takeTime?: string;
|
||||
// 核销时间
|
||||
|
||||
Reference in New Issue
Block a user