|
|
|
@ -1,113 +1,282 @@
|
|
|
|
|
import { NgModule } from '@angular/core'; |
|
|
|
|
import { CommonModule } from '@angular/common'; |
|
|
|
|
import { UiComponent } from './ui.component'; |
|
|
|
|
import { UiRoutingModule } from './ui-routing.module'; |
|
|
|
|
import { A11yModule } from '@angular/cdk/a11y'; |
|
|
|
|
import { DragDropModule } from '@angular/cdk/drag-drop'; |
|
|
|
|
import { PortalModule } from '@angular/cdk/portal'; |
|
|
|
|
import { ScrollingModule } from '@angular/cdk/scrolling'; |
|
|
|
|
import { CdkStepperModule } from '@angular/cdk/stepper'; |
|
|
|
|
import { CdkTableModule } from '@angular/cdk/table'; |
|
|
|
|
import { CdkTreeModule } from '@angular/cdk/tree'; |
|
|
|
|
import { MatAutocompleteModule } from '@angular/material/autocomplete'; |
|
|
|
|
import { MatBadgeModule } from '@angular/material/badge'; |
|
|
|
|
import { MatBottomSheetModule } from '@angular/material/bottom-sheet'; |
|
|
|
|
import { MatButtonModule } from '@angular/material/button'; |
|
|
|
|
import { MatButtonToggleModule } from '@angular/material/button-toggle'; |
|
|
|
|
import { MatCardModule } from '@angular/material/card'; |
|
|
|
|
import { MatCheckboxModule } from '@angular/material/checkbox'; |
|
|
|
|
import { MatChipsModule } from '@angular/material/chips'; |
|
|
|
|
import { MatStepperModule } from '@angular/material/stepper'; |
|
|
|
|
import { MatDatepickerModule } from '@angular/material/datepicker'; |
|
|
|
|
import { MatDialogModule } from '@angular/material/dialog'; |
|
|
|
|
import { MatDividerModule } from '@angular/material/divider'; |
|
|
|
|
import { MatExpansionModule } from '@angular/material/expansion'; |
|
|
|
|
import { MatGridListModule } from '@angular/material/grid-list'; |
|
|
|
|
import { MatIconModule } from '@angular/material/icon'; |
|
|
|
|
import { MatInputModule } from '@angular/material/input'; |
|
|
|
|
import { MatListModule } from '@angular/material/list'; |
|
|
|
|
import { MatMenuModule } from '@angular/material/menu'; |
|
|
|
|
import { MatNativeDateModule, MatRippleModule, MatOption } from '@angular/material/core'; |
|
|
|
|
import { MatPaginatorModule } from '@angular/material/paginator'; |
|
|
|
|
import { MatProgressBarModule } from '@angular/material/progress-bar'; |
|
|
|
|
import { MatProgressSpinnerModule } from '@angular/material/progress-spinner'; |
|
|
|
|
import { MatRadioModule } from '@angular/material/radio'; |
|
|
|
|
import { MatSelectModule } from '@angular/material/select'; |
|
|
|
|
import { MatSidenavModule } from '@angular/material/sidenav'; |
|
|
|
|
import { MatSliderModule } from '@angular/material/slider'; |
|
|
|
|
import { MatSlideToggleModule } from '@angular/material/slide-toggle'; |
|
|
|
|
import { MatSnackBarModule } from '@angular/material/snack-bar'; |
|
|
|
|
import { MatSortModule } from '@angular/material/sort'; |
|
|
|
|
import { MatTableModule } from '@angular/material/table'; |
|
|
|
|
import { MatTabsModule } from '@angular/material/tabs'; |
|
|
|
|
import { MatToolbarModule } from '@angular/material/toolbar'; |
|
|
|
|
import { MatTooltipModule } from '@angular/material/tooltip'; |
|
|
|
|
import { MatTreeModule } from '@angular/material/tree'; |
|
|
|
|
import { ReactiveFormsModule, FormsModule } from '@angular/forms'; |
|
|
|
|
import { MatFormFieldModule } from '@angular/material/form-field'; |
|
|
|
|
import { MatPaginatorIntl } from '@angular/material/paginator'; |
|
|
|
|
import { PaginatorModule } from './paginator/paginator.module'; |
|
|
|
|
import { UserdataComponent, EditUser } from './userdata/userdata.component'; |
|
|
|
|
import { ChangepasswordComponent } from './changepassword/changepassword.component'; |
|
|
|
|
import { OrganizationComponent, CreateOrganization, EditOrganization, addOffices, editOffices } from './organization/organization.component'; |
|
|
|
|
import { UnittypeComponent, DialogOverviewExampleDialog, editorialUnit } from './unittype/unittype.component'; |
|
|
|
|
import { AuthorityComponent, CreateAuthority } from './authority/authority.component'; |
|
|
|
|
import { RoleComponent, CreateRole, EditRole } from './role/role.component'; |
|
|
|
|
import { UsermanagementComponent, CreateNewUser, EditNewUser, allRoles, seeInformation } from './usermanagement/usermanagement.component'; |
|
|
|
|
import { IsnoPipe } from '../pipes/boolean.pipe'; |
|
|
|
|
import { ConfirmpswDirective } from './changepassword/equal-validator.directive' |
|
|
|
|
import { TimePipe } from '../pipes/time.pipe'; |
|
|
|
|
import { NavmenusComponent, CreateMenus, EditMenus } from './navmenus/navmenus.component'; |
|
|
|
|
import { FireProtectionElementsComponent, Establish, EditingFireControl } from './fire-protection-elements/fire-protection-elements.component'; |
|
|
|
|
import { FireFightingTemplateComponent, NewFireFighting, EditFireClassification } from './fire-fighting-template/fire-fighting-template.component'; |
|
|
|
|
import { MaterialBankComponent, attributeComponent, addAttributeComponent, editAttribute } from './material-bank/material-bank.component'; |
|
|
|
|
import { UnitInformationComponent, addUnitAttributeComponent, editUnitAttribute } from './unit-information/unit-information.component'; |
|
|
|
|
import { AddMatLibrary } from './material-bank/addmatlibrary.component'; |
|
|
|
|
import { EditMatLibrary } from './material-bank/editmatlibrary.component'; |
|
|
|
|
import { AddOriginalCopy } from './material-bank/addoriginalcopy.component'; |
|
|
|
|
import { NzTreeModule } from 'ng-zorro-antd/tree'; |
|
|
|
|
import { FileUploadModule } from 'ng2-file-upload' |
|
|
|
|
import { EditOriginalCopy } from './material-bank/editoriginalcopy.component'; |
|
|
|
|
import { SelectOriginalCopy } from './material-bank/selectoriginalcopy.component'; |
|
|
|
|
import { EditUnitInfo } from './unit-information/editunitinfo.component'; |
|
|
|
|
import { AddUnitInfo } from './unit-information/addunitinfo.component'; |
|
|
|
|
import { AddGroups } from './unit-information/addgroups.component'; |
|
|
|
|
import { EditGroup } from './unit-information/editgroup.component'; |
|
|
|
|
import { EnterpriseuserComponent, seeenterpriseuser, editenterpriseuser } from './enterpriseuser/enterpriseuser.component'; |
|
|
|
|
import { AddEnterpriserUser } from './enterpriseuser/addenterpriseuser.component'; |
|
|
|
|
import { FireFightingFacilitiesFormworkComponent, addFireFightingFacilitiesFormworkComponent, editFireFightingFacilitiesFormworkComponent, addBuiltInComponent, addBuiltInAttributeComponent, addOptionalComponent, addOptionalAttributeComponent, editBuiltInAttributeComponent, editOptionalAttributeComponent } from './fire-fighting-facilities-formwork/fire-fighting-facilities-formwork.component'; |
|
|
|
|
import { CollectionToolsComponent, Organization } from './collection-tools/collection-tools.component'; |
|
|
|
|
import { WorkingAreaComponent } from '../working-area/working-area.component'; |
|
|
|
|
import { leftFunctionalDomainComponent, editPlaneFigureComponent, addDisposalNodeComponent, editDisposalNodeComponent, addBGCDisposalNodeComponent } from './collection-tools/leftFunctionalDomain' |
|
|
|
|
import { saveOneDialog, saveTwoDialog } from './collection-tools/save'; |
|
|
|
|
import { CollectionToolsPlanComponent, CreateBuildingPlan, EditBuildingPlan } from './collection-tools-plan/collection-tools.component'; |
|
|
|
|
import { editPlaneFigureComponentPlan, leftFunctionalDomainComponentPlan } from './collection-tools-plan/leftFunctionalDomain'; |
|
|
|
|
import { CollectionToolsBuildingComponent, CreateBuildingBuilding, EditBuildingBuilding } from './collection-tools-building/collection-tools.component' |
|
|
|
|
import { leftFunctionalDomainBuildingComponent, editPlaneFigureBuildingComponent } from './collection-tools-building/leftFunctionalDomain'; |
|
|
|
|
import { PlanTemplateComponent } from './plan-template/plan-template.component' |
|
|
|
|
import { addPlanname } from './plan-template/plan-template.component' |
|
|
|
|
import { upPlanname } from './plan-template/plan-template.component' |
|
|
|
|
import { addGroup } from './plan-template/plan-template.component' |
|
|
|
|
import { adddwsurvey } from './plan-template/plan-template.component' |
|
|
|
|
import { addattinf } from './plan-template/plan-template.component' |
|
|
|
|
import { disaster } from './plan-template/plan-template.component' |
|
|
|
|
import { BrowserModule } from '@angular/platform-browser'; |
|
|
|
|
import { TreeDiagramModule } from './ng-tree-diagram/src/ng-tree-diagram'; |
|
|
|
|
import { zdyaddGroup } from './plan-template/plan-template.component' |
|
|
|
|
import { zdyaddattinf } from './plan-template/plan-template.component' |
|
|
|
|
import { zdydisaster } from './plan-template/plan-template.component' |
|
|
|
|
import { updataHl } from './plan-template/plan-template.component' |
|
|
|
|
|
|
|
|
|
import { NgModule } from "@angular/core"; |
|
|
|
|
import { CommonModule } from "@angular/common"; |
|
|
|
|
import { UiComponent } from "./ui.component"; |
|
|
|
|
import { UiRoutingModule } from "./ui-routing.module"; |
|
|
|
|
import { A11yModule } from "@angular/cdk/a11y"; |
|
|
|
|
import { DragDropModule } from "@angular/cdk/drag-drop"; |
|
|
|
|
import { PortalModule } from "@angular/cdk/portal"; |
|
|
|
|
import { ScrollingModule } from "@angular/cdk/scrolling"; |
|
|
|
|
import { CdkStepperModule } from "@angular/cdk/stepper"; |
|
|
|
|
import { CdkTableModule } from "@angular/cdk/table"; |
|
|
|
|
import { CdkTreeModule } from "@angular/cdk/tree"; |
|
|
|
|
import { MatAutocompleteModule } from "@angular/material/autocomplete"; |
|
|
|
|
import { MatBadgeModule } from "@angular/material/badge"; |
|
|
|
|
import { MatBottomSheetModule } from "@angular/material/bottom-sheet"; |
|
|
|
|
import { MatButtonModule } from "@angular/material/button"; |
|
|
|
|
import { MatButtonToggleModule } from "@angular/material/button-toggle"; |
|
|
|
|
import { MatCardModule } from "@angular/material/card"; |
|
|
|
|
import { MatCheckboxModule } from "@angular/material/checkbox"; |
|
|
|
|
import { MatChipsModule } from "@angular/material/chips"; |
|
|
|
|
import { MatStepperModule } from "@angular/material/stepper"; |
|
|
|
|
import { MatDatepickerModule } from "@angular/material/datepicker"; |
|
|
|
|
import { MatDialogModule } from "@angular/material/dialog"; |
|
|
|
|
import { MatDividerModule } from "@angular/material/divider"; |
|
|
|
|
import { MatExpansionModule } from "@angular/material/expansion"; |
|
|
|
|
import { MatGridListModule } from "@angular/material/grid-list"; |
|
|
|
|
import { MatIconModule } from "@angular/material/icon"; |
|
|
|
|
import { MatInputModule } from "@angular/material/input"; |
|
|
|
|
import { MatListModule } from "@angular/material/list"; |
|
|
|
|
import { MatMenuModule } from "@angular/material/menu"; |
|
|
|
|
import { |
|
|
|
|
MatNativeDateModule, |
|
|
|
|
MatRippleModule, |
|
|
|
|
MatOption, |
|
|
|
|
} from "@angular/material/core"; |
|
|
|
|
import { MatPaginatorModule } from "@angular/material/paginator"; |
|
|
|
|
import { MatProgressBarModule } from "@angular/material/progress-bar"; |
|
|
|
|
import { MatProgressSpinnerModule } from "@angular/material/progress-spinner"; |
|
|
|
|
import { MatRadioModule } from "@angular/material/radio"; |
|
|
|
|
import { MatSelectModule } from "@angular/material/select"; |
|
|
|
|
import { MatSidenavModule } from "@angular/material/sidenav"; |
|
|
|
|
import { MatSliderModule } from "@angular/material/slider"; |
|
|
|
|
import { MatSlideToggleModule } from "@angular/material/slide-toggle"; |
|
|
|
|
import { MatSnackBarModule } from "@angular/material/snack-bar"; |
|
|
|
|
import { MatSortModule } from "@angular/material/sort"; |
|
|
|
|
import { MatTableModule } from "@angular/material/table"; |
|
|
|
|
import { MatTabsModule } from "@angular/material/tabs"; |
|
|
|
|
import { MatToolbarModule } from "@angular/material/toolbar"; |
|
|
|
|
import { MatTooltipModule } from "@angular/material/tooltip"; |
|
|
|
|
import { MatTreeModule } from "@angular/material/tree"; |
|
|
|
|
import { ReactiveFormsModule, FormsModule } from "@angular/forms"; |
|
|
|
|
import { MatFormFieldModule } from "@angular/material/form-field"; |
|
|
|
|
import { MatPaginatorIntl } from "@angular/material/paginator"; |
|
|
|
|
import { PaginatorModule } from "./paginator/paginator.module"; |
|
|
|
|
import { UserdataComponent, EditUser } from "./userdata/userdata.component"; |
|
|
|
|
import { ChangepasswordComponent } from "./changepassword/changepassword.component"; |
|
|
|
|
import { |
|
|
|
|
OrganizationComponent, |
|
|
|
|
CreateOrganization, |
|
|
|
|
EditOrganization, |
|
|
|
|
addOffices, |
|
|
|
|
editOffices, |
|
|
|
|
} from "./organization/organization.component"; |
|
|
|
|
import { |
|
|
|
|
UnittypeComponent, |
|
|
|
|
DialogOverviewExampleDialog, |
|
|
|
|
editorialUnit, |
|
|
|
|
} from "./unittype/unittype.component"; |
|
|
|
|
import { |
|
|
|
|
AuthorityComponent, |
|
|
|
|
CreateAuthority, |
|
|
|
|
} from "./authority/authority.component"; |
|
|
|
|
import { RoleComponent, CreateRole, EditRole } from "./role/role.component"; |
|
|
|
|
import { |
|
|
|
|
UsermanagementComponent, |
|
|
|
|
CreateNewUser, |
|
|
|
|
EditNewUser, |
|
|
|
|
allRoles, |
|
|
|
|
seeInformation, |
|
|
|
|
} from "./usermanagement/usermanagement.component"; |
|
|
|
|
import { IsnoPipe } from "../pipes/boolean.pipe"; |
|
|
|
|
import { ConfirmpswDirective } from "./changepassword/equal-validator.directive"; |
|
|
|
|
import { TimePipe } from "../pipes/time.pipe"; |
|
|
|
|
import { |
|
|
|
|
NavmenusComponent, |
|
|
|
|
CreateMenus, |
|
|
|
|
EditMenus, |
|
|
|
|
} from "./navmenus/navmenus.component"; |
|
|
|
|
import { |
|
|
|
|
FireProtectionElementsComponent, |
|
|
|
|
Establish, |
|
|
|
|
EditingFireControl, |
|
|
|
|
} from "./fire-protection-elements/fire-protection-elements.component"; |
|
|
|
|
import { |
|
|
|
|
FireFightingTemplateComponent, |
|
|
|
|
NewFireFighting, |
|
|
|
|
EditFireClassification, |
|
|
|
|
} from "./fire-fighting-template/fire-fighting-template.component"; |
|
|
|
|
import { |
|
|
|
|
MaterialBankComponent, |
|
|
|
|
attributeComponent, |
|
|
|
|
addAttributeComponent, |
|
|
|
|
editAttribute, |
|
|
|
|
} from "./material-bank/material-bank.component"; |
|
|
|
|
import { |
|
|
|
|
UnitInformationComponent, |
|
|
|
|
addUnitAttributeComponent, |
|
|
|
|
editUnitAttribute, |
|
|
|
|
} from "./unit-information/unit-information.component"; |
|
|
|
|
import { AddMatLibrary } from "./material-bank/addmatlibrary.component"; |
|
|
|
|
import { EditMatLibrary } from "./material-bank/editmatlibrary.component"; |
|
|
|
|
import { AddOriginalCopy } from "./material-bank/addoriginalcopy.component"; |
|
|
|
|
import { NzTreeModule } from "ng-zorro-antd/tree"; |
|
|
|
|
import { FileUploadModule } from "ng2-file-upload"; |
|
|
|
|
import { EditOriginalCopy } from "./material-bank/editoriginalcopy.component"; |
|
|
|
|
import { SelectOriginalCopy } from "./material-bank/selectoriginalcopy.component"; |
|
|
|
|
import { EditUnitInfo } from "./unit-information/editunitinfo.component"; |
|
|
|
|
import { AddUnitInfo } from "./unit-information/addunitinfo.component"; |
|
|
|
|
import { AddGroups } from "./unit-information/addgroups.component"; |
|
|
|
|
import { EditGroup } from "./unit-information/editgroup.component"; |
|
|
|
|
import { |
|
|
|
|
EnterpriseuserComponent, |
|
|
|
|
seeenterpriseuser, |
|
|
|
|
editenterpriseuser, |
|
|
|
|
} from "./enterpriseuser/enterpriseuser.component"; |
|
|
|
|
import { AddEnterpriserUser } from "./enterpriseuser/addenterpriseuser.component"; |
|
|
|
|
import { |
|
|
|
|
FireFightingFacilitiesFormworkComponent, |
|
|
|
|
addFireFightingFacilitiesFormworkComponent, |
|
|
|
|
editFireFightingFacilitiesFormworkComponent, |
|
|
|
|
addBuiltInComponent, |
|
|
|
|
addBuiltInAttributeComponent, |
|
|
|
|
addOptionalComponent, |
|
|
|
|
addOptionalAttributeComponent, |
|
|
|
|
editBuiltInAttributeComponent, |
|
|
|
|
editOptionalAttributeComponent, |
|
|
|
|
} from "./fire-fighting-facilities-formwork/fire-fighting-facilities-formwork.component"; |
|
|
|
|
import { |
|
|
|
|
CollectionToolsComponent, |
|
|
|
|
Organization, |
|
|
|
|
} from "./collection-tools/collection-tools.component"; |
|
|
|
|
import { WorkingAreaComponent } from "../working-area/working-area.component"; |
|
|
|
|
import { |
|
|
|
|
leftFunctionalDomainComponent, |
|
|
|
|
editPlaneFigureComponent, |
|
|
|
|
addDisposalNodeComponent, |
|
|
|
|
editDisposalNodeComponent, |
|
|
|
|
addBGCDisposalNodeComponent, |
|
|
|
|
} from "./collection-tools/leftFunctionalDomain"; |
|
|
|
|
import { saveOneDialog, saveTwoDialog } from "./collection-tools/save"; |
|
|
|
|
import { |
|
|
|
|
CollectionToolsPlanComponent, |
|
|
|
|
CreateBuildingPlan, |
|
|
|
|
EditBuildingPlan, |
|
|
|
|
} from "./collection-tools-plan/collection-tools.component"; |
|
|
|
|
import { |
|
|
|
|
editPlaneFigureComponentPlan, |
|
|
|
|
leftFunctionalDomainComponentPlan, |
|
|
|
|
} from "./collection-tools-plan/leftFunctionalDomain"; |
|
|
|
|
import { |
|
|
|
|
CollectionToolsBuildingComponent, |
|
|
|
|
CreateBuildingBuilding, |
|
|
|
|
EditBuildingBuilding, |
|
|
|
|
} from "./collection-tools-building/collection-tools.component"; |
|
|
|
|
import { |
|
|
|
|
leftFunctionalDomainBuildingComponent, |
|
|
|
|
editPlaneFigureBuildingComponent, |
|
|
|
|
} from "./collection-tools-building/leftFunctionalDomain"; |
|
|
|
|
import { PlanTemplateComponent } from "./plan-template/plan-template.component"; |
|
|
|
|
import { addPlanname } from "./plan-template/plan-template.component"; |
|
|
|
|
import { upPlanname } from "./plan-template/plan-template.component"; |
|
|
|
|
import { addGroup } from "./plan-template/plan-template.component"; |
|
|
|
|
import { adddwsurvey } from "./plan-template/plan-template.component"; |
|
|
|
|
import { addattinf } from "./plan-template/plan-template.component"; |
|
|
|
|
import { disaster } from "./plan-template/plan-template.component"; |
|
|
|
|
import { TreeDiagramModule } from "./ng-tree-diagram/src/ng-tree-diagram"; |
|
|
|
|
import { zdyaddGroup } from "./plan-template/plan-template.component"; |
|
|
|
|
import { zdyaddattinf } from "./plan-template/plan-template.component"; |
|
|
|
|
import { zdydisaster } from "./plan-template/plan-template.component"; |
|
|
|
|
import { updataHl } from "./plan-template/plan-template.component"; |
|
|
|
|
import { AddKeyDialog, AppKeyComponent } from "./app-key/app-key.component"; |
|
|
|
|
@NgModule({ |
|
|
|
|
declarations: [UiComponent, UserdataComponent, ChangepasswordComponent, OrganizationComponent, UnittypeComponent, AuthorityComponent, RoleComponent, UsermanagementComponent, |
|
|
|
|
IsnoPipe, ConfirmpswDirective, DialogOverviewExampleDialog, CreateAuthority, CreateRole, TimePipe, CreateNewUser, EditNewUser, allRoles, EditRole, CreateOrganization, EditOrganization, |
|
|
|
|
seeInformation, EditUser, editorialUnit, FireProtectionElementsComponent, Establish, EditingFireControl, FireFightingTemplateComponent, NavmenusComponent, CreateMenus, EditMenus, |
|
|
|
|
NewFireFighting, EditFireClassification, MaterialBankComponent, UnitInformationComponent, AddMatLibrary, EditMatLibrary, attributeComponent, AddOriginalCopy, addAttributeComponent, |
|
|
|
|
editAttribute, EditOriginalCopy, SelectOriginalCopy, EditUnitInfo, AddUnitInfo, AddGroups, EditGroup, EnterpriseuserComponent, AddEnterpriserUser, addUnitAttributeComponent, editUnitAttribute, |
|
|
|
|
seeenterpriseuser, editenterpriseuser, FireFightingFacilitiesFormworkComponent, addFireFightingFacilitiesFormworkComponent, editFireFightingFacilitiesFormworkComponent, addBuiltInComponent, |
|
|
|
|
addBuiltInAttributeComponent, addOptionalComponent, addOptionalAttributeComponent, editBuiltInAttributeComponent, editOptionalAttributeComponent, CollectionToolsComponent, WorkingAreaComponent, leftFunctionalDomainComponent, editPlaneFigureComponent, saveOneDialog, saveTwoDialog, addDisposalNodeComponent, editDisposalNodeComponent, CollectionToolsPlanComponent, |
|
|
|
|
CreateBuildingPlan, EditBuildingPlan, leftFunctionalDomainComponentPlan, editPlaneFigureComponentPlan, addOffices, editOffices, addBGCDisposalNodeComponent, CollectionToolsBuildingComponent, CreateBuildingBuilding, |
|
|
|
|
EditBuildingBuilding, leftFunctionalDomainBuildingComponent, editPlaneFigureBuildingComponent, Organization, PlanTemplateComponent, addPlanname, upPlanname, addGroup, adddwsurvey, addattinf, disaster, zdyaddGroup, zdyaddattinf, zdydisaster, updataHl], |
|
|
|
|
declarations: [ |
|
|
|
|
UiComponent, |
|
|
|
|
UserdataComponent, |
|
|
|
|
ChangepasswordComponent, |
|
|
|
|
OrganizationComponent, |
|
|
|
|
UnittypeComponent, |
|
|
|
|
AuthorityComponent, |
|
|
|
|
RoleComponent, |
|
|
|
|
UsermanagementComponent, |
|
|
|
|
IsnoPipe, |
|
|
|
|
ConfirmpswDirective, |
|
|
|
|
DialogOverviewExampleDialog, |
|
|
|
|
CreateAuthority, |
|
|
|
|
CreateRole, |
|
|
|
|
TimePipe, |
|
|
|
|
CreateNewUser, |
|
|
|
|
EditNewUser, |
|
|
|
|
allRoles, |
|
|
|
|
EditRole, |
|
|
|
|
CreateOrganization, |
|
|
|
|
EditOrganization, |
|
|
|
|
seeInformation, |
|
|
|
|
EditUser, |
|
|
|
|
editorialUnit, |
|
|
|
|
FireProtectionElementsComponent, |
|
|
|
|
Establish, |
|
|
|
|
EditingFireControl, |
|
|
|
|
FireFightingTemplateComponent, |
|
|
|
|
NavmenusComponent, |
|
|
|
|
CreateMenus, |
|
|
|
|
EditMenus, |
|
|
|
|
NewFireFighting, |
|
|
|
|
EditFireClassification, |
|
|
|
|
MaterialBankComponent, |
|
|
|
|
UnitInformationComponent, |
|
|
|
|
AddMatLibrary, |
|
|
|
|
EditMatLibrary, |
|
|
|
|
attributeComponent, |
|
|
|
|
AddOriginalCopy, |
|
|
|
|
addAttributeComponent, |
|
|
|
|
editAttribute, |
|
|
|
|
EditOriginalCopy, |
|
|
|
|
SelectOriginalCopy, |
|
|
|
|
EditUnitInfo, |
|
|
|
|
AddUnitInfo, |
|
|
|
|
AddGroups, |
|
|
|
|
EditGroup, |
|
|
|
|
EnterpriseuserComponent, |
|
|
|
|
AddEnterpriserUser, |
|
|
|
|
addUnitAttributeComponent, |
|
|
|
|
editUnitAttribute, |
|
|
|
|
seeenterpriseuser, |
|
|
|
|
editenterpriseuser, |
|
|
|
|
FireFightingFacilitiesFormworkComponent, |
|
|
|
|
addFireFightingFacilitiesFormworkComponent, |
|
|
|
|
editFireFightingFacilitiesFormworkComponent, |
|
|
|
|
addBuiltInComponent, |
|
|
|
|
addBuiltInAttributeComponent, |
|
|
|
|
addOptionalComponent, |
|
|
|
|
addOptionalAttributeComponent, |
|
|
|
|
editBuiltInAttributeComponent, |
|
|
|
|
editOptionalAttributeComponent, |
|
|
|
|
CollectionToolsComponent, |
|
|
|
|
WorkingAreaComponent, |
|
|
|
|
leftFunctionalDomainComponent, |
|
|
|
|
editPlaneFigureComponent, |
|
|
|
|
saveOneDialog, |
|
|
|
|
saveTwoDialog, |
|
|
|
|
addDisposalNodeComponent, |
|
|
|
|
editDisposalNodeComponent, |
|
|
|
|
CollectionToolsPlanComponent, |
|
|
|
|
CreateBuildingPlan, |
|
|
|
|
EditBuildingPlan, |
|
|
|
|
leftFunctionalDomainComponentPlan, |
|
|
|
|
editPlaneFigureComponentPlan, |
|
|
|
|
addOffices, |
|
|
|
|
editOffices, |
|
|
|
|
addBGCDisposalNodeComponent, |
|
|
|
|
CollectionToolsBuildingComponent, |
|
|
|
|
CreateBuildingBuilding, |
|
|
|
|
EditBuildingBuilding, |
|
|
|
|
leftFunctionalDomainBuildingComponent, |
|
|
|
|
editPlaneFigureBuildingComponent, |
|
|
|
|
Organization, |
|
|
|
|
PlanTemplateComponent, |
|
|
|
|
addPlanname, |
|
|
|
|
upPlanname, |
|
|
|
|
addGroup, |
|
|
|
|
adddwsurvey, |
|
|
|
|
addattinf, |
|
|
|
|
disaster, |
|
|
|
|
zdyaddGroup, |
|
|
|
|
zdyaddattinf, |
|
|
|
|
zdydisaster, |
|
|
|
|
updataHl, |
|
|
|
|
AppKeyComponent, |
|
|
|
|
AddKeyDialog, |
|
|
|
|
], |
|
|
|
|
|
|
|
|
|
imports: [ |
|
|
|
|
CommonModule, |
|
|
|
@ -159,16 +328,15 @@ import { updataHl } from './plan-template/plan-template.component'
|
|
|
|
|
FormsModule, |
|
|
|
|
PaginatorModule, |
|
|
|
|
FileUploadModule, |
|
|
|
|
//BrowserModule,
|
|
|
|
|
TreeDiagramModule |
|
|
|
|
TreeDiagramModule, |
|
|
|
|
], |
|
|
|
|
|
|
|
|
|
entryComponents: [AddKeyDialog], |
|
|
|
|
|
|
|
|
|
exports: [ |
|
|
|
|
CollectionToolsComponent, |
|
|
|
|
CollectionToolsBuildingComponent, |
|
|
|
|
CollectionToolsPlanComponent, |
|
|
|
|
ConfirmpswDirective |
|
|
|
|
] |
|
|
|
|
ConfirmpswDirective, |
|
|
|
|
], |
|
|
|
|
}) |
|
|
|
|
export class UiModule { } |
|
|
|
|
export class UiModule {} |
|
|
|
|