|
|
@@ -3,7 +3,7 @@ import { Dashboard } from './pages/dashboard/dashboard';
|
|
3
|
3
|
import { DankaList } from './pages/danka-list/danka-list';
|
|
4
|
4
|
import { DankaDetail } from './pages/danka-detail/danka-detail';
|
|
5
|
5
|
import { DankaEdit } from './pages/danka-edit/danka-edit';
|
|
6
|
|
-import {FamilyEdit} from './pages/family-edit/family-edit';
|
|
|
6
|
+import { FamilyEdit } from './pages/family-edit/family-edit';
|
|
7
|
7
|
|
|
8
|
8
|
import { KakochoEdit } from './pages/kakocho-edit/kakocho-edit';
|
|
9
|
9
|
|
|
|
@@ -37,11 +37,11 @@ export const routes: Routes = [
|
|
37
|
37
|
component: FamilyEdit,
|
|
38
|
38
|
},
|
|
39
|
39
|
{
|
|
40
|
|
- path: 'kakocho-edit/:dankaId',
|
|
|
40
|
+ path: 'danka/:dankaId/kakocho-new',
|
|
41
|
41
|
component: KakochoEdit,
|
|
42
|
42
|
},
|
|
43
|
43
|
{
|
|
44
|
|
- path: 'kakocho-edit/:dankaId/:kakochoId',
|
|
|
44
|
+ path: 'danka/:dankaId/kakocho/:kakochoId/edit',
|
|
45
|
45
|
component: KakochoEdit,
|
|
46
|
|
- }
|
|
|
46
|
+ },
|
|
47
|
47
|
];
|