Showing
2 changed files
with
5 additions
and
2 deletions
| @@ -186,7 +186,8 @@ export struct CardParser { | @@ -186,7 +186,8 @@ export struct CardParser { | ||
| 186 | contentDTO, | 186 | contentDTO, |
| 187 | compDTO: this.compDTO, | 187 | compDTO: this.compDTO, |
| 188 | pageId: this.pageId, | 188 | pageId: this.pageId, |
| 189 | - pageName: this.pageName | 189 | + pageName: this.pageName, |
| 190 | + isPeopleShipHome:this.isPeopleShipHome | ||
| 190 | }) | 191 | }) |
| 191 | this.getBehindDivider() | 192 | this.getBehindDivider() |
| 192 | } else if (contentDTO.appStyle === CompStyle.Card_20) { | 193 | } else if (contentDTO.appStyle === CompStyle.Card_20) { |
| @@ -23,6 +23,7 @@ export struct Card19Component { | @@ -23,6 +23,7 @@ export struct Card19Component { | ||
| 23 | @State clicked: boolean = false; | 23 | @State clicked: boolean = false; |
| 24 | @State titleMarked: boolean = false; | 24 | @State titleMarked: boolean = false; |
| 25 | @State textArr: textItem[] = [] | 25 | @State textArr: textItem[] = [] |
| 26 | + isPeopleShipHome: boolean = false; | ||
| 26 | 27 | ||
| 27 | async aboutToAppear(): Promise<void> { | 28 | async aboutToAppear(): Promise<void> { |
| 28 | this.titleInit(); | 29 | this.titleInit(); |
| @@ -47,7 +48,8 @@ export struct Card19Component { | @@ -47,7 +48,8 @@ export struct Card19Component { | ||
| 47 | contentDTO: this.contentDTO, | 48 | contentDTO: this.contentDTO, |
| 48 | compDTO: this.compDTO, | 49 | compDTO: this.compDTO, |
| 49 | pageId: this.pageId, | 50 | pageId: this.pageId, |
| 50 | - pageName: this.pageName | 51 | + pageName: this.pageName, |
| 52 | + isPeopleShipHome:this.isPeopleShipHome | ||
| 51 | } | 53 | } |
| 52 | ) // 标题 | 54 | ) // 标题 |
| 53 | if (this.contentDTO.newsTitle) { | 55 | if (this.contentDTO.newsTitle) { |
-
Please register or login to post a comment