Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
check
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
abook_web
check
Commits
5168bcdd
Commit
5168bcdd
authored
Nov 11, 2022
by
Takumi Imai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#49772 ローディング
parent
4d6db034
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
23 changed files
with
377 additions
and
362 deletions
+377
-362
abweb/common/js/common.js
+4
-1
abweb/common/js/event.js
+0
-15
abweb/common/js/header.js
+66
-69
abweb/html/accountSetting.html
+65
-64
abweb/html/dashboard.html
+28
-25
abweb/html/index.html
+0
-0
abweb/html/pdfPrint.html
+25
-23
abweb/html/pickup.html
+0
-0
abweb/html/pushMessageDetail.html
+39
-37
abweb/html/pushMessageList.html
+22
-21
abweb/html/reportForm.html
+33
-31
abweb/html/reportList.html
+12
-11
abweb/html/sendMessage.html
+48
-46
abweb/js/dashboard/dashboard.js
+1
-0
abweb/js/pdfPrint/pdfPrint.js
+2
-0
abweb/js/pickup/pickup.js
+1
-0
abweb/js/pushMessageDetail/pushMessageDetail.js
+1
-0
abweb/js/pushMessageList/pushMessageList.js
+1
-0
abweb/js/reportForm/reportForm.js
+2
-0
abweb/js/reportList/reportList.js
+24
-18
abweb/js/sendMessage/sendMessage.js
+2
-0
abweb/js/setting/settings.js
+1
-0
abweb/js/topPage/topPage.js
+0
-1
No files found.
abweb/common/js/common.js
View file @
5168bcdd
...
...
@@ -38,7 +38,10 @@ COMMON.showLoading = function () {
* close loading
*/
COMMON
.
closeLoading
=
function
()
{
$
.
LoadingOverlay
(
'hide'
);
setTimeout
(
function
()
{
$
(
'#contentFieldOrverlay'
).
show
();
$
.
LoadingOverlay
(
'hide'
);
},
500
);
};
/**
...
...
abweb/common/js/event.js
View file @
5168bcdd
...
...
@@ -138,18 +138,3 @@ $('.view-menu .view-block-btn').on('click', function () {
$
(
'.view-content'
).
removeClass
(
'view-list'
);
$
(
'.view-content'
).
addClass
(
'view-block'
);
});
/** loading */
$
(
function
()
{
function
e
()
{
setTimeout
(
function
()
{
$
.
LoadingOverlay
(
'hide'
);
},
2000
);
}
$
(
'.search-form-btn'
).
on
(
'click'
,
function
()
{
$
.
LoadingOverlay
(
'show'
,
{
image
:
'img/loading.gif'
,
});
e
();
});
});
abweb/common/js/header.js
View file @
5168bcdd
...
...
@@ -5,81 +5,78 @@
* @since cms:1.4.3.2&1.4.3.3 web:1.0
*/
var
HEADER
=
{};
var
HEADER
=
{};
$
(
function
()
{
COMMON
.
showLoading
();
});
/** Direct home page setting */
HEADER
.
goToHomePage
=
function
(
pageId
)
{
DashboardSetting
.
getSettingData
(
function
(
settings
)
{
if
(
settings
.
dashboardHome
==
1
)
{
/** Direct home page setting */
HEADER
.
goToHomePage
=
function
(
pageId
)
{
DashboardSetting
.
getSettingData
(
function
(
settings
)
{
if
(
settings
.
dashboardHome
==
1
)
{
sessionStorage
.
activeHomePage
=
CONSTANT
.
PAGE_NAME
.
DASHBOARD
;
HEADER
.
goDashboard
();
}
else
{
}
else
{
sessionStorage
.
activeHomePage
=
CONSTANT
.
PAGE_TAB
.
OPERATION_LIST
;
HEADER
.
goOperationList
();
}
});
}
});
};
/**
* Go page of operationList
*/
HEADER
.
goOperationList
=
function
()
{
/**
* Go page of operationList
*/
HEADER
.
goOperationList
=
function
()
{
OL
.
init
();
};
/**
* Go page of dashboard
*/
HEADER
.
goDashboard
=
function
()
{
};
/**
* Go page of dashboard
*/
HEADER
.
goDashboard
=
function
()
{
sessionStorage
.
activeHomePage
=
CONSTANT
.
PAGE_NAME
.
DASHBOARD
;
COMMON
.
avwScreenMove
(
"dashboard.html"
);
};
/**
* Initialize with any navigation
*
* @param {String} bottomNav
*/
HEADER
.
activeInitBottomNav
=
function
(
bottomNav
)
{
HEADER
.
inactiveAllBottomNav
();
HEADER
.
activeBottomNav
(
bottomNav
);
};
/**
* change inactive all footer bottom
*/
HEADER
.
inactiveAllBottomNav
=
function
()
{
let
navs
=
document
.
getElementsByClassName
(
'bottom-nav'
);
for
(
i
=
0
;
i
<
navs
.
length
;
i
++
)
{
navs
[
i
].
className
=
navs
[
i
].
className
.
replace
(
'text-primary'
,
'text-secondary'
);
let
img
=
navs
[
i
].
querySelector
(
'img'
);
if
(
img
&&
img
.
getAttribute
(
'data-inactive-src'
))
{
img
.
src
=
img
.
getAttribute
(
'data-inactive-src'
);
}
}
};
/**
* Change specific footer bottom to active.
*
* @param {String} bottomNavId
*/
HEADER
.
activeBottomNav
=
function
(
bottomNavId
)
{
let
elm
=
$
(
'#'
+
bottomNavId
);
if
(
typeof
elm
!==
'object'
)
{
console
.
log
(
'HEADER.activeBottomNav:elm !== object:'
+
bottomNavId
);
return
;
}
elm
.
removeClass
(
'text-secondary'
);
elm
.
addClass
(
'text-primary'
);
let
img
=
elm
.
find
(
'img'
)[
0
];
if
(
img
&&
img
.
getAttribute
(
'data-src'
))
{
img
.
src
=
img
.
getAttribute
(
'data-src'
);
}
};
COMMON
.
avwScreenMove
(
'dashboard.html'
);
};
/**
* Initialize with any navigation
*
* @param {String} bottomNav
*/
HEADER
.
activeInitBottomNav
=
function
(
bottomNav
)
{
HEADER
.
inactiveAllBottomNav
();
HEADER
.
activeBottomNav
(
bottomNav
);
};
/**
* change inactive all footer bottom
*/
HEADER
.
inactiveAllBottomNav
=
function
()
{
let
navs
=
document
.
getElementsByClassName
(
'bottom-nav'
);
for
(
i
=
0
;
i
<
navs
.
length
;
i
++
)
{
navs
[
i
].
className
=
navs
[
i
].
className
.
replace
(
'text-primary'
,
'text-secondary'
);
let
img
=
navs
[
i
].
querySelector
(
'img'
);
if
(
img
&&
img
.
getAttribute
(
'data-inactive-src'
))
{
img
.
src
=
img
.
getAttribute
(
'data-inactive-src'
);
}
}
};
/**
* Change specific footer bottom to active.
*
* @param {String} bottomNavId
*/
HEADER
.
activeBottomNav
=
function
(
bottomNavId
)
{
let
elm
=
$
(
'#'
+
bottomNavId
);
if
(
typeof
elm
!==
'object'
)
{
console
.
log
(
'HEADER.activeBottomNav:elm !== object:'
+
bottomNavId
);
return
;
}
elm
.
removeClass
(
'text-secondary'
);
elm
.
addClass
(
'text-primary'
);
let
img
=
elm
.
find
(
'img'
)[
0
];
if
(
img
&&
img
.
getAttribute
(
'data-src'
))
{
img
.
src
=
img
.
getAttribute
(
'data-src'
);
}
};
abweb/html/accountSetting.html
View file @
5168bcdd
...
...
@@ -27,78 +27,79 @@
</head>
<body>
<!-- header -->
<div
id=
"includedHeader"
></div>
<div
id=
"contentFieldOrverlay"
style=
"display: none;"
>
<!-- header -->
<div
id=
"includedHeader"
></div>
<!-- account setting -->
<main
id=
"main"
>
<div
class=
"container-wrap"
>
<!-- title -->
<h1
class=
"fs-14 font-weight-bold pt-4 pb-3 mb-0 lang"
lang=
"account_setting"
>
アカウント設定
</h1>
<!-- account setting -->
<main
id=
"main"
>
<div
class=
"container-wrap"
>
<!-- title -->
<h1
class=
"fs-14 font-weight-bold pt-4 pb-3 mb-0 lang"
lang=
"account_setting"
>
アカウント設定
</h1>
<!-- content -->
<div
class=
"row"
>
<div
class=
"col-md-6 col-12 mb-4"
>
<div
class=
"card p-4"
>
<h2
class=
"fs-10 font-weight-bold mb-3 lang"
lang=
"accountInformation"
>
アカウント情報
</h2>
<table>
<colgroup>
<col
span=
"1"
class=
"w-120px"
>
</colgroup>
<tbody>
<tr
class=
"border-bottom"
>
<th
class=
"fs-9 p-2 text-secondary lang"
lang=
"txtLoginId"
>
ログインID
</th>
<td
class=
"p-2"
lang=
"txtLoginId"
id=
"txtLoginId"
>
login-idlogin-idlogin-id
</td>
</tr>
<tr
class=
"border-bottom"
>
<th
class=
"fs-9 p-2 text-secondary lang"
lang=
"txtLoginAccPath"
>
アカウントパス
</th>
<td
class=
"p-2"
lang=
"txtLoginAccPath"
id=
"txtLoginAccPath"
>
account-textaccount
</td>
</tr>
<tr
class=
"border-bottom"
>
<th
class=
"fs-9 p-2 text-secondary lang"
lang=
"txtLoginDate"
>
ログイン日時
</th>
<td
class=
"p-2"
lang=
"txtLastLoginTime"
id=
"txtLastLoginTime"
>
2022/09/30 12:00:00
</td>
</tr>
</tbody>
</table>
<!-- content -->
<div
class=
"row"
>
<div
class=
"col-md-6 col-12 mb-4"
>
<div
class=
"card p-4"
>
<h2
class=
"fs-10 font-weight-bold mb-3 lang"
lang=
"accountInformation"
>
アカウント情報
</h2>
<table>
<colgroup>
<col
span=
"1"
class=
"w-120px"
>
</colgroup>
<tbody>
<tr
class=
"border-bottom"
>
<th
class=
"fs-9 p-2 text-secondary lang"
lang=
"txtLoginId"
>
ログインID
</th>
<td
class=
"p-2"
lang=
"txtLoginId"
id=
"txtLoginId"
>
login-idlogin-idlogin-id
</td>
</tr>
<tr
class=
"border-bottom"
>
<th
class=
"fs-9 p-2 text-secondary lang"
lang=
"txtLoginAccPath"
>
アカウントパス
</th>
<td
class=
"p-2"
lang=
"txtLoginAccPath"
id=
"txtLoginAccPath"
>
account-textaccount
</td>
</tr>
<tr
class=
"border-bottom"
>
<th
class=
"fs-9 p-2 text-secondary lang"
lang=
"txtLoginDate"
>
ログイン日時
</th>
<td
class=
"p-2"
lang=
"txtLastLoginTime"
id=
"txtLastLoginTime"
>
2022/09/30 12:00:00
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div
>
<div
class=
"col-md-6 col-12 mb-4
"
>
<div
class=
"card p-4 password"
>
<h2
class=
"fs-10 font-weight-bold mb-3 lang"
lang=
"dspPwdUpd"
>
パスワード変更
</h2
>
<form
>
<div
class=
"form-group mb-3"
>
<label
id=
"lblPwdCur"
class=
"lang"
lang=
"txtPwdCurr"
>
現在のパスワード
</label
>
<
input
type=
"password"
class=
"form-control"
id=
"txtPwdCur"
maxlength=
"16"
aria-describedby=
"current"
>
</div
>
<div
class=
"form-group mb-3"
>
<label
id=
"lblPwdNew"
class=
"lang"
lang=
"txtPwdNew"
>
新しいパスワード
</label
>
<
input
type=
"password"
class=
"form-control"
id=
"txtPwdNew"
maxlength=
"16"
aria-describedby=
"new"
>
</div
>
<div
class=
"form-group mb-4"
>
<label
id=
"lblPwdNewRe"
class=
"lang"
lang=
"txtPwdNewRe"
>
新しいパスワード
</label
>
<
input
type=
"password"
class=
"form-control"
id=
"txtPwdNewRe"
maxlength=
"16"
aria-describedby=
"confirm"
>
</div
>
<p
class=
"error lang"
id=
"main-error-message"
style=
"display:none;"
>
パスワードまたはIDに誤りがあります
</p
>
<
button
type=
"submit"
class=
"btn btn-primary lang"
lang=
"dspChange"
id=
"dspPwdUpd1"
>
変更
</button
>
</
form
>
<div
class=
"col-md-6 col-12 mb-4"
>
<div
class=
"card p-4 password
"
>
<h2
class=
"fs-10 font-weight-bold mb-3 lang"
lang=
"dspPwdUpd"
>
パスワード変更
</h2
>
<form
>
<div
class=
"form-group mb-3"
>
<label
id=
"lblPwdCur"
class=
"lang"
lang=
"txtPwdCurr"
>
現在のパスワード
</label
>
<input
type=
"password"
class=
"form-control"
id=
"txtPwdCur"
maxlength=
"16"
aria-describedby=
"current"
>
<
/div
>
<div
class=
"form-group mb-3"
>
<label
id=
"lblPwdNew"
class=
"lang"
lang=
"txtPwdNew"
>
新しいパスワード
</label
>
<input
type=
"password"
class=
"form-control"
id=
"txtPwdNew"
maxlength=
"16"
aria-describedby=
"new"
>
<
/div
>
<div
class=
"form-group mb-4"
>
<label
id=
"lblPwdNewRe"
class=
"lang"
lang=
"txtPwdNewRe"
>
新しいパスワード
</label
>
<input
type=
"password"
class=
"form-control"
id=
"txtPwdNewRe"
maxlength=
"16"
aria-describedby=
"confirm"
>
<
/div
>
<p
class=
"error lang"
id=
"main-error-message"
style=
"display:none;"
>
パスワードまたはIDに誤りがあります
</p
>
<button
type=
"submit"
class=
"btn btn-primary lang"
lang=
"dspChange"
id=
"dspPwdUpd1"
>
変更
</button
>
<
/form
>
</
div
>
</div>
</div>
</div>
</div>
</main>
</main>
<!-- alert -->
<div
class=
"alert-overlay d-none"
></div>
<div
class=
"alert-area d-none"
>
<i
class=
"text-right fas fa-times fa-2x loading-close"
onclick=
"COMMON.alertClose();"
></i>
<div
class=
"fs-13 mt-4 text-left"
style=
"padding: 15px;"
id=
"alertMsg"
></div>
<!-- alert -->
<div
class=
"alert-overlay d-none"
></div>
<div
class=
"alert-area d-none"
>
<i
class=
"text-right fas fa-times fa-2x loading-close"
onclick=
"COMMON.alertClose();"
></i>
<div
class=
"fs-13 mt-4 text-left"
style=
"padding: 15px;"
id=
"alertMsg"
></div>
</div>
<!-- confirm -->
<div
id=
"includedConfirmModal"
></div>
<script
type=
"text/javascript"
src=
"../common/js/app.js?__UPDATEID__"
></script>
<script
src=
"../common/js/event.js?__UPDATEID__"
></script>
</div>
<!-- confirm -->
<div
id=
"includedConfirmModal"
></div>
<script
type=
"text/javascript"
src=
"../common/js/app.js?__UPDATEID__"
></script>
<script
src=
"../common/js/event.js?__UPDATEID__"
></script>
</body>
</html>
abweb/html/dashboard.html
View file @
5168bcdd
...
...
@@ -37,35 +37,37 @@
</head>
<body>
<!-- header -->
<div
id=
"includedHeader"
></div>
<!-- dashboard -->
<main>
<div
class=
"container-wrap"
>
<div
id=
"includedMainTitle"
></div>
<!-- sub title -->
<h2
class=
"fs-8 font-weight-bold lang"
id=
"#pickupHeader"
lang=
"pickup"
></h2>
<div
id=
"contentFieldOrverlay"
style=
"display: none;"
>
<!-- header -->
<div
id=
"includedHeader"
></div>
<!-- dashboard -->
<main>
<div
class=
"container-wrap"
>
<div
id=
"includedMainTitle"
></div>
<!-- sub title -->
<h2
class=
"fs-8 font-weight-bold lang"
id=
"#pickupHeader"
lang=
"pickup"
></h2>
<!-- card -->
<ul
class=
"dashboard-menu p-0 mt-3 d-grid col-gap-10 grid-col-md-4 grid-col-2"
id =
"pickupItems"
>
</ul>
<!-- card -->
<ul
class=
"dashboard-menu p-0 mt-3 d-grid col-gap-10 grid-col-md-4 grid-col-2"
id =
"pickupItems"
>
</ul>
<!-- sub title -->
<h2
class=
"fs-8 font-weight-bold lang"
lang=
"communication"
></h2>
<!-- sub title -->
<h2
class=
"fs-8 font-weight-bold lang"
lang=
"communication"
></h2>
<!-- card -->
<ul
class=
"dashboard-menu p-0 mt-3 d-grid col-gap-10 grid-col-md-4 grid-col-2"
id=
"communicationItems"
>
</ul>
</div>
</main>
<!-- card -->
<ul
class=
"dashboard-menu p-0 mt-3 d-grid col-gap-10 grid-col-md-4 grid-col-2"
id=
"communicationItems"
>
</ul>
</div>
</main>
<!-- dashboard setting model -->
<div
id=
"includedDashboardSetting"
></div>
<!-- dashboard setting model -->
<div
id=
"includedDashboardSetting"
></div>
<!-- confirm -->
<div
id=
"includedConfirmModal"
></div>
<script
type=
"text/javascript"
src=
"../common/js/app.js?__UPDATEID__"
></script>
<script
src=
"../common/js/event.js?__UPDATEID__"
></script>
<!-- confirm -->
<div
id=
"includedConfirmModal"
></div>
<script
type=
"text/javascript"
src=
"../common/js/app.js?__UPDATEID__"
></script>
<script
src=
"../common/js/event.js?__UPDATEID__"
></script>
</div>
</body>
</html>
\ No newline at end of file
abweb/html/index.html
View file @
5168bcdd
This diff is collapsed.
Click to expand it.
abweb/html/pdfPrint.html
View file @
5168bcdd
...
...
@@ -33,33 +33,34 @@
</head>
<body>
<!-- header -->
<div
id=
"includedHeader"
></div>
<div
id=
"contentFieldOrverlay"
style=
"display: none;"
>
<!-- header -->
<div
id=
"includedHeader"
></div>
<!-- title -->
<div
id=
"main-ttl"
>
<div
class=
"container-wrap"
>
<!-- breadcrumb -->
<nav
aria-label=
"breadcrumb"
>
<ol
class=
"breadcrumb px-0 mb-0"
>
<li
class=
"breadcrumb-item"
><a
href=
"task-list.html"
class=
"text-decoration-none text-underline"
>
作業一覧
</a></li>
<li
class=
"breadcrumb-item"
><a
href=
"report-list.html"
class=
"text-decoration-none text-underline"
>
報告一覧
</a></li>
<li
class=
"breadcrumb-item active"
aria-current=
"page"
><span>
pdf出力
</span></li>
</ol>
</nav>
<!-- title -->
<h1
class=
"fs-14 font-weight-bold pt-sm-4 pt-2 pb-3 mb-0"
>
pdf出力
</h1>
<!-- title -->
<div
id=
"main-ttl"
>
<div
class=
"container-wrap"
>
<!-- breadcrumb -->
<nav
aria-label=
"breadcrumb"
>
<ol
class=
"breadcrumb px-0 mb-0"
>
<li
class=
"breadcrumb-item"
><a
href=
"task-list.html"
class=
"text-decoration-none text-underline"
>
作業一覧
</a></li>
<li
class=
"breadcrumb-item"
><a
href=
"report-list.html"
class=
"text-decoration-none text-underline"
>
報告一覧
</a></li>
<li
class=
"breadcrumb-item active"
aria-current=
"page"
><span>
pdf出力
</span></li>
</ol>
</nav>
<!-- title -->
<h1
class=
"fs-14 font-weight-bold pt-sm-4 pt-2 pb-3 mb-0"
>
pdf出力
</h1>
</div>
</div>
</div>
<!-- ↓↓↓ ここから共通HTML ↓↓↓ -->
<div
class=
"container-wrap mb-5"
id=
"pdfPrint"
></div>
<!-- ↓↓↓ ここから共通HTML ↓↓↓ -->
<div
class=
"container-wrap mb-5"
id=
"pdfPrint"
></div>
<!-- confirm -->
<div
id=
"includedConfirmModal"
></div>
<script
type=
"text/javascript"
src=
"../common/js/app.js?__UPDATEID__"
></script>
<script
src=
"../common/js/event.js?__UPDATEID__"
></script>
<!-- confirm -->
<div
id=
"includedConfirmModal"
></div>
<script
type=
"text/javascript"
src=
"../common/js/app.js?__UPDATEID__"
></script>
<script
src=
"../common/js/event.js?__UPDATEID__"
></script>
</div>
</body>
</html>
\ No newline at end of file
abweb/html/pickup.html
View file @
5168bcdd
This diff is collapsed.
Click to expand it.
abweb/html/pushMessageDetail.html
View file @
5168bcdd
...
...
@@ -33,46 +33,47 @@
</head>
<body>
<!-- header -->
<div
id=
"includedHeader"
></div>
<!-- message detail -->
<main>
<div
class=
"container-wrap"
>
<div
id=
"includedMainTitle"
></div>
<div
class=
"row"
>
<div
class=
"col-12"
>
<div
class=
"card p-4"
>
<table>
<colgroup>
<col
span=
"1"
class=
"w-100px"
>
</colgroup>
<tbody>
<tr
class=
"border-bottom"
>
<th
class=
"fs-9 p-2 text-secondary lang"
lang=
"operationName"
></th>
<td
class=
"p-2"
id=
"operationName"
></td>
</tr>
<tr
class=
"border-bottom"
>
<th
class=
"fs-9 p-2 text-secondary lang"
lang=
"sendDate"
></th>
<td
class=
"p-2"
id=
"sendDate"
></td>
</tr>
<tr
class=
"border-bottom"
>
<th
class=
"fs-9 p-2 text-secondary lang"
lang=
"sender"
></th>
<td
class=
"p-2"
id=
"sender"
></td>
</tr>
<tr
class=
"border-bottom"
>
<th
class=
"fs-9 p-2 text-secondary lang"
lang=
"content"
></th>
<td
class=
"p-2"
id=
"content"
></td>
</tr>
</tbody>
</table>
<div
id=
"contentFieldOrverlay"
style=
"display: none;"
>
<!-- header -->
<div
id=
"includedHeader"
></div>
<!-- message detail -->
<main>
<div
class=
"container-wrap"
>
<div
id=
"includedMainTitle"
></div>
<div
class=
"row"
>
<div
class=
"col-12"
>
<div
class=
"card p-4"
>
<table>
<colgroup>
<col
span=
"1"
class=
"w-100px"
>
</colgroup>
<tbody>
<tr
class=
"border-bottom"
>
<th
class=
"fs-9 p-2 text-secondary lang"
lang=
"operationName"
></th>
<td
class=
"p-2"
id=
"operationName"
></td>
</tr>
<tr
class=
"border-bottom"
>
<th
class=
"fs-9 p-2 text-secondary lang"
lang=
"sendDate"
></th>
<td
class=
"p-2"
id=
"sendDate"
></td>
</tr>
<tr
class=
"border-bottom"
>
<th
class=
"fs-9 p-2 text-secondary lang"
lang=
"sender"
></th>
<td
class=
"p-2"
id=
"sender"
></td>
</tr>
<tr
class=
"border-bottom"
>
<th
class=
"fs-9 p-2 text-secondary lang"
lang=
"content"
></th>
<td
class=
"p-2"
id=
"content"
></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</
div
>
</main
>
<script
type=
"text/javascript"
src=
"../common/js/app.js
"
></script>
<
script
src=
"../common/js/event.js?__UPDATEID__"
></script
>
</
main
>
<script
type=
"text/javascript"
src=
"../common/js/app.js"
></script
>
<script
src=
"../common/js/event.js?__UPDATEID__
"
></script>
<
/div
>
</body>
</html>
\ No newline at end of file
abweb/html/pushMessageList.html
View file @
5168bcdd
...
...
@@ -33,26 +33,26 @@
</head>
<body>
<div
id=
"includedHeader"
></div
>
<!-- message list --
>
<main
>
<div
class=
"container-wrap"
>
<!-- header --
>
<div
id=
"includedMainTitle"
></div
>
<!-- message --
>
<ul
class=
"card-list message-list p-0"
id=
"messageList
"
>
<li
class=
"card mb-2 not-found d-none
"
>
<div
class=
"text-dark mb-1 px-3 py-5 text-center m-auto
"
>
<img
src=
"../common/img/icon_not_found.svg"
alt=
"メッセージがありません。"
class=
"not-found-img mb-2"
>
<
div
class=
"fs-9 text-secondary font-weight-bold lang"
lang=
"messageListEmpty"
><
/div>
</
div
>
</
li
>
</
ul
>
</
div
>
</main
>
<script
type=
"text/javascript"
src=
"../common/js/app.js
"
></script>
<
script
src=
"../common/js/event.js?__UPDATEID__"
></script
>
<div
id=
"contentFieldOrverlay"
style=
"display: none;"
>
<div
id=
"includedHeader"
></div>
<!-- message list --
>
<main
>
<div
class=
"container-wrap"
>
<!-- header --
>
<div
id=
"includedMainTitle"
></div
>
<!-- message --
>
<ul
class=
"card-list message-list p-0"
id=
"messageList"
>
<li
class=
"card mb-2 not-found d-none
"
>
<div
class=
"text-dark mb-1 px-3 py-5 text-center m-auto
"
>
<img
src=
"../common/img/icon_not_found.svg"
alt=
"メッセージがありません。"
class=
"not-found-img mb-2
"
>
<div
class=
"fs-9 text-secondary font-weight-bold lang"
lang=
"messageListEmpty"
></div
>
</div>
</
li
>
</
ul
>
</
div
>
</
main
>
<script
type=
"text/javascript"
src=
"../common/js/app.js"
></script
>
<script
src=
"../common/js/event.js?__UPDATEID__
"
></script>
<
/div
>
</body>
</html>
\ No newline at end of file
abweb/html/reportForm.html
View file @
5168bcdd
...
...
@@ -21,46 +21,47 @@
<script
type=
"text/javascript"
src=
"../common/js/constant.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"../common/js/common.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"../js/header/header.js?__UPDATEID__"
></script>
<script
src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"
></script>
<script
src=
"https://cdn.jsdelivr.net/npm/gasparesganga-jquery-loading-overlay@2.1.7/dist/loadingoverlay.min.js"
></script>
<script
src=
"../js/reportForm/reportForm.js?__UPDATEID__"
></script>
</head>
<body
onload=
"RF.init();"
>
<!-- header -->
<div
id=
"includedHeader"
></div>
<div
id=
"contentFieldOrverlay"
style=
"display: none;"
>
<!-- header -->
<div
id=
"includedHeader"
></div>
<!-- report list -->
<main>
<div
class=
"container-wrap"
>
<!-- breadcrumb -->
<nav
aria-label=
"breadcrumb"
>
<ol
class=
"breadcrumb px-0 mb-0"
>
<li
class=
"breadcrumb-item"
><a
href=
"task-list.html"
class=
"text-decoration-none text-underline"
>
作業一覧
</a></li>
<li
class=
"breadcrumb-item active"
aria-current=
"page"
><span>
報告一覧
</span></li>
<li
class=
"breadcrumb-item active"
aria-current=
"page"
><span>
報告
</span></li>
</ol>
</nav>
<!-- title -->
<div
class=
"d-flex align-items-center"
>
<h1
class=
"fs-14 font-weight-bold pt-sm-4 pt-2 pb-3 mb-0 mr-auto"
lang=
"reportForm"
></h1>
<div
style=
"display: none;"
>
<div><span
style=
"font-size:18px;"
lang=
"periodicInspectionPeriod"
></span></div>
<div><span
id=
"inspectDate"
></span></div>
</div>
<div
class=
"quickReportBtn"
id=
"quickReportBtn"
onclick=
"submitForm();"
>
<img
src=
"../common/img/icon_pdf.svg"
alt=
"pdf出力"
class=
"p-1 w-40px"
data-toggle=
"tooltip"
data-placement=
"bottom"
title=
"pdfPrint"
>
<!-- report list -->
<main>
<div
class=
"container-wrap"
>
<!-- breadcrumb -->
<nav
aria-label=
"breadcrumb"
>
<ol
class=
"breadcrumb px-0 mb-0"
>
<li
class=
"breadcrumb-item"
><a
href=
"task-list.html"
class=
"text-decoration-none text-underline"
>
作業一覧
</a></li>
<li
class=
"breadcrumb-item active"
aria-current=
"page"
><span>
報告一覧
</span></li>
<li
class=
"breadcrumb-item active"
aria-current=
"page"
><span>
報告
</span></li>
</ol>
</nav>
<!-- title -->
<div
class=
"d-flex align-items-center"
>
<h1
class=
"fs-14 font-weight-bold pt-sm-4 pt-2 pb-3 mb-0 mr-auto"
lang=
"reportForm"
></h1>
<div
style=
"display: none;"
>
<div><span
style=
"font-size:18px;"
lang=
"periodicInspectionPeriod"
></span></div>
<div><span
id=
"inspectDate"
></span></div>
</div>
<div
class=
"quickReportBtn"
id=
"quickReportBtn"
onclick=
"submitForm();"
>
<img
src=
"../common/img/icon_pdf.svg"
alt=
"pdf出力"
class=
"p-1 w-40px"
data-toggle=
"tooltip"
data-placement=
"bottom"
title=
"pdfPrint"
>
</div>
</div>
</div>
</div>
</main>
</main>
<div
class=
"mb-5"
id=
"report-form"
></div>
<div
class=
"mb-5"
id=
"report-form"
></div>
<!-- confirm -->
<div
id=
"includedConfirmModal"
></div>
<script
type=
"text/javascript"
src=
"../common/js/app.js?__UPDATEID__"
></script>
<script
src=
"../common/js/event.js?__UPDATEID__"
></script>
<!-- confirm -->
<div
id=
"includedConfirmModal"
></div>
<script
type=
"text/javascript"
src=
"../common/js/app.js?__UPDATEID__"
></script>
<script
src=
"../common/js/event.js?__UPDATEID__"
></script>
</div>
</body>
</html>
\ No newline at end of file
abweb/html/reportList.html
View file @
5168bcdd
...
...
@@ -33,19 +33,20 @@
</script>
</head>
<body
>
<!-- header -->
<div
id=
"includedHeader"
></div>
<div
id=
"includedMainTitle"
></div>
<body>
<div
id=
"contentFieldOrverlay"
style=
"display: none;"
>
<!-- header -->
<div
id=
"includedHeader"
></div>
<div
id=
"includedMainTitle"
></div>
<!-- report list -->
<div
class=
"container-wrap mb-5"
id=
"reportList"
></div>
<!-- report list -->
<div
class=
"container-wrap mb-5"
id=
"reportList"
></div>
<!-- confirm -->
<div
id=
"includedConfirmModal"
></div>
<script
type=
"text/javascript"
src=
"../common/js/app.js?__UPDATEID__"
></script>
<script
src=
"../common/js/event.js?__UPDATEID__"
></script>
<!-- confirm -->
<div
id=
"includedConfirmModal"
></div>
<script
type=
"text/javascript"
src=
"../common/js/app.js?__UPDATEID__"
></script>
<script
src=
"../common/js/event.js?__UPDATEID__"
></script>
</div>
</body>
</html>
abweb/html/sendMessage.html
View file @
5168bcdd
...
...
@@ -36,61 +36,62 @@
</head>
<body>
<div
id=
"includedHeader"
></div>
<!-- send message -->
<main>
<div
class=
"container-wrap"
>
<!-- header -->
<div
id=
"includedMainTitle"
></div>
<!-- content -->
<div
class=
"py-2"
>
<div
class=
"row"
>
<div
class=
"col-12"
>
<form
action=
"#"
>
<div
class=
"form-group form-row"
>
<div
class=
"col-lg-1 col-md-2 col-3 control-label"
>
<button
type=
"button"
class=
"btn btn-sm btn-tertiary lang"
lang=
"buttonOperationSelect"
data-toggle=
"modal"
data-target=
"#task-list-modal"
></button>
</div>
<div
class=
"col-lg-11 col-md-10 col-9"
>
<div
id=
"operationSelected"
data-operation-id=
""
></div>
<div
id=
"contentFieldOrverlay"
style=
"display: none;"
>
<div
id=
"includedHeader"
></div>
<!-- send message -->
<main>
<div
class=
"container-wrap"
>
<!-- header -->
<div
id=
"includedMainTitle"
></div>
<!-- content -->
<div
class=
"py-2"
>
<div
class=
"row"
>
<div
class=
"col-12"
>
<form
action=
"#"
>
<div
class=
"form-group form-row"
>
<div
class=
"col-lg-1 col-md-2 col-3 control-label"
>
<button
type=
"button"
class=
"btn btn-sm btn-tertiary lang"
lang=
"buttonOperationSelect"
data-toggle=
"modal"
data-target=
"#task-list-modal"
></button>
</div>
<div
class=
"col-lg-11 col-md-10 col-9"
>
<div
id=
"operationSelected"
data-operation-id=
""
></div>
</div>
</div>
</div
>
<div
class=
"form-group form-row"
>
<label
for=
"address"
class=
"col-lg-1 col-md-2 col-3 control-label lang"
lang=
"labelSendTypeTitle"
></label
>
<div
class=
"col-lg-11 col-md-10 col-9
"
>
<div
class=
"btn-group btn-group-toggle"
data-toggle=
"buttons
"
>
<label
class=
"btn btn-sm btn-primary custom active"
for=
"sendTypeGroup"
>
<
input
type=
"radio"
name=
"sendType"
id=
"sendTypeGroup"
value=
"0"
autocomplete=
"off"
checked
></label
>
<label
class=
"btn btn-sm btn-primary custom"
for=
"sendTypeAll"
>
<input
type=
"radio"
name=
"sendType"
id=
"sendTypeAll"
value=
"1"
autocomplete=
"off"
></label
>
<div
class=
"form-group form-row"
>
<label
for=
"address"
class=
"col-lg-1 col-md-2 col-3 control-label lang"
lang=
"labelSendTypeTitle"
></label
>
<div
class=
"col-lg-11 col-md-10 col-9"
>
<div
class=
"btn-group btn-group-toggle"
data-toggle=
"buttons
"
>
<label
class=
"btn btn-sm btn-primary custom active"
for=
"sendTypeGroup
"
>
<input
type=
"radio"
name=
"sendType"
id=
"sendTypeGroup"
value=
"0"
autocomplete=
"off"
checked
></label
>
<
label
class=
"btn btn-sm btn-primary custom"
for=
"sendTypeAll"
>
<input
type=
"radio"
name=
"sendType"
id=
"sendTypeAll"
value=
"1"
autocomplete=
"off"
></label
>
</div
>
</div>
</div>
</div>
<div
class=
"form-group mb-4"
>
<div
class=
"d-flex justify-content-between"
>
<label
for=
"message-content"
class=
"lang"
lang=
"txtMessageContent"
></label>
<a
href=
"#"
data-toggle=
"modal"
data-target=
"#select-template-modal"
class=
"lang"
lang=
"buttonTemplateSelection"
></a>
<div
class=
"form-group mb-4"
>
<div
class=
"d-flex justify-content-between"
>
<label
for=
"message-content"
class=
"lang"
lang=
"txtMessageContent"
></label>
<a
href=
"#"
data-toggle=
"modal"
data-target=
"#select-template-modal"
class=
"lang"
lang=
"buttonTemplateSelection"
></a>
</div>
<textarea
name=
"message-content"
class=
"form-control"
id=
"messageContent"
cols=
"30"
rows=
"10"
></textarea>
</div>
<textarea
name=
"message-content"
class=
"form-control"
id=
"messageContent"
cols=
"30"
rows=
"10"
></textarea>
</div>
</form>
</form>
</div>
</div>
</div>
<button
type=
"submit"
class=
"btn btn-primary lang"
lang=
"buttonSend"
onclick=
"SendMessage.onClickSend();"
></button>
</div>
<button
type=
"submit"
class=
"btn btn-primary lang"
lang=
"buttonSend"
onclick=
"SendMessage.onClickSend();"
></button>
</div>
</div>
</main>
</div>
</main>
<!-- task list modal -->
<div
id=
"includeOperationSelect"
></div>
<!-- task list modal -->
<div
id=
"includeOperationSelect"
></div>
<!-- select template modal -->
<div
id=
"includeTemplateModal"
></div>
<script
type=
"text/javascript"
src=
"../common/js/app.js"
></script>
<script
src=
"../common/js/event.js?__UPDATEID__"
></script>
<!-- select template modal -->
<div
id=
"includeTemplateModal"
></div>
<script
type=
"text/javascript"
src=
"../common/js/app.js"
></script>
<script
src=
"../common/js/event.js?__UPDATEID__"
></script>
</div>
</body>
</html>
\ No newline at end of file
abweb/js/dashboard/dashboard.js
View file @
5168bcdd
...
...
@@ -134,6 +134,7 @@ DASHBOARD.init = function () {
DASHBOARD
.
initCommunications
();
});
});
COMMON
.
closeLoading
();
};
/** load common data */
DASHBOARD
.
loadCommon
=
function
()
{
...
...
abweb/js/pdfPrint/pdfPrint.js
View file @
5168bcdd
...
...
@@ -14,6 +14,8 @@ PP.init = function () {
PP
.
loadCommon
();
PP
.
initPdfList
();
COMMON
.
closeLoading
();
};
PP
.
loadCommon
=
function
()
{
...
...
abweb/js/pickup/pickup.js
View file @
5168bcdd
...
...
@@ -150,6 +150,7 @@ PICKUP.init = function () {
TEMPLATE
.
loadMainNavsTitle
(
'#includedMainTitle'
,
'pickup'
,
navs
,
null
);
PICKUP
.
initSettingActivePickup
();
PICKUP
.
settingPickup
();
COMMON
.
closeLoading
();
};
/**
* Setting pickup data
...
...
abweb/js/pushMessageDetail/pushMessageDetail.js
View file @
5168bcdd
...
...
@@ -48,6 +48,7 @@ PushMessageDetail.init = function () {
PushMessageDetail
.
getMessageDetail
(
urlParam
.
pushMessageId
,
function
(
message
)
{
PushMessageDetail
.
showMessage
(
message
);
});
COMMON
.
closeLoading
();
};
/**
...
...
abweb/js/pushMessageList/pushMessageList.js
View file @
5168bcdd
...
...
@@ -25,6 +25,7 @@ PushMessageList.init = function () {
PushMessageList
.
getMessageList
(
function
(
messageList
)
{
PushMessageList
.
generateMessageListHtml
(
messageList
.
pushMessageList
);
});
COMMON
.
closeLoading
();
};
/**
...
...
abweb/js/reportForm/reportForm.js
View file @
5168bcdd
...
...
@@ -12,6 +12,7 @@ RF.init = function () {
RF
.
loadCommon
();
RF
.
initFormView
();
COMMON
.
closeLoading
();
};
RF
.
loadCommon
=
function
()
{
...
...
@@ -36,6 +37,7 @@ RF.initFormView = function () {
params
.
sid
=
COMMON
.
getSid
();
params
.
operationId
=
operationId
;
params
.
lang
=
I18N
.
getCurrentLanguage
;
if
(
taskKey
)
params
.
taskKey
=
taskKey
;
if
(
replyNo
)
params
.
replyNo
=
replyNo
;
if
(
processKey
)
params
.
processKey
=
processKey
;
...
...
abweb/js/reportList/reportList.js
View file @
5168bcdd
...
...
@@ -13,12 +13,13 @@ RL.init = function () {
RL
.
checkQuickReport
();
RL
.
loadCommon
();
RL
.
initTaskReportList
();
COMMON
.
closeLoading
();
};
RL
.
loadCommon
=
function
()
{
TEMPLATE
.
loadHearder
(
"#includedHeader"
);
TEMPLATE
.
loadConfirmModal
(
"#includedConfirmModal"
);
const
navs
=
[
RL
.
loadCommon
=
function
()
{
TEMPLATE
.
loadHearder
(
'#includedHeader'
);
TEMPLATE
.
loadConfirmModal
(
'#includedConfirmModal'
);
const
navs
=
[
{
titleLang
:
'dashboard'
,
href
:
'dashboard.html'
,
...
...
@@ -27,29 +28,35 @@ RL.loadCommon = function() {
titleLang
:
'pickup'
,
},
];
TEMPLATE
.
loadMainNavsTitle
(
"#includedMainTitle"
,
"reportList"
,
navs
,
RL
.
loadMainTitleCallback
);
}
TEMPLATE
.
loadMainNavsTitle
(
'#includedMainTitle'
,
'reportList'
,
navs
,
RL
.
loadMainTitleCallback
);
}
;
RL
.
isQuickReport
;
RL
.
checkQuickReport
=
function
()
{
RL
.
checkQuickReport
=
function
()
{
if
(
sessionStorage
.
OL_operationId
)
{
let
params
=
{};
params
.
sid
=
COMMON
.
getSid
();
params
.
operationId
=
sessionStorage
.
OL_operationId
;
params
.
returnUrl
=
CONSTANT
.
URL
.
WEB
.
BASE
+
CONSTANT
.
URL
.
WEB
.
OPERATION_LIST
;
let
url
=
COMMON
.
format
(
ClientData
.
conf_checkApiUrl
(),
ClientData
.
userInfo_accountPath
())
+
CONSTANT
.
URL
.
CMS
.
API
.
IS_QUICK_REPORT
;
COMMON
.
cmsAjax
(
url
,
params
,
false
,
function
(
result
)
{
RL
.
isQuickReport
=
result
.
isQuickReport
;
},
function
()
{
COMMON
.
displayAlert
(
"msgOperationEmpty"
);
COMMON
.
avwScreenMove
(
"index.html"
);
});
let
url
=
COMMON
.
format
(
ClientData
.
conf_checkApiUrl
(),
ClientData
.
userInfo_accountPath
())
+
CONSTANT
.
URL
.
CMS
.
API
.
IS_QUICK_REPORT
;
COMMON
.
cmsAjax
(
url
,
params
,
false
,
function
(
result
)
{
RL
.
isQuickReport
=
result
.
isQuickReport
;
},
function
()
{
COMMON
.
displayAlert
(
'msgOperationEmpty'
);
COMMON
.
avwScreenMove
(
'index.html'
);
},
);
}
else
{
COMMON
.
displayAlert
(
"error"
);
COMMON
.
avwScreenMove
(
"index.html"
);
COMMON
.
displayAlert
(
'error'
);
COMMON
.
avwScreenMove
(
'index.html'
);
}
}
}
;
RL
.
initTaskReportList
=
function
()
{
if
(
sessionStorage
.
OL_operationId
)
{
...
...
@@ -68,7 +75,6 @@ RL.initTaskReportList = function () {
RL
.
loadMainTitleCallback
=
function
()
{
//add dashboard setting item
if
(
RL
.
isQuickReport
)
{
var
elmA
=
$
(
'<div id="btnPdfPrint" onclick="RL.goPdfPrint();">'
);
let
elmImg
=
$
(
'<img src="../common/img/icon_pdf.svg" alt="pdf出力" class="p-1 w-40px" data-toggle="tooltip" data-placement="bottom" title="pdf出力">'
);
elmImg
.
attr
(
'title'
,
I18N
.
i18nText
(
'reportList'
));
...
...
abweb/js/sendMessage/sendMessage.js
View file @
5168bcdd
...
...
@@ -129,4 +129,6 @@ SendMessage.init = function () {
I18N
.
initi18n
();
$
(
"label[for='sendTypeGroup']"
).
append
(
I18N
.
i18nText
(
'labelSendTypeGroup'
));
$
(
"label[for='sendTypeAll']"
).
append
(
I18N
.
i18nText
(
'labelSendTypeAll'
));
COMMON
.
closeLoading
();
};
abweb/js/setting/settings.js
View file @
5168bcdd
...
...
@@ -11,6 +11,7 @@ $(document).ready(function () {
COMMON
.
checkAuth
(
false
);
SETTINGS
.
initScreen
();
$
(
'#dspPwdUpd1'
).
click
(
SETTINGS
.
dspPwdUpd1_Click
);
COMMON
.
closeLoading
();
});
// Process changing password
...
...
abweb/js/topPage/topPage.js
View file @
5168bcdd
...
...
@@ -19,7 +19,6 @@ $(document).ready(function () {
* show page
*/
TOP
.
init
=
function
()
{
COMMON
.
showLoading
();
HEADER
.
goToHomePage
();
COMMON
.
closeLoading
();
};
...
...
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