Commit eed0a650 by Mon

Create User

parent 38ede92a
...@@ -11,4 +11,14 @@ ...@@ -11,4 +11,14 @@
::ng-deep .ng-select .ng-value-container .ng-value .ng-value-icon { ::ng-deep .ng-select .ng-value-container .ng-value .ng-value-icon {
color: #fff !important; /* ไอคอนกากบาท (x) เป็นสีขาว */ color: #fff !important; /* ไอคอนกากบาท (x) เป็นสีขาว */
}
/* placeholder ตอนยังไม่ได้เลือกค่า */
::ng-deep .ng-select .ng-select-container .ng-placeholder {
color: #6c757d !important; /* เทาอ่อน */
}
/* ความสูงกล่อง */
::ng-deep .ng-select .ng-select-container {
height: 40px !important;
} }
\ No newline at end of file
...@@ -43,9 +43,6 @@ export class UserService { ...@@ -43,9 +43,6 @@ export class UserService {
.pipe(map(list => list.map(e => new MyUserAccountModel(e, this.translate)))); .pipe(map(list => list.map(e => new MyUserAccountModel(e, this.translate))));
} }
// create(user: ProfileModel): Observable<ResponseModel> {
// return this.http.post<ResponseModel>(this.urlApi, new MyProfileModel(user));
// }
save(user: UserAccountModel): Observable<ResponseModel> { save(user: UserAccountModel): Observable<ResponseModel> {
return this.http.post<ResponseModel>(this.urlApi, new MyUserAccountModel (user)); return this.http.post<ResponseModel>(this.urlApi, new MyUserAccountModel (user));
} }
......
...@@ -228,19 +228,19 @@ export class NavService implements OnDestroy { ...@@ -228,19 +228,19 @@ export class NavService implements OnDestroy {
// type: 'link', // type: 'link',
// }, // },
{ {
icon: 'news bx-flip-horizontal', icon: 'briefcase',
path: '/mylearn/myhrcompany', path: '/mylearn/myhrcompany',
title: 'จัดการบริษัท', title: 'จัดการบริษัท',
type: 'link', type: 'link',
}, },
{ {
icon: 'receipt', icon: 'user',
path: '/mylearn/management-user', path: '/mylearn/management-user',
title: 'การจัดการผู้ใช้งาน', title: 'การจัดการผู้ใช้งาน',
type: 'link', type: 'link',
}, },
{ {
icon: 'receipt', icon: 'repeat',
path: '/mylearn/course-transfer', path: '/mylearn/course-transfer',
title: 'โอนย้ายคอร์ส', title: 'โอนย้ายคอร์ส',
type: 'link', type: 'link',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment