Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
myAppraisal
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
myAppraisal
Commits
7c1c55d8
Commit
7c1c55d8
authored
Jan 30, 2025
by
Ooh-Ao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sss
parent
29c7ea0d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
3 deletions
+24
-3
import-data.component.html
...-detail-management/import-data/import-data.component.html
+24
-3
No files found.
src/app/components/job-detail-components/job-detail-management/import-data/import-data.component.html
View file @
7c1c55d8
...
...
@@ -64,14 +64,35 @@
</ng-container>
</tr>
</thead>
<tbody
*
ngIf=
"!jobListFilter().length"
>
<
!-- <
tbody *ngIf="!jobListFilter().length">
<tr>
<td class="text-center" colspan="100%">
ไม่พบข้อมูล
</td>
</tr>
</tbody> -->
<tbody>
<tr
*
ngFor=
"let item of[
['01','001', 'Department Manager 1','Department Manager 1'],
['02','002', 'Department Manager 2','Department Manager 2'],
['03','003', 'Department 1-HRD','Department 1-HRD'],
['04','004', 'Department Manager 3','Department Manager 3'],
['05','005', 'Department Manager 4','Department Manager 4']];let i = index"
>
<td
class=
"text-center"
>
{{i+1}}
</td>
<td
class=
"text-center"
>
{{item[1]}}
</td>
<td>
{{item[2]}}
</td>
<td>
{{item[3]}}
</td>
<td
class=
"flex justify-center"
>
<i
class=
"ti ti-edit cursor-pointer i-gray fs-l px-1"
data-hs-overlay=
"#sub-command-structure-modal-edit"
></i>
<i
class=
"ti ti-trash cursor-pointer i-gray fs-l px-1"
data-hs-overlay=
"#sub-command-structure-alert-delete-modal"
></i>
</td>
</tr>
</tbody>
<tbody
*
ngIf=
"jobListFilter().length"
>
<
!-- <
tbody *ngIf="jobListFilter().length">
<tr
*ngFor="let item of jobListFilter() | slice:((currentPage-1) * 10) : (((currentPage-1) * 10) + 10);let i = index">
<td class="text-center">
...
...
@@ -86,7 +107,7 @@
<i class="ti ti-trash cursor-pointer i-gray fs-l px-1" (click)="deleteJob(item)"></i>
</td>
</tr>
</tbody>
</tbody>
-->
</table>
</div>
<nav
class=
"pagination-style-3 overflow-auto my-5"
*
ngIf=
"page.length"
>
...
...
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