This commit is contained in:
Taric Xin
2021-12-02 17:35:43 +08:00
parent d1467d4f45
commit 436dd750d3
18 changed files with 2900 additions and 10 deletions

View File

@ -18,6 +18,9 @@ import { CartConfigActionModalComponent } from './components/cart-config/cart-co
import { AgreementConfigComponentsBaseComponent } from './components/agreement-config/agreement-config.component';
import { BasicSettingComponent } from './components/basic-setting/basic-setting.component';
import { SystemConfigComponent } from './components/system-config/system-config.component';
import { SettingRoleEditComponent } from './components/role-management/edit/edit.component';
import { SettingMenuComponent } from './components/role-management/menu/menu.component';
import { GoodsNameConfigComponent } from './components/goods-name-config/goods-name-config.component';
const COMPONENTS = [
StaffManagementComponent,
@ -30,14 +33,17 @@ const COMPONENTS = [
CartConfigComponent,
AgreementConfigComponentsBaseComponent,
BasicSettingComponent,
SystemConfigComponent
SystemConfigComponent,
GoodsNameConfigComponent
];
const NOTROUTECOMPONENTS = [
BuyerTranspowerComponent,
SystemStaffStaffModalComponent,
BasicConfigActionModalComponent,
AuditResonConfigActionModalComponent,
CartConfigActionModalComponent
CartConfigActionModalComponent,
SettingRoleEditComponent,
SettingMenuComponent
];
@NgModule({
declarations: [...COMPONENTS, ...NOTROUTECOMPONENTS],