对于以下代码,将为所有“模块”调用openModulePanel。 说,我有四个模块,然后单击一个扩展面板,然后打开所有模块的发射信号。
请向我提供扩展面板上手动点击的解决方案。
规格: 角度:5.2.8 材料:5.2.5 打字稿:2.4.2
<mat-accordion *ngFor="let module of modules; let mi = index;">
<mat-expansion-panel [expanded]="miStep === mi"
(opened)="openModulePanel(module.type, lang.code, mi)"
hideToggle>
<mat-expansion-panel-header>
<mat-panel-title>
{{ module?.metaData?.displayName }}
</mat-panel-title>
</mat-panel-title>
</mat-expansion-panel-header>
</mat-expansion-panel>
</mat-accordion>