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
0c112d90
Commit
0c112d90
authored
Aug 24, 2022
by
NGUYEN HOANG SON
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#49169 Implement push message detail html
parent
e3bf392f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
86 additions
and
0 deletions
+86
-0
app/message-detail.html
+72
-0
app/script/check-message-detail.js
+14
-0
No files found.
app/message-detail.html
0 → 100755
View file @
0c112d90
<!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"
>
<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-dashboard.js"></script> -->
<script
src=
"script/check-footer.js"
></script>
<script
src=
"script/check-message-list.js"
></script>
<script
src=
"script/check-message-detail.js"
></script>
</head>
<body
id=
"messageDetail"
onload=
"CHK_MessageDetail.init();"
>
<header>
<nav
class=
"navbar navbar-dark bg-primary position-fixed fixed-top w-100"
>
<a
href=
"javascript:CHK_MessageDetail.goBack();"
class=
"navbar-brand category-btn"
>
<i
class=
"fas fa-chevron-left fs-12 p-1"
></i>
<span
class=
"d-none d-md-inline fs-10"
>
戻る
</span>
</a>
<h1
class=
"fs-10 font-weight-bold mb-0 text-white multi-lang"
data-msg=
"messageDetailTopTitle"
>
プッシュメッセージ詳細
</h1>
<div></div>
</nav>
</header>
<section
class=
"container-fluid main-section"
>
<main>
<h2
class=
"fs-8 font-weight-bold mt-4 pb-2 border-bottom text-dark multi-lang"
data-msg=
"messageDetailHeaderTitle"
>
メッセージ詳細
</h2>
<div
class=
"messege-detail rounded border p-3 mt-3"
>
<table
class=
"w-100"
>
<tbody>
<tr
class=
"border-bottom"
>
<th
class=
"fs-8 p-2 text-secondary"
>
作業名
</th>
<td
class=
"p-2"
>
絞り検索
</td>
</tr>
<tr
class=
"border-bottom"
>
<th
class=
"fs-8 p-2 text-secondary"
>
日時
</th>
<td
class=
"p-2"
>
2022/07/06 14:14
</td>
</tr>
<tr
class=
"border-bottom"
>
<th
class=
"fs-8 p-2 text-secondary"
>
送信者
</th>
<td
class=
"p-2"
>
agentec
</td>
</tr>
<tr
class=
"border-bottom"
>
<th
class=
"fs-8 p-2 text-secondary"
>
内容
</th>
<td
class=
"p-2"
>
回答しました。
</td>
</tr>
</tbody>
</table>
</div>
</main>
</section>
<div
id=
"footer"
></div>
<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
app/script/check-message-detail.js
0 → 100644
View file @
0c112d90
var
CHK_MessageDetail
=
{};
msgMap
.
messageDetailTopTitle
=
{
ja
:
"プッシュメッセージ詳細"
,
ko
:
"Push Message Detail"
,
en
:
"Push Message Detail"
};
msgMap
.
messageDetailHeaderTitle
=
{
ja
:
"メッセージ詳細"
,
ko
:
"Message List"
,
en
:
"Message Detail"
};
CHK_MessageDetail
.
init
=
function
()
{
$
(
"#footer"
).
load
(
"main-footer.html"
,
function
()
{
CHK_Footer
.
activeDashboardBottomNav
();
});
}
CHK_MessageDetail
.
goBack
=
function
()
{
history
.
back
();
}
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