From 0f1252bf642297ecacedc0275beb5baf7d44ac5c Mon Sep 17 00:00:00 2001 From: luying Date: Thu, 4 Aug 2022 19:33:49 +0800 Subject: [PATCH] =?UTF-8?q?=E6=89=93=E8=84=B8=E5=85=AC=E5=91=8A=EF=BC=9A?= =?UTF-8?q?=E6=8C=89=E9=92=AE=E4=BD=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- shared/domain/activityField/popNotice.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/shared/domain/activityField/popNotice.ts b/shared/domain/activityField/popNotice.ts index a8cde3a2b..226846ddc 100644 --- a/shared/domain/activityField/popNotice.ts +++ b/shared/domain/activityField/popNotice.ts @@ -8,6 +8,7 @@ interface PopNoticeInDb { skip: string; // 前往 sysType: number; // dic_zyz_systemOpenTime的id,功能开启 timePosition: string; // 控制公告持续时间的显示位置'&'表示不显示持续时间 + btnPosition: string; // 按钮位置 time: string; // 公告持续时间 } @@ -21,6 +22,7 @@ interface PopNoticeInDb { skip: string; // 前往 sysType: number; // dic_zyz_systemOpenTime的id,功能开启 timePosition: string; // 控制公告持续时间的显示位置'&'表示不显示持续时间 + btnPosition: string; // 按钮位置 time: string; // 公告持续时间 constructor(activityData: ActivityModelType, createTime: number, serverTime: number) { @@ -36,6 +38,7 @@ interface PopNoticeInDb { this.sysType = dataObj.sysType; this.skip = dataObj.skip; this.timePosition = dataObj.timePosition; + this.btnPosition = dataObj.btnPosition; this.time = dataObj.time; }