Showing
1 changed file
with
5 additions
and
1 deletions
| @@ -20,7 +20,8 @@ import { ZhCarouselLayout01 } from './compview/ZhCarouselLayout01'; | @@ -20,7 +20,8 @@ import { ZhCarouselLayout01 } from './compview/ZhCarouselLayout01'; | ||
| 20 | import { CardParser } from './CardParser'; | 20 | import { CardParser } from './CardParser'; |
| 21 | import { LiveHorizontalReservationComponent } from './view/LiveHorizontalReservationComponent'; | 21 | import { LiveHorizontalReservationComponent } from './view/LiveHorizontalReservationComponent'; |
| 22 | import { ZhGridLayout02 } from './compview/ZhGridLayout02'; | 22 | import { ZhGridLayout02 } from './compview/ZhGridLayout02'; |
| 23 | -import { Card5Component } from './cardview/Card5Component' | 23 | +import { Card5Component } from './cardview/Card5Component'; |
| 24 | +import { Card2Component } from './cardview/Card2Component'; | ||
| 24 | import { WDRouterPage, WDRouterRule } from 'wdRouter/Index'; | 25 | import { WDRouterPage, WDRouterRule } from 'wdRouter/Index'; |
| 25 | 26 | ||
| 26 | /** | 27 | /** |
| @@ -71,6 +72,9 @@ export struct CompParser { | @@ -71,6 +72,9 @@ export struct CompParser { | ||
| 71 | } else if (compDTO.compStyle === CompStyle.Zh_Single_Column_02) { | 72 | } else if (compDTO.compStyle === CompStyle.Zh_Single_Column_02) { |
| 72 | //头图卡 和comStyle 2相同, | 73 | //头图卡 和comStyle 2相同, |
| 73 | Card5Component({ contentDTO: compDTO.operDataList[0] }) | 74 | Card5Component({ contentDTO: compDTO.operDataList[0] }) |
| 75 | + } else if (compDTO.compStyle === CompStyle.Zh_Single_Column_03) { | ||
| 76 | + // 大图卡 | ||
| 77 | + Card2Component({ contentDTO: compDTO.operDataList[0] }) | ||
| 74 | } else if (compDTO.compStyle === CompStyle.Zh_Single_Column_04) { | 78 | } else if (compDTO.compStyle === CompStyle.Zh_Single_Column_04) { |
| 75 | ZhSingleColumn04({ compDTO: compDTO }) | 79 | ZhSingleColumn04({ compDTO: compDTO }) |
| 76 | } else if (compDTO.compStyle === CompStyle.Zh_Single_Column_05) { | 80 | } else if (compDTO.compStyle === CompStyle.Zh_Single_Column_05) { |
-
Please register or login to post a comment