打脸公告:按钮位置

This commit is contained in:
luying
2022-08-04 19:33:49 +08:00
parent 0449983cd1
commit 0f1252bf64

View File

@@ -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;
}