Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
design
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abookCheck
design
Commits
fc7965f0
Commit
fc7965f0
authored
2 years ago
by
NGO THI HONG
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#49091 Add Tab pickup
parent
1543b737
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
119 additions
and
0 deletions
+119
-0
app/pickup.html
+119
-0
app/script/check_pu.js
+0
-0
No files found.
app/pickup.html
0 → 100644
View file @
fc7965f0
<!DOCTYPE html>
<html
lang=
"ja-JP"
>
<head>
<meta
charset=
"utf-8"
>
<title>
ピックアップ
</title>
<meta
name=
"viewport"
content=
"width=device-width,minimum-scale=1,initial-scale=1"
>
<!-- vender css -->
<link
rel=
"stylesheet"
type=
"text/css"
href=
"css/fontawesome_relative_path.css"
>
<!-- main css -->
<link
rel=
"stylesheet"
type=
"text/css"
href=
"css/app.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"css/fontawesome_relative_path.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"css/header.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"css/footer.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"css/style.css"
>
<script
src=
"js/jquery-1.11.2.min.js?__UPDATEID__"
></script>
<script
src=
"script/check.js?__UPDATEID__"
></script>
<script
src=
"script/check-list.js?__UPDATEID__"
></script>
<script
src=
"script/check-foriOS.js"
></script>
<script
src=
"script/constant.js?__UPDATEID__"
></script>
<script
src=
"script/check_PU.js?__UPDATEID__"
></script>
</head>
<body
onload=
"CHK_pu.init();"
>
<header
>
<nav
class=
"navbar navbar-dark bg-primary position-fixed fixed-top w-100"
>
<a
class=
"navbar-brand category-btn lht-0"
>
<i
class=
"fas fa-chevron-left fs-12 p-1"
></i>
<span
class=
"d-none d-md-inline fs-10 multi-lang"
data-msg=
"buttonBack"
>
戻る
</span>
</a>
<h1
class=
"fs-10 font-weight-bold mb-0 text-white multi-lang"
data-msg=
"labelPickUp"
>
ピックアップ
</h1>
<a
href=
"#"
class=
"nav-link text-white lht-0 p-1"
>
<img
class=
"icon"
src=
"img/icon_update.svg"
alt=
"更新"
>
<span
class=
"d-none d-md-inline fs-10 align-middle multi-lang"
data-msg=
"buttonRefresh"
>
更新
</span>
</a>
</nav>
</header>
<!-- tab -->
<section
class=
"main-section"
>
<main>
<div
class=
"tab-wrap"
>
<input
id=
"tab-NewReport"
type=
"radio"
name=
"tab-task"
class=
"tab-switch"
>
<input
id=
"tab-ContinueWork"
type=
"radio"
name=
"tab-task"
class=
"tab-switch"
checked
>
<input
id=
"tab-ReportWithWarning"
type=
"radio"
name=
"tab-task"
class=
"tab-switch"
>
<ul
class=
"tab-menu pl-0"
>
<li
class=
"tab-label list-unstyled on"
><label
class=
"tab-label-NewReport fs-9 multi-lang"
data-msg=
"labelNewReport"
for=
"tab-NewReport"
>
新規報告
<div
class=
"task-cnt"
>
10
</div></label></li>
<li
class=
"tab-label list-unstyled"
><label
class=
"tab-label-ContinueWork fs-9 multi-lang"
data-msg=
"labelContinueWork"
for=
"tab-ContinueWork"
>
工程作業
<div
class=
"task-cnt"
>
99+
</div></label></li>
<li
class=
"tab-label list-unstyled"
><label
class=
"tab-label-ReportWithWarning fs- multi-lang"
data-msg=
"labelReportWithWarning"
for=
"tab-ReportWithWarning"
>
警告を含む報告
<div
class=
"task-cnt"
>
10
</div></label></li>
</ul>
<div
class=
"tab-content-area"
>
<!-- 新規報告 -->
<div
id=
"tab-content-NewReport"
class=
"tab-content on"
>
<div
class=
"container-fluid"
>
<ul
class=
"task-list p-0 mt-3"
id=
"newReport-list"
>
<li
class=
'item list-unstyled rounded border mb-2'
name =
'operationId_x5489'
>
<a
href=
"#"
class=
"d-block px-3 py-3 text-decoration-none text-dark"
>
<div
class=
"title"
>
作業名が入ります。
</div>
<i
class=
"fas fa-chevron-right fs-12"
></i>
</a>
</li>
</ul>
</div>
</div>
<!-- 工程作業 -->
<div
id=
"tab-content-ContinueWork"
class=
"tab-content"
>
<div
class=
"container-fluid"
>
<ul
class=
"task-list p-0 mt-3"
id=
"continueWork-list"
>
</ul>
</div>
</div>
<!-- 警告を含む報告 -->
<div
id=
"tab-content-ReportWithWarning"
class=
"tab-content"
>
<div
class=
"container-fluid"
>
<ul
class=
"task-list p-0 mt-3"
id=
"reportWithWarning-list"
>
</ul>
</div>
</div>
</div>
</div>
</main>
</section>
<footer
class=
"fixed-bottom bg-light"
>
<nav
class=
"d-flex justify-content-around"
>
<a
href=
"#"
class=
"d-block w-100 text-center py-2 text-decoration-none"
>
<img
src=
"img/icon_dashboard.svg"
alt=
"ダッシュボード"
class=
"p-1"
>
<div
class=
"fs-7"
>
ダッシュボード
</div>
</a>
<a
href=
"#"
class=
"d-block w-100 text-center py-2 text-decoration-none text-secondary"
>
<i
class=
"fas fa-tasks fs-14 p-1"
></i>
<div
class=
"fs-7"
>
作業一覧
</div>
</a>
<a
href=
"#"
class=
"d-block w-100 text-center py-2 text-decoration-none text-secondary"
>
<i
class=
"fas fa-folder fs-14 p-1"
></i>
<div
class=
"fs-7"
>
関連資料
</div>
</a>
<a
href=
"#"
class=
"d-block w-100 text-center py-2 text-decoration-none text-secondary"
>
<i
class=
"fas fa-cog fs-14 p-1"
></i>
<div
class=
"fs-7"
>
設定
</div>
</a>
</nav>
</footer>
<script
src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"
></script>
<script
type=
"text/javascript"
src=
"js/app.js"
></script>
<script
type=
"text/javascript"
src=
"js/common.js"
></script>
</body>
</html>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
app/script/check_pu.js
View file @
fc7965f0
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