other-config.component.html 969 B

1234567891011121314151617181920212223242526
  1. <div class="incidentConfig">
  2. <div class="tagsAndTemplete">
  3. <div class="tags">
  4. <div><i class="icon_transport transport-peizhizhongxin"></i>配置中心&emsp;&gt;&emsp;第三方配置</div>
  5. <div class="tagList">
  6. <span *ngFor="let tag of tagList" [ngClass]="{ active: activeTagId === tag.id }" (click)="clickTag(tag)">{{ tag.name }}</span>
  7. </div>
  8. <button nz-button class="btn default" (click)="goBack()">返回</button>
  9. </div>
  10. </div>
  11. <!-- 呼叫中心 -->
  12. <ng-container *ngIf="activeTagId === 1">
  13. <app-configuration-callcenter></app-configuration-callcenter>
  14. </ng-container>
  15. <!-- 微信配置 -->
  16. <ng-container *ngIf="activeTagId === 2">
  17. <app-configuration-wechat></app-configuration-wechat>
  18. </ng-container>
  19. <!-- 数据字典 -->
  20. <ng-container *ngIf="activeTagId === 3">
  21. <app-configuration-dictionary [dictionaryKeyList]="dictionaryKeyList"></app-configuration-dictionary>
  22. </ng-container>
  23. </div>