Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mySkill-x
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
mySkill-x
Commits
f727f67e
Project 'angular/myAppraisal' was moved to 'angular/mySkill-x'. Please update any links and bookmarks that may still have the old path.
Commit
f727f67e
authored
2 months ago
by
Nakarin Luankla
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
UPDATE การจัดการข้อมูลองค์กร > ทะเบียนบริษัท
parent
b2b90e96
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
19 deletions
+16
-19
department-register.component.html
...it/department-register/department-register.component.html
+7
-10
company-registration-page.component.html
...egistration-page/company-registration-page.component.html
+6
-7
header.component.html
src/app/shared/components/header/header.component.html
+2
-2
style.css
src/assets/css/style.css
+1
-0
No files found.
src/app/components/company-components/company-registration/branch-business-unit/department-register/department-register.component.html
View file @
f727f67e
...
...
@@ -48,14 +48,13 @@
</div>
<div
class=
"page px-rem"
>
<div
class=
"overflow-auto
rounded-top-0.65rem
"
>
<table
class=
"ti-custom-table ti-custom-table-head ti-custom-table-hover"
>
<thead
class=
"height-50px"
>
<tr
class=
"font-size-12px"
>
<div
class=
"overflow-auto
shadow-md rounded-t-md
"
>
<table
class=
"ti-custom-table ti-custom-table-head ti-custom-table-hover
table-bordered
"
>
<thead>
<tr>
<ng-container
*
ngFor=
"let item of ['ลำดับ','รหัสฝ่าย','รายละเอียดฝ่าย (ไทย)','รายละเอียดฝ่าย (อังกฤษ)','การจัดการ']; let f = first; let l = last"
>
<th
scope=
"col"
class=
"relative px-10px py-10px bg-soft-secondary text-primary"
[
class
.!
text-center
]="
f
||
l
"
>
<th
scope=
"col"
class=
"relative px-10px py-10px bg-soft-secondary text-primary !text-center"
>
<span
class=
"font-size-12px font-weight-700"
>
{{ item }}
</span>
<div
class=
"absolute top-1/2 transform -translate-y-1/2 right-0"
*
ngIf=
"!l"
>
<i
class=
"ti ti-dots-vertical fs-l"
></i>
...
...
@@ -74,10 +73,8 @@
<tbody
*
ngIf=
"bu1ListFilter().length"
>
<tr
*
ngFor=
"let item of bu1ListFilter() | slice:((currentPage-1) * 10) : (((currentPage-1) * 10) + 10);let i = index"
>
<td
class=
"flex justify-center"
>
{{((currentPage-1) * 10)+(i+1)}}
</td>
<td>
{{item.bu1id}}
</td>
<td
class=
"text-center"
>
{{((currentPage-1) * 10)+(i+1)}}
</td>
<td
class=
"text-center"
>
{{item.bu1id}}
</td>
<td>
{{item.tdesc}}
</td>
<td>
{{item.edesc}}
</td>
<td
class=
"flex justify-center"
>
...
...
This diff is collapsed.
Click to expand it.
src/app/components/company-components/company-registration/company-registration-page/company-registration-page.component.html
View file @
f727f67e
...
...
@@ -51,14 +51,13 @@
</div>
<div
class=
"page px-rem"
>
<div
class=
"overflow-auto
rounded-top-0.65rem
"
>
<table
class=
"ti-custom-table ti-custom-table-head ti-custom-table-hover"
>
<thead
class=
"height-50px"
>
<tr
class=
"font-size-12px"
>
<div
class=
"overflow-auto
shadow-md rounded-t-md
"
>
<table
class=
"ti-custom-table ti-custom-table-head ti-custom-table-hover
table-bordered
"
>
<thead>
<tr>
<ng-container
*
ngFor=
"let item of ['รหัสบริษัท','รายละเอียด (ไทย)','รายละเอียด (อังกฤษ)','การจัดการ']; let f = first; let l = last"
>
<th
scope=
"col"
class=
"relative px-10px py-10px bg-soft-secondary text-primary"
[
class
.!
text-center
]="
f
||
l
"
>
<th
scope=
"col"
class=
"relative px-10px py-10px bg-soft-secondary text-primary !text-center"
>
<span
class=
"font-size-12px font-weight-700"
>
{{ item }}
</span>
<div
class=
"absolute top-1/2 transform -translate-y-1/2 right-0"
*
ngIf=
"!l"
>
<i
class=
"ti ti-dots-vertical fs-l"
></i>
...
...
@@ -77,7 +76,7 @@
<tbody
*
ngIf=
"dataListFilter().length"
>
<tr
*
ngFor=
"let item of dataListFilter() | slice:((currentPage-1) * 10) : (((currentPage-1) * 10) + 10);let i = index"
>
<td
class=
"
flex justify-center items
-center"
>
<td
class=
"
text
-center"
>
<input
type=
"checkbox"
class=
"ti-form-checkbox cursor-pointer"
id=
"checkbox-{{item.data.code}}"
[(
ngModel
)]="
item
.
check
"
>
<label
for=
"checkbox-{{item.data.code}}"
>
{{item.data.code}}
</label>
</td>
...
...
This diff is collapsed.
Click to expand it.
src/app/shared/components/header/header.component.html
View file @
f727f67e
...
...
@@ -17,7 +17,7 @@
<!-- End Navigation Toggle -->
</div>
<div
class=
"responsive-logo"
>
<
!-- <
div class="responsive-logo">
<a
class="responsive-logo-dark"
routerLink="/dashboard/sales"
...
...
@@ -36,7 +36,7 @@
alt="logo"
class="mx-auto"
/></a>
</div>
</div>
-->
<div
class=
"header-right"
>
<div
class=
"responsive-headernav"
>
...
...
This diff is collapsed.
Click to expand it.
src/assets/css/style.css
View file @
f727f67e
...
...
@@ -1967,6 +1967,7 @@ select option:focus {
border-color
:
rgb
(
255
255
255
/
0.1
);
}
.ti-form-checkbox
{
margin-top
:
-3px
;
flex-shrink
:
0
;
border-radius
:
0.25rem
;
--tw-border-opacity
:
1
;
...
...
This diff is collapsed.
Click to expand it.
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