|
@@ -16,11 +16,16 @@ import { TestAddComponent } from './test/add/add.component';
|
|
|
import { BasedataCustomerClassificationComponent } from './customer-classification/customer-classification.component';
|
|
|
import { BasedataInformationSourcesComponent } from './information-sources/information-sources.component';
|
|
|
import { BasedataBusinessRelationsComponent } from './business-relations/business-relations.component';
|
|
|
-import { BasedataCustomerGroupingComponent } from './customer-grouping/customer-grouping.component';
|
|
|
-import { BasedataSleepTypeComponent } from './sleep-type/sleep-type.component';
|
|
|
-import { BasedataUnitSizeComponent } from './unit-size/unit-size.component';
|
|
|
-import { BasedataCustomerRelationshipComponent } from './customer-relationship/customer-relationship.component';
|
|
|
+import { BasedataCustomerGroupingComponent } from './customer-grouping/customer-grouping.component';
|
|
|
+import { BasedataSleepTypeComponent } from './sleep-type/sleep-type.component';
|
|
|
+import { BasedataUnitSizeComponent } from './unit-size/unit-size.component';
|
|
|
+import { BasedataCustomerRelationshipComponent } from './customer-relationship/customer-relationship.component';
|
|
|
import { BasedataValueLevelComponent } from './value-level/value-level.component';
|
|
|
+import { BasedataMerchantsIndustryComponent } from './merchants-industry/merchants-industry.component';
|
|
|
+import { BasedataMerchantsIndustryAddComponent } from './merchants-industry/add/add.component';
|
|
|
+import { BasedataPersonnelSizeComponent } from './personnel-size/personnel-size.component';
|
|
|
+import { BasedataRegisteredCapitalComponent } from './registered-capital/registered-capital.component';
|
|
|
+
|
|
|
|
|
|
const routes: Routes = [
|
|
|
{ path: 'customer', component: BasedataCustomerComponent },
|
|
@@ -37,11 +42,15 @@ const routes: Routes = [
|
|
|
{ path: 'customer-classification', component: BasedataCustomerClassificationComponent },
|
|
|
{ path: 'information-sources', component: BasedataInformationSourcesComponent },
|
|
|
{ path: 'business-relations', component: BasedataBusinessRelationsComponent },
|
|
|
- { path: 'customer-grouping', component: BasedataCustomerGroupingComponent },
|
|
|
- { path: 'sleep-type', component: BasedataSleepTypeComponent },
|
|
|
- { path: 'unit-size', component: BasedataUnitSizeComponent },
|
|
|
- { path: 'customer-relationship', component: BasedataCustomerRelationshipComponent },
|
|
|
- { path: 'value-level', component: BasedataValueLevelComponent }];
|
|
|
+ { path: 'customer-grouping', component: BasedataCustomerGroupingComponent },
|
|
|
+ { path: 'sleep-type', component: BasedataSleepTypeComponent },
|
|
|
+ { path: 'unit-size', component: BasedataUnitSizeComponent },
|
|
|
+ { path: 'customer-relationship', component: BasedataCustomerRelationshipComponent },
|
|
|
+ { path: 'value-level', component: BasedataValueLevelComponent },
|
|
|
+ { path: 'merchants-industry', component: BasedataMerchantsIndustryComponent },
|
|
|
+ { path: 'add', component: BasedataMerchantsIndustryAddComponent },
|
|
|
+ { path: 'personnel-size', component: BasedataPersonnelSizeComponent },
|
|
|
+ { path: 'registered-capital', component: BasedataRegisteredCapitalComponent }];
|
|
|
@NgModule({
|
|
|
imports: [RouterModule.forChild(routes)],
|
|
|
exports: [RouterModule]
|