Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
myjob-manage
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
angular
myjob-manage
Commits
81cfe32e
Commit
81cfe32e
authored
Jul 07, 2025
by
DESKTOP-E3GSHH7\myhr
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
เมนู ทะเบียนบริษัท
parent
14fc2de3
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
46 additions
and
0 deletions
+46
-0
common.module.ts
src/app/DPU/common/common.module.ts
+5
-0
company-department.component.css
...ommon/company-department/company-department.component.css
+0
-0
company-department.component.html
...mmon/company-department/company-department.component.html
+2
-0
company-department.component.ts
...common/company-department/company-department.component.ts
+29
-0
nav.service.ts
src/app/shared/services/nav.service.ts
+10
-0
No files found.
src/app/DPU/common/common.module.ts
View file @
81cfe32e
...
...
@@ -37,6 +37,11 @@ export const admin: Routes = [
import
(
'./pdpa-manage/pdpa-manage.component'
).
then
((
m
)
=>
m
.
PdpaManageComponent
),
},
{
path
:
'company-departments'
,
loadComponent
:
()
=>
import
(
'./company-department/company-department.component'
).
then
((
m
)
=>
m
.
CompanyDepartmentComponent
),
},
{
path
:
'admin-manage'
,
loadComponent
:
()
=>
import
(
'./admin-manage/admin-manage.component'
).
then
((
m
)
=>
m
.
AdminManageComponent
),
...
...
src/app/DPU/common/company-department/company-department.component.css
0 → 100644
View file @
81cfe32e
src/app/DPU/common/company-department/company-department.component.html
0 → 100644
View file @
81cfe32e
company is worked
\ No newline at end of file
src/app/DPU/common/company-department/company-department.component.ts
0 → 100644
View file @
81cfe32e
import
{
Component
,
ElementRef
,
ViewChild
}
from
'@angular/core'
;
import
{
Router
,
RouterModule
}
from
'@angular/router'
;
import
{
SharedModule
}
from
'../../../shared/shared.module'
;
import
{
TranslateModule
,
TranslateService
}
from
'@ngx-translate/core'
;
import
{
MatPaginator
}
from
'@angular/material/paginator'
;
import
{
FormsModule
}
from
'@angular/forms'
;
import
{
NgSelectModule
}
from
'@ng-select/ng-select'
;
import
{
CommonModule
}
from
'@angular/common'
;
@
Component
({
selector
:
'app-company-department'
,
standalone
:
true
,
imports
:
[
CommonModule
,
SharedModule
,
TranslateModule
,
NgSelectModule
,
FormsModule
,
MatPaginator
,
RouterModule
,
],
templateUrl
:
'./company-department.component.html'
,
styleUrl
:
'./company-department.component.css'
,
})
export
class
CompanyDepartmentComponent
{
ngOnInit
():
void
{
}
}
src/app/shared/services/nav.service.ts
View file @
81cfe32e
...
...
@@ -122,6 +122,16 @@ export class NavService implements OnDestroy {
type
:
'link'
,
},
{
icon
:
'buildings'
,
path
:
'/admin/company-departments'
,
title
:
'ทะเบียนบริษัท'
,
type
:
'sub'
,
children
:
[
{
path
:
'/company-departments/company-info'
,
title
:
'ข้อมูลบริษัท'
,
type
:
'link'
},
],
},
// { headTitle: 'User Management' },
];
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment