This commit is contained in:
wangshiming
2022-04-27 11:13:19 +08:00
parent 958bdabf25
commit 20c1c2e4f4
8 changed files with 41 additions and 65 deletions

View File

@ -4,12 +4,19 @@
* @Author : Shiming
* @Date : 2022-04-21 13:49:22
* @LastEditors : Shiming
* @LastEditTime : 2022-04-27 10:36:59
* @LastEditTime : 2022-04-27 10:56:40
* @FilePath : \\tms-obc-web\\src\\app\\routes\\sys-setting\\components\\basic-setting\\basic-setting.component.html
* Copyright (C) 2022 huzhenhong. All rights reserved.
-->
<app-dynamic-setting-h5 [tabs]="tabs" [configList]="configList" [selectedTab]="selectedTab" (selectedEvent)="getConfigList($event)" (saveEvent)="saveAction($event)" [labelWidth]="labelWidth">
<!-- <custom-element>
</custom-element> -->
</app-dynamic-setting-h5>
<app-dynamic-setting-h5
[tabs]="tabs"
[configList]="configList"
[selectedTab]="selectedTab"
(selectedEvent)="getConfigList($event)"
(saveEvent)="saveAction($event)"
[labelWidth]="labelWidth"
>
<custom-element>
<app-parterl-config></app-parterl-config>
</custom-element>
</app-dynamic-setting-h5>

View File

@ -6,7 +6,7 @@
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath : \\tms-obc-web\\src\\app\\routes\\sys-setting\\sys-setting.module.ts
*/
import { NgModule } from '@angular/core';
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { DynamicSettingModule, SharedModule } from '@shared';
import { StaffManagementComponent } from './components/staff-management/staff-management.component';
@ -73,6 +73,7 @@ const NOTROUTECOMPONENTS = [
];
@NgModule({
declarations: [...COMPONENTS, ...NOTROUTECOMPONENTS],
imports: [CommonModule, SysSettingRoutingModule, SharedModule, DynamicSettingModule]
imports: [CommonModule, SysSettingRoutingModule, SharedModule, DynamicSettingModule],
schemas: [CUSTOM_ELEMENTS_SCHEMA]
})
export class SysSettingModule {}