Commit 0c112d90 by NGUYEN HOANG SON

#49169 Implement push message detail html

parent e3bf392f
<!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
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();
}
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