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
79ca3bbd
Commit
79ca3bbd
authored
Nov 15, 2022
by
Kang Donghun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ローディング修正
parent
f0c78053
Hide whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
468 additions
and
480 deletions
+468
-480
abweb/common/css/loading.css
+15
-0
abweb/common/js/common.js
+9
-31
abweb/html/accountSetting.html
+64
-64
abweb/html/dashboard.html
+28
-27
abweb/html/index.html
+83
-96
abweb/html/login.html
+3
-1
abweb/html/pdfPrint.html
+25
-24
abweb/html/pickup.html
+99
-98
abweb/html/pushMessageDetail.html
+39
-38
abweb/html/pushMessageList.html
+22
-21
abweb/html/reportForm.html
+12
-11
abweb/html/reportList.html
+13
-13
abweb/html/sendMessage.html
+47
-46
abweb/js/login/login.js
+4
-4
abweb/js/operationList/operationList.js
+1
-1
abweb/js/reportForm/reportForm.js
+1
-2
abweb/js/reportList/reportList.js
+1
-1
abweb/js/setting/settings.js
+1
-1
abweb/js/template/template.js
+1
-1
No files found.
abweb/common/css/loading.css
0 → 100644
View file @
79ca3bbd
#loader
{
position
:
fixed
;
top
:
0
;
z-index
:
999
;
height
:
100vh
;
width
:
100vw
;
display
:
block
;
background
:
rgb
(
255
,
255
,
255
,
.5
);
background-position
:
center
;
background-image
:
url("../img/loading.gif")
;
background-repeat
:
no-repeat
;
background-size
:
200px
;
display
:
none
;
}
\ No newline at end of file
abweb/common/js/common.js
View file @
79ca3bbd
...
...
@@ -20,7 +20,7 @@ COMMON.hasErrorKey = 'AVW_HASERR';
* @param {*} url
*/
COMMON
.
avwScreenMove
=
function
(
url
)
{
//
COMMON.showLoading();
COMMON
.
showLoading
();
window
.
onbeforeunload
=
null
;
window
.
location
=
url
;
};
...
...
@@ -32,19 +32,16 @@ COMMON.avwScreenMove = function (url) {
* @param {String} key
*/
COMMON
.
showLoading
=
function
()
{
// $.LoadingOverlay('show', {
// image: '../common/img/loading.gif',
// });
document
.
getElementById
(
'loader'
).
style
.
display
=
'block'
;
};
/**
* close loading
*/
COMMON
.
closeLoading
=
function
()
{
setTimeout
(
function
()
{
$
(
'#contentFieldOrverlay'
).
show
();
// $.LoadingOverlay('hide');
},
500
);
setTimeout
(
function
(){
document
.
getElementById
(
'loader'
).
style
.
display
=
'none'
;
},
1000
);
};
/**
...
...
@@ -167,10 +164,10 @@ COMMON.cmsAjax = function (url, param, async = true, callback, errorCallback, ty
}
else
if
(
result
.
httpStatus
==
'401'
)
{
COMMON
.
goUrlWithCurrentParams
(
CONSTANT
.
PAGE_NAME
.
LOGIN
);
}
else
if
(
result
.
httpStatus
==
'403'
)
{
//
COMMON.closeLoading();
COMMON
.
closeLoading
();
COMMON
.
displayAlert
(
'errorOccurred'
);
}
else
{
//
COMMON.closeLoading();
COMMON
.
closeLoading
();
COMMON
.
displayAlert
(
result
.
message
);
}
},
...
...
@@ -178,7 +175,7 @@ COMMON.cmsAjax = function (url, param, async = true, callback, errorCallback, ty
if
(
errorCallback
)
{
errorCallback
(
XMLHttpRequest
,
textStatus
,
errorThrown
);
}
else
{
//
COMMON.closeLoading();
COMMON
.
closeLoading
();
COMMON
.
displayAlert
(
'errorCommunicationFailed'
);
}
},
...
...
@@ -187,7 +184,7 @@ COMMON.cmsAjax = function (url, param, async = true, callback, errorCallback, ty
if
(
errorCallback
)
{
errorCallback
();
}
else
{
//
COMMON.closeLoading();
COMMON
.
closeLoading
();
COMMON
.
displayAlert
(
'errorOccurred'
);
}
}
...
...
@@ -965,25 +962,6 @@ COMMON.currentTime = function () {
return
Date
.
now
();
};
/**
* create UUID For token
*
*/
COMMON
.
generateUuid
=
function
()
{
var
chars
=
"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx"
.
split
(
""
);
for
(
var
i
=
0
,
len
=
chars
.
length
;
i
<
len
;
i
++
)
{
switch
(
chars
[
i
])
{
case
"x"
:
chars
[
i
]
=
Math
.
floor
(
Math
.
random
()
*
16
).
toString
(
16
);
break
;
case
"y"
:
chars
[
i
]
=
(
Math
.
floor
(
Math
.
random
()
*
4
)
+
8
).
toString
(
16
);
break
;
}
}
return
chars
.
join
(
""
);
}
/*
* Operations for session storage [ end ]
*/
...
...
abweb/html/accountSetting.html
View file @
79ca3bbd
...
...
@@ -10,6 +10,7 @@
<link
href=
"../common/img/apple-touch-icon.png"
rel=
"apple-touch-icon"
>
<!-- main css -->
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/app.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/loading.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/header.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/style.css"
>
<!-- vender css -->
...
...
@@ -29,76 +30,75 @@
</head>
<body>
<div
id=
"contentFieldOrverlay"
style=
"display: none;"
>
<!-- header -->
<div
id=
"includedHeader"
></div>
<!-- account setting -->
<div
id=
"includedMainTitle"
></div>
<main
id=
"main"
>
<div
class=
"container-wrap"
>
<!-- 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=
"accountSetting"
></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
id=
"loader"
></div>
<!-- header -->
<div
id=
"includedHeader"
></div>
<!-- account setting -->
<div
id=
"includedMainTitle"
></div>
<main
id=
"main"
>
<div
class=
"container-wrap"
>
<!-- 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=
"accountSetting"
></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
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
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>
</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>
</div>
<input
type=
"hidden"
id=
"getToken"
>
<!-- confirm -->
<div
id=
"includedConfirmModal"
></div>
<script
type=
"text/javascript"
src=
"../common/js/app.js?__UPDATEID__"
></script>
<script
src=
"../common/js/event.js?__UPDATEID__"
></script>
</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>
</div>
<input
type=
"hidden"
id=
"getToken"
>
<!-- 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 @
79ca3bbd
...
...
@@ -10,6 +10,7 @@
<link
href=
"../common/img/apple-touch-icon.png"
rel=
"apple-touch-icon"
>
<!-- main css -->
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/app.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/loading.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/header.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/style.css"
>
<!-- vender css -->
...
...
@@ -37,37 +38,36 @@
</head>
<body>
<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>
<div
id=
"
loader"
></div
>
<!-- 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>
</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>
\ No newline at end of file
abweb/html/index.html
View file @
79ca3bbd
...
...
@@ -10,6 +10,7 @@
<link
href=
"../common/img/apple-touch-icon.png"
rel=
"apple-touch-icon"
>
<!-- main css -->
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/app.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/loading.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/header.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/style.css"
>
<!-- vender css -->
...
...
@@ -31,119 +32,105 @@
</head>
<body>
<div
id=
"contentFieldOrverlay"
style=
"display: none;"
>
<!-- header -->
<div
id=
"includedHeader"
></div>
<!-- task list -->
<main>
<div
class=
"container-wrap"
>
<div
id=
"includedMainTitle"
></div>
<!-- search condition -->
<nav
aria-label=
"search"
class=
"search search-condition"
>
<div
class=
"d-flex align-items-center"
>
<div
class=
"search-form mr-1"
>
<input
type=
"text"
class=
"form-control lang"
lang=
"operationListSearchPlacehoder"
placeholder=
""
id=
"searchTaskName"
>
<a
href=
"#"
class=
"search-form-btn"
>
<img
src=
"../common/img/icon_search.svg"
type=
"image"
alt=
""
class=
"lang"
lang=
"searchIcon"
onclick=
"OL.search();"
>
<div
id=
"loader"
></div>
<!-- header -->
<div
id=
"includedHeader"
></div>
<!-- task list -->
<main>
<div
class=
"container-wrap"
>
<div
id=
"includedMainTitle"
></div>
<!-- search condition -->
<nav
aria-label=
"search"
class=
"search search-condition"
>
<div
class=
"d-flex align-items-center"
>
<div
class=
"search-form mr-1"
>
<input
type=
"text"
class=
"form-control lang"
lang=
"operationListSearchPlacehoder"
placeholder=
""
id=
"searchTaskName"
>
<a
href=
"#"
class=
"search-form-btn"
>
<img
src=
"../common/img/icon_search.svg"
type=
"image"
alt=
""
class=
"lang"
lang=
"searchIcon"
onclick=
"OL.search();"
>
</a>
</div>
<a
href=
"#"
class=
"mx-1 d-none"
id=
"operationGroupMasterButton"
data-toggle=
"modal"
data-target=
"#category-modal"
>
<img
class=
"serarch-icon lang"
lang=
"category"
src=
"../common/img/icon_folder.svg"
type=
"image"
alt=
""
data-toggle=
"tooltip"
data-placement=
"bottom"
title=
""
onclick=
"OL.openCategory();"
>
</a>
<div
class=
"c-dropdown"
>
<a
href=
"#"
class=
"mx-1"
>
<img
class=
"serarch-icon c-dropdown-trigger lang"
lang=
"term"
id=
"dropdown-term"
src=
"../common/img/icon_calendar.svg"
type=
"image"
alt=
""
data-toggle=
"tooltip"
data-placement=
"bottom"
title=
""
>
</a>
</div>
<a
href=
"#"
class=
"mx-1 d-none"
id=
"operationGroupMasterButton"
data-toggle=
"modal"
data-target=
"#category-modal"
>
<img
class=
"serarch-icon lang"
lang=
"category"
src=
"../common/img/icon_folder.svg"
type=
"image"
alt=
""
data-toggle=
"tooltip"
data-placement=
"bottom"
title=
""
onclick=
"OL.openCategory();"
>
</a>
<div
class=
"c-dropdown"
>
<a
href=
"#"
class=
"mx-1"
>
<img
class=
"serarch-icon c-dropdown-trigger lang"
lang=
"term"
id=
"dropdown-term"
src=
"../common/img/icon_calendar.svg"
type=
"image"
alt=
""
data-toggle=
"tooltip"
data-placement=
"bottom"
title=
""
>
</a>
<div
class=
"c-dropdown-menu dropdown-menu-right"
data-animation=
"true"
data-target=
"dropdown-term"
>
<div
class=
"form-group p-2 mb-0"
>
<label
class=
"lang"
lang=
"startDate"
></label>
<div
class=
"input-group date"
id=
"datetimepicker1"
data-target-input=
"nearest"
>
<input
type=
"text"
name=
"start"
class=
"form-control form-control-sm datetimepicker-input"
data-target=
"#datetimepicker1"
placeholder=
"選択"
id=
"searchStartDate"
>
<div
class=
"input-group-append"
data-target=
"#datetimepicker1"
data-toggle=
"datetimepicker"
>
<div
class=
"input-group-text py-1 px-2"
>
<img
src=
"../common/img/icon_calendar.svg"
type=
"image"
alt=
""
class=
"calendar-icon lang"
lang=
"calendar"
>
</div>
<div
class=
"c-dropdown-menu dropdown-menu-right"
data-animation=
"true"
data-target=
"dropdown-term"
>
<div
class=
"form-group p-2 mb-0"
>
<label
class=
"lang"
lang=
"startDate"
></label>
<div
class=
"input-group date"
id=
"datetimepicker1"
data-target-input=
"nearest"
>
<input
type=
"text"
name=
"start"
class=
"form-control form-control-sm datetimepicker-input"
data-target=
"#datetimepicker1"
placeholder=
"選択"
id=
"searchStartDate"
>
<div
class=
"input-group-append"
data-target=
"#datetimepicker1"
data-toggle=
"datetimepicker"
>
<div
class=
"input-group-text py-1 px-2"
>
<img
src=
"../common/img/icon_calendar.svg"
type=
"image"
alt=
""
class=
"calendar-icon lang"
lang=
"calendar"
>
</div>
</div>
</div>
<div
class=
"form-group p-2 mb-0"
>
<label
class=
"lang"
lang=
"endDate"
></label
>
<div
class=
"input-group date"
id=
"datetimepicker2"
data-target-input=
"nearest"
>
<input
type=
"text"
name=
"end"
class=
"form-control form-control-sm datetimepicker-input"
data-target=
"#datetimepicker2"
placeholder=
"選択"
id=
"searchEndDate
"
>
<div
class=
"input-group-append"
data-target=
"#datetimepicker2"
data-toggle=
"datetimepicker
"
>
<div
class=
"input-group-text py-1 px-2
"
>
<img
src=
"../common/img/icon_calendar.svg"
type=
"image"
alt=
""
class=
"calendar-icon lang"
lang=
"calendar
"
>
<
/div
>
</div
>
<div
class=
"form-group p-2 mb-0"
>
<label
class=
"lang"
lang=
"endDate"
></label
>
<div
class=
"input-group date"
id=
"datetimepicker2"
data-target-input=
"nearest
"
>
<input
type=
"text"
name=
"end"
class=
"form-control form-control-sm datetimepicker-input"
data-target=
"#datetimepicker2"
placeholder=
"選択"
id=
"searchEndDate
"
>
<div
class=
"input-group-append"
data-target=
"#datetimepicker2"
data-toggle=
"datetimepicker
"
>
<div
class=
"input-group-text py-1 px-2
"
>
<
img
src=
"../common/img/icon_calendar.svg"
type=
"image"
alt=
""
class=
"calendar-icon lang"
lang=
"calendar"
>
</div>
</div>
</div>
</div>
<div
class=
"mask hide"
></div>
</div>
<div
class=
"dropdown"
>
<a
href=
"#"
class=
"mx-1"
id=
"dropdown-term"
data-toggle=
"dropdown"
aria-haspopup=
"true"
aria-expanded=
"false"
data-offset=
"-120, 0"
>
<img
class=
"serarch-icon lang"
lang=
"sortBy"
src=
"../common/img/icon_swap.svg"
type=
"image"
alt=
""
data-toggle=
"tooltip"
data-placement=
"bottom"
title=
""
>
</a>
<div
class=
"dropdown-menu dropdown-menu-right sort"
data-animation=
"true"
aria-labelledby=
"dropdownMenuButton"
>
<a
class=
"dropdown-item sort-type lang"
lang=
"sortByName"
href=
"#"
data-sort=
"0"
onclick=
"OL.changeSortType(this);"
></a>
<a
class=
"dropdown-item sort-type lang active"
lang=
"sortByStartDate"
href=
"#"
data-sort=
"1"
id=
"defaultSort"
onclick=
"OL.changeSortType(this);"
></a>
<a
class=
"dropdown-item sort-type lang"
lang=
"sortByEndDate"
href=
"#"
data-sort=
"2"
onclick=
"OL.changeSortType(this);"
></a>
<a
class=
"dropdown-item sort-type lang"
lang=
"sortByLastEdit"
href=
"#"
data-sort=
"4"
onclick=
"OL.changeSortType(this);"
></a>
</div>
</div>
<a
href=
"javascript:OL.resetSearch();"
class=
"mx-1"
>
<img
class=
"serarch-icon lang"
lang=
"searchClear"
src=
"../common/img/icon_close.svg"
type=
"image"
alt=
""
data-toggle=
"tooltip"
data-placement=
"bottom"
title=
""
>
</a>
<div
class=
"mask hide"
></div>
</div>
</nav>
<!-- category -->
<nav
aria-label=
"breadcrumb"
>
<ol
class=
"breadcrumb px-0 pb-0 mb-0"
id=
"groupMasterPath"
>
</ol>
</nav>
<!-- view menu -->
<nav
aria-label=
"view"
class=
"view-menu mt-2"
>
<div
class=
"d-flex justify-content-between align-items-center"
>
<div
class=
"fs-9"
><span
id=
"operationCount"
></span><span
class=
"lang"
lang=
"display"
></span></div>
<div
class=
"view"
>
<a
href=
"#"
class=
"text-decoration-none view-btn view-list-btn"
>
<img
src=
"../common/img/icon_view_list.svg"
type=
"image"
alt=
""
class=
"list-block-icon mx-1 lang"
lang=
"listDisplay"
data-toggle=
"tooltip"
data-placement=
"bottom"
title=
""
>
</a>
<a
href=
"#"
class=
"text-decoration-none view-btn view-block-btn active"
>
<img
src=
"../common/img/icon_view_block.svg"
type=
"image"
alt=
""
class=
"list-block-icon mx-1 lang"
lang=
"gridDisplay"
data-toggle=
"tooltip"
data-placement=
"bottom"
title=
""
>
</a>
<div
class=
"dropdown"
>
<a
href=
"#"
class=
"mx-1"
id=
"dropdown-term"
data-toggle=
"dropdown"
aria-haspopup=
"true"
aria-expanded=
"false"
data-offset=
"-120, 0"
>
<img
class=
"serarch-icon lang"
lang=
"sortBy"
src=
"../common/img/icon_swap.svg"
type=
"image"
alt=
""
data-toggle=
"tooltip"
data-placement=
"bottom"
title=
""
>
</a>
<div
class=
"dropdown-menu dropdown-menu-right sort"
data-animation=
"true"
aria-labelledby=
"dropdownMenuButton"
>
<a
class=
"dropdown-item sort-type lang"
lang=
"sortByName"
href=
"#"
data-sort=
"0"
onclick=
"OL.changeSortType(this);"
></a>
<a
class=
"dropdown-item sort-type lang active"
lang=
"sortByStartDate"
href=
"#"
data-sort=
"1"
id=
"defaultSort"
onclick=
"OL.changeSortType(this);"
></a>
<a
class=
"dropdown-item sort-type lang"
lang=
"sortByEndDate"
href=
"#"
data-sort=
"2"
onclick=
"OL.changeSortType(this);"
></a>
<a
class=
"dropdown-item sort-type lang"
lang=
"sortByLastEdit"
href=
"#"
data-sort=
"4"
onclick=
"OL.changeSortType(this);"
></a>
</div>
</div>
</nav>
<a
href=
"javascript:OL.resetSearch();"
class=
"mx-1"
>
<img
class=
"serarch-icon lang"
lang=
"searchClear"
src=
"../common/img/icon_close.svg"
type=
"image"
alt=
""
data-toggle=
"tooltip"
data-placement=
"bottom"
title=
""
>
</a>
</div>
</nav>
<!-- task list -->
<ul
class=
"p-0 mt-3 card-list task-list view-content view-block"
id=
"operationTable"
>
</ul>
</div>
</main>
<!-- category -->
<nav
aria-label=
"breadcrumb"
>
<ol
class=
"breadcrumb px-0 pb-0 mb-0"
id=
"groupMasterPath"
>
</ol>
</nav>
<!-- category modal -->
<div
id=
"includedCategoryModal"
></div>
<!-- view menu -->
<nav
aria-label=
"view"
class=
"view-menu mt-2"
>
<div
class=
"d-flex justify-content-between align-items-center"
>
<div
class=
"fs-9"
><span
id=
"operationCount"
></span><span
class=
"lang"
lang=
"display"
></span></div>
<div
class=
"view"
>
<a
href=
"#"
class=
"text-decoration-none view-btn view-list-btn"
>
<img
src=
"../common/img/icon_view_list.svg"
type=
"image"
alt=
""
class=
"list-block-icon mx-1 lang"
lang=
"listDisplay"
data-toggle=
"tooltip"
data-placement=
"bottom"
title=
""
>
</a>
<a
href=
"#"
class=
"text-decoration-none view-btn view-block-btn active"
>
<img
src=
"../common/img/icon_view_block.svg"
type=
"image"
alt=
""
class=
"list-block-icon mx-1 lang"
lang=
"gridDisplay"
data-toggle=
"tooltip"
data-placement=
"bottom"
title=
""
>
</a>
</div>
</div>
</nav>
<!-- confirm -->
<div
id=
"includedConfirmModal"
></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>
<!-- task list -->
<ul
class=
"p-0 mt-3 card-list task-list view-content view-block"
id=
"operationTable"
>
</ul>
</div>
</main>
<!--loading-->
<div
id=
"check_loading"
style=
"display:none; position: relative; overflow:hidden;"
>
<p
id=
"checkLoadingMessage"
></p>
<div
id=
"checkLoadingImage"
><img
src=
'######'
/></div>
</div>
</div>
<!-- category modal -->
<div
id=
"includedCategoryModal"
></div>
<!-- confirm -->
<div
id=
"includedConfirmModal"
></div>
<script
src=
"../common/js/app.js?__UPDATEID__"
defer
></script>
<script
src=
"../common/js/event.js?__UPDATEID__"
></script>
</body>
...
...
abweb/html/login.html
View file @
79ca3bbd
...
...
@@ -15,6 +15,7 @@
<link
href=
"../common/img/apple-touch-icon.png"
rel=
"apple-touch-icon"
>
<!-- main css -->
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/app.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/loading.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/header.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/style.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../css/login/login.css"
>
...
...
@@ -43,6 +44,7 @@
</head>
<body>
<div
id=
"loader"
></div>
<form
class=
"form-login card"
>
<img
class=
"mb-4 w-100 text-center"
src=
"../common/img/logo.svg"
alt=
""
height=
"60"
>
<div
class=
"form-group mb-2"
>
...
...
@@ -52,7 +54,7 @@
<input
type=
"text"
class=
"form-control lang"
lang=
"txtLoginId"
placeholder=
"txtLoginId"
id=
"txtAccId"
maxlength=
"54"
>
</div>
<div
class=
"form-group mb-2"
>
<input
type=
"password"
class=
"form-control lang"
lang=
"txtLoginPwd"
placeholder=
"txtLoginPwd"
id=
"txtPassword"
>
<input
type=
"password"
class=
"form-control lang"
lang=
"txtLoginPwd"
placeholder=
"txtLoginPwd"
id=
"txtPassword"
>
</div>
<div
class=
"form-group mb-2"
>
<select
class=
"form-control"
id=
"languageSelect"
>
...
...
abweb/html/pdfPrint.html
View file @
79ca3bbd
...
...
@@ -10,6 +10,7 @@
<link
href=
"../img/apple-touch-icon.png"
rel=
"apple-touch-icon"
>
<!-- main css -->
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/app.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/loading.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/header.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/style.css"
>
<!-- vender css -->
...
...
@@ -36,34 +37,33 @@
</head>
<body>
<div
id=
"
contentFieldOrverlay"
style=
"display: none;"
>
<!-- header -->
<div
id=
"includedHeader"
></div>
<div
id=
"
loader"
></div
>
<!-- 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>
</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>
</div>
</div>
<!-- ↓↓↓ ここから共通HTML ↓↓↓ -->
<div
class=
"container-wrap mb-5"
id=
"pdfPrintDiv"
></div>
<!-- ↓↓↓ ここから共通HTML ↓↓↓ -->
<div
class=
"container-wrap mb-5"
id=
"pdfPrintDiv"
></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>
\ No newline at end of file
abweb/html/pickup.html
View file @
79ca3bbd
...
...
@@ -10,6 +10,7 @@
<link
href=
"../common/img/apple-touch-icon.png"
rel=
"apple-touch-icon"
>
<!-- main css -->
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/app.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/loading.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/header.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/style.css"
>
<!-- vender css -->
...
...
@@ -41,106 +42,105 @@
</head>
<body>
<div
id=
"contentFieldOrverlay"
style=
"display: none;"
>
<div
id=
"includedHeader"
></div>
<!-- pickup -->
<main>
<div
class=
"container-wrap"
>
<!-- header -->
<div
id=
"includedMainTitle"
></div>
<!-- tab -->
<ul
class=
"nav nav-tabs line"
id=
"myTab"
role=
"tablist"
>
<li
class=
"nav-item"
id=
"liTabNewReport"
>
<a
class=
"nav-link active"
data-toggle=
"tab"
href=
"#tab-content-NewReport"
role=
"tab"
aria-controls=
"tab-content-NewReport"
aria-expanded=
"true"
>
<div
class=
"text-center lang"
lang=
"addNew"
></div>
</a>
</li>
<li
class=
"nav-item"
id=
"liTabContinousWork"
>
<a
class=
"nav-link"
data-toggle=
"tab"
href=
"#tab-content-ContinousWork"
role=
"tab"
aria-controls=
"tab-content-ContinousWork"
>
<div
class=
"text-center lang"
lang=
"processWorkTitle"
></div>
</a>
</li>
<li
class=
"nav-item"
id=
"liTabReportWithWarning"
>
<a
class=
"nav-link"
data-toggle=
"tab"
href=
"#tab-content-ReportWithWarnings"
role=
"tab"
aria-controls=
"tab-content-ReportWithWarnings"
>
<div
class=
"text-center lang"
lang=
"reportWarningTitle"
></div>
</a>
</li>
</ul>
<!-- tab content-->
<!-- new -->
<div
class=
"tab-content"
id=
"myTabContent"
>
<div
class=
"tab-pane fade show active"
id=
"tab-content-NewReport"
role=
"tabpanel"
aria-labelledby=
"1-tab"
>
<!-- view menu -->
<nav
aria-label=
"view"
class=
"view-menu mt-2"
id=
"viewMenuNewReport"
>
<div
class=
"d-flex justify-content-between align-items-center"
>
<div
class=
"fs-9"
id=
"count-NewReport"
></div>
<!-- view display type menu -->
<div
class=
"view"
>
<a
href=
"#"
class=
"text-decoration-none view-btn view-list-btn"
>
<img
src=
"../common/img/icon_view_list.svg"
alt=
""
class=
"list-block-icon mx-1 lang"
lang=
"listDisplay"
type=
"image"
data-toggle=
"tooltip"
data-placement=
"bottom"
title=
""
>
</a>
<a
href=
"#"
class=
"text-decoration-none view-btn view-block-btn active"
>
<img
src=
"../common/img/icon_view_block.svg"
alt=
""
class=
"list-block-icon mx-1 lang"
lang=
"gridDisplay"
type=
"image"
data-toggle=
"tooltip"
data-placement=
"bottom"
title=
""
>
</a>
</div>
</div>
</nav>
<!-- task list -->
<ul
class=
"p-0 mt-3 card-list task-list view-content view-block"
id=
"newReport-list"
>
</ul>
</div>
<!-- proccess -->
<div
class=
"tab-pane fade"
id=
"tab-content-ContinousWork"
role=
"tabpanel"
aria-labelledby=
"2-tab"
>
<!-- view menu -->
<nav
aria-label=
"view"
class=
"view-menu mt-2"
id=
"viewMenuContinuousWork"
>
<div
class=
"d-flex justify-content-between align-items-center"
>
<div
class=
"fs-9"
id=
"count-ContinuousWork"
></div>
<!-- view display type menu -->
<div
class=
"view"
>
<a
href=
"#"
class=
"text-decoration-none view-btn view-list-btn"
>
<img
src=
"../common/img/icon_view_list.svg"
alt=
""
class=
"list-block-icon mx-1 lang"
lang=
"listDisplay"
type=
"image"
data-toggle=
"tooltip"
data-placement=
"bottom"
title=
""
>
</a>
<a
href=
"#"
class=
"text-decoration-none view-btn view-block-btn active"
>
<img
src=
"../common/img/icon_view_block.svg"
alt=
""
class=
"list-block-icon mx-1 lang"
lang=
"gridDisplay"
type=
"image"
data-toggle=
"tooltip"
data-placement=
"bottom"
title=
""
>
</a>
</div>
</div>
</nav>
<!-- task list -->
<ul
class=
"p-0 mt-3 card-list task-list view-content view-block"
id=
"continousWork-list"
>
</ul>
</div>
<!-- alert -->
<div
class=
"tab-pane fade"
id=
"tab-content-ReportWithWarnings"
role=
"tabpanel"
aria-labelledby=
"3-tab"
>
<!-- view menu -->
<nav
aria-label=
"view"
class=
"view-menu mt-2"
id=
"viewMenuReportWithWarnings"
>
<div
class=
"d-flex justify-content-between align-items-center"
>
<div
class=
"fs-9"
id=
"count-ReportWithWarnings"
></div>
<!-- view display type menu -->
<div
class=
"view"
>
<a
href=
"#"
class=
"text-decoration-none view-btn view-list-btn"
>
<img
src=
"../common/img/icon_view_list.svg"
alt=
""
class=
"list-block-icon mx-1 lang"
lang=
"listDisplay"
type=
"image"
data-toggle=
"tooltip"
data-placement=
"bottom"
title=
""
>
</a>
<a
href=
"#"
class=
"text-decoration-none view-btn view-block-btn active"
>
<img
src=
"../common/img/icon_view_block.svg"
alt=
""
class=
"list-block-icon mx-1 lang"
lang=
"gridDisplay"
type=
"image"
data-toggle=
"tooltip"
data-placement=
"bottom"
title=
""
>
</a>
</div>
</div>
</nav>
<!-- task list -->
<ul
class=
"p-0 mt-3 card-list task-list view-content view-block"
id=
"reportWithWarnings-list"
>
</ul>
</div>
</div>
<div
id=
"loader"
></div>
<div
id=
"includedHeader"
></div>
<!-- pickup -->
<main>
<div
class=
"container-wrap"
>
<!-- header -->
<div
id=
"includedMainTitle"
></div>
<!-- tab -->
<ul
class=
"nav nav-tabs line"
id=
"myTab"
role=
"tablist"
>
<li
class=
"nav-item"
id=
"liTabNewReport"
>
<a
class=
"nav-link active"
data-toggle=
"tab"
href=
"#tab-content-NewReport"
role=
"tab"
aria-controls=
"tab-content-NewReport"
aria-expanded=
"true"
>
<div
class=
"text-center lang"
lang=
"addNew"
></div>
</a>
</li>
<li
class=
"nav-item"
id=
"liTabContinousWork"
>
<a
class=
"nav-link"
data-toggle=
"tab"
href=
"#tab-content-ContinousWork"
role=
"tab"
aria-controls=
"tab-content-ContinousWork"
>
<div
class=
"text-center lang"
lang=
"processWorkTitle"
></div>
</a>
</li>
<li
class=
"nav-item"
id=
"liTabReportWithWarning"
>
<a
class=
"nav-link"
data-toggle=
"tab"
href=
"#tab-content-ReportWithWarnings"
role=
"tab"
aria-controls=
"tab-content-ReportWithWarnings"
>
<div
class=
"text-center lang"
lang=
"reportWarningTitle"
></div>
</a>
</li>
</ul>
<!-- tab content-->
<!-- new -->
<div
class=
"tab-content"
id=
"myTabContent"
>
<div
class=
"tab-pane fade show active"
id=
"tab-content-NewReport"
role=
"tabpanel"
aria-labelledby=
"1-tab"
>
<!-- view menu -->
<nav
aria-label=
"view"
class=
"view-menu mt-2"
id=
"viewMenuNewReport"
>
<div
class=
"d-flex justify-content-between align-items-center"
>
<div
class=
"fs-9"
id=
"count-NewReport"
></div>
<!-- view display type menu -->
<div
class=
"view"
>
<a
href=
"#"
class=
"text-decoration-none view-btn view-list-btn"
>
<img
src=
"../common/img/icon_view_list.svg"
alt=
""
class=
"list-block-icon mx-1 lang"
lang=
"listDisplay"
type=
"image"
data-toggle=
"tooltip"
data-placement=
"bottom"
title=
""
>
</a>
<a
href=
"#"
class=
"text-decoration-none view-btn view-block-btn active"
>
<img
src=
"../common/img/icon_view_block.svg"
alt=
""
class=
"list-block-icon mx-1 lang"
lang=
"gridDisplay"
type=
"image"
data-toggle=
"tooltip"
data-placement=
"bottom"
title=
""
>
</a>
</div>
</div>
</nav>
<!-- task list -->
<ul
class=
"p-0 mt-3 card-list task-list view-content view-block"
id=
"newReport-list"
>
</ul>
</div>
<!-- proccess -->
<div
class=
"tab-pane fade"
id=
"tab-content-ContinousWork"
role=
"tabpanel"
aria-labelledby=
"2-tab"
>
<!-- view menu -->
<nav
aria-label=
"view"
class=
"view-menu mt-2"
id=
"viewMenuContinuousWork"
>
<div
class=
"d-flex justify-content-between align-items-center"
>
<div
class=
"fs-9"
id=
"count-ContinuousWork"
></div>
<!-- view display type menu -->
<div
class=
"view"
>
<a
href=
"#"
class=
"text-decoration-none view-btn view-list-btn"
>
<img
src=
"../common/img/icon_view_list.svg"
alt=
""
class=
"list-block-icon mx-1 lang"
lang=
"listDisplay"
type=
"image"
data-toggle=
"tooltip"
data-placement=
"bottom"
title=
""
>
</a>
<a
href=
"#"
class=
"text-decoration-none view-btn view-block-btn active"
>
<img
src=
"../common/img/icon_view_block.svg"
alt=
""
class=
"list-block-icon mx-1 lang"
lang=
"gridDisplay"
type=
"image"
data-toggle=
"tooltip"
data-placement=
"bottom"
title=
""
>
</a>
</div>
</div>
</nav>
<!-- task list -->
<ul
class=
"p-0 mt-3 card-list task-list view-content view-block"
id=
"continousWork-list"
>
</ul>
</div>
<!-- alert -->
<div
class=
"tab-pane fade"
id=
"tab-content-ReportWithWarnings"
role=
"tabpanel"
aria-labelledby=
"3-tab"
>
<!-- view menu -->
<nav
aria-label=
"view"
class=
"view-menu mt-2"
id=
"viewMenuReportWithWarnings"
>
<div
class=
"d-flex justify-content-between align-items-center"
>
<div
class=
"fs-9"
id=
"count-ReportWithWarnings"
></div>
<!-- view display type menu -->
<div
class=
"view"
>
<a
href=
"#"
class=
"text-decoration-none view-btn view-list-btn"
>
<img
src=
"../common/img/icon_view_list.svg"
alt=
""
class=
"list-block-icon mx-1 lang"
lang=
"listDisplay"
type=
"image"
data-toggle=
"tooltip"
data-placement=
"bottom"
title=
""
>
</a>
<a
href=
"#"
class=
"text-decoration-none view-btn view-block-btn active"
>
<img
src=
"../common/img/icon_view_block.svg"
alt=
""
class=
"list-block-icon mx-1 lang"
lang=
"gridDisplay"
type=
"image"
data-toggle=
"tooltip"
data-placement=
"bottom"
title=
""
>
</a>
</div>
</div>
</nav>
<!-- task list -->
<ul
class=
"p-0 mt-3 card-list task-list view-content view-block"
id=
"reportWithWarnings-list"
>
</ul>
</div>
</div>
</main>
</div>
</main>
<!-- 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>
\ No newline at end of file
abweb/html/pushMessageDetail.html
View file @
79ca3bbd
...
...
@@ -10,6 +10,7 @@
<link
href=
"../common/img/apple-touch-icon.png"
rel=
"apple-touch-icon"
>
<!-- main css -->
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/app.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/loading.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/header.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/style.css"
>
<!-- vender css -->
...
...
@@ -33,47 +34,46 @@
</head>
<body>
<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
id=
"loader"
></div>
<!-- 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>
</
main
>
<script
type=
"text/javascript"
src=
"../common/js/app.js"
></script
>
<script
src=
"../common/js/event.js?__UPDATEID__
"
></script>
<
/div
>
</
div
>
</main
>
<script
type=
"text/javascript"
src=
"../common/js/app.js
"
></script>
<
script
src=
"../common/js/event.js?__UPDATEID__"
></script
>
</body>
</html>
\ No newline at end of file
abweb/html/pushMessageList.html
View file @
79ca3bbd
...
...
@@ -10,6 +10,7 @@
<link
href=
"../common/img/apple-touch-icon.png"
rel=
"apple-touch-icon"
>
<!-- main css -->
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/app.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/loading.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/header.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/style.css"
>
<!-- vender css -->
...
...
@@ -34,26 +35,25 @@
</head>
<body>
<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>
<div
id=
"loader"
></div>
<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>
</body>
</html>
\ No newline at end of file
abweb/html/reportForm.html
View file @
79ca3bbd
...
...
@@ -10,6 +10,7 @@
<link
href=
"../common/img/apple-touch-icon.png"
rel=
"apple-touch-icon"
>
<!-- main css -->
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/app.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/loading.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/header.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/style.css"
>
<!-- vender css -->
...
...
@@ -28,19 +29,18 @@
</head>
<body
onload=
"RF.init();"
>
<div
id=
"
contentFieldOrverlay"
style=
"display: none;"
>
<!-- header -->
<div
id=
"includedHeader"
></div>
<div
id=
"
loader"
></div
>
<!-- header -->
<div
id=
"includedHeader"
></div>
<!-- report list -->
<div
id=
"includedMainTitle"
></div>
<!-- report list -->
<div
id=
"includedMainTitle"
></div>
<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>
</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>
\ No newline at end of file
abweb/html/reportList.html
View file @
79ca3bbd
...
...
@@ -10,6 +10,7 @@
<link
href=
"../common/img/apple-touch-icon.png"
rel=
"apple-touch-icon"
>
<!-- main css -->
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/app.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/loading.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/header.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/style.css"
>
<!-- vender css -->
...
...
@@ -35,19 +36,18 @@
</head>
<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>
<!-- 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>
<div
id=
"loader"
></div>
<!-- header -->
<div
id=
"includedHeader"
></div>
<div
id=
"includedMainTitle"
></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>
</body>
</html>
abweb/html/sendMessage.html
View file @
79ca3bbd
...
...
@@ -10,6 +10,7 @@
<link
href=
"../common/img/apple-touch-icon.png"
rel=
"apple-touch-icon"
>
<!-- main css -->
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/app.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/loading.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/header.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/style.css"
>
<!-- vender css -->
...
...
@@ -37,62 +38,61 @@
</head>
<body>
<div
id=
"
contentFieldOrverlay"
style=
"display: none;"
>
<div
id=
"
loader"
></div
>
<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>
<!-- 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=
"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
class=
"col-lg-11 col-md-10 col-9"
>
<div
id=
"operationSelected"
data-operation-id=
""
></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>
<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>
<textarea
name=
"message-content"
class=
"form-control"
id=
"messageContent"
cols=
"30"
rows=
"10"
></textarea>
</div>
</form>
</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>
<textarea
name=
"message-content"
class=
"form-control"
id=
"messageContent"
cols=
"30"
rows=
"10"
></textarea>
</div>
</form>
</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>
</main>
<!-- task list modal -->
<div
id=
"includeOperationSelect"
></div>
</div>
</main>
<!-- 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>
</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>
</body>
</html>
\ No newline at end of file
abweb/js/login/login.js
View file @
79ca3bbd
...
...
@@ -390,11 +390,11 @@ LOGIN.changeLanguage = function (lang) {
// Login click function
LOGIN
.
loginFunction
=
function
()
{
//
COMMON.showLoading();
COMMON
.
showLoading
();
if
(
LOGIN
.
checkValidation
())
{
LOGIN
.
processLogin
();
}
else
{
//
COMMON.closeLoading();
COMMON
.
closeLoading
();
}
};
...
...
@@ -424,14 +424,14 @@ LOGIN.skipPassFunction = function () {
// Open Change Password Dialog
LOGIN
.
OpenChangePasswordDialog
=
function
()
{
$
(
'#password-reset-modal'
).
show
();
//
COMMON.showLoading();
COMMON
.
showLoading
();
console
.
log
(
'password open'
);
};
// Close Chnage Password Dialog
LOGIN
.
CloseChangePasswordDialog
=
function
()
{
$
(
'#main-password-change'
).
hide
();
//
COMMON.closeLoading();
COMMON
.
closeLoading
();
};
// Save Service Option
...
...
abweb/js/operationList/operationList.js
View file @
79ca3bbd
...
...
@@ -449,7 +449,7 @@ OL.sortOperationList = function (sortNumber) {
* search operarionList
*/
OL
.
search
=
function
()
{
//
COMMON.showLoading();
COMMON
.
showLoading
();
const
searchKeyword
=
$
(
'#searchTaskName'
).
val
();
const
searchStartDate
=
$
(
'#searchStartDate'
).
val
();
const
searchEndDate
=
$
(
'#searchEndDate'
).
val
();
...
...
abweb/js/reportForm/reportForm.js
View file @
79ca3bbd
...
...
@@ -134,8 +134,7 @@ RF.initFormView = function () {
const
url
=
COMMON
.
format
(
ClientData
.
conf_checkApiUrl
(),
ClientData
.
userInfo_accountPath
())
+
CONSTANT
.
URL
.
CMS
.
HTML
.
BASE
+
CONSTANT
.
URL
.
CMS
.
HTML
.
LIST_REPORT_FORM
;
$
(
'#report-form'
).
load
(
url
,
params
,
function
()
{
initPageLoad
();
$
(
'#contentFieldOrverlay'
).
show
();
//COMMON.closeLoading();
COMMON
.
closeLoading
();
});
}
else
{
COMMON
.
avwScreenMove
(
'index.html'
);
...
...
abweb/js/reportList/reportList.js
View file @
79ca3bbd
...
...
@@ -16,7 +16,7 @@ RL.init = function () {
RL
.
checkQuickReport
();
RL
.
loadCommon
();
RL
.
initTaskReportList
();
//
COMMON.closeLoading();
COMMON
.
closeLoading
();
};
/**
...
...
abweb/js/setting/settings.js
View file @
79ca3bbd
...
...
@@ -12,7 +12,7 @@ $(document).ready(function () {
SETTINGS
.
getToken
();
SETTINGS
.
initScreen
();
$
(
'#dspPwdUpd1'
).
click
(
SETTINGS
.
dspPwdUpd1_Click
);
//
COMMON.closeLoading();
COMMON
.
closeLoading
();
});
SETTINGS
.
getToken
=
function
()
{
...
...
abweb/js/template/template.js
View file @
79ca3bbd
...
...
@@ -6,7 +6,7 @@ var TEMPLATE = {};
/** template load header */
TEMPLATE
.
loadHeader
=
function
(
elmentId
)
{
//
COMMON.showLoading();
COMMON
.
showLoading
();
$
(
elmentId
).
load
(
'../common/html/header.html'
,
function
()
{
$
(
'#iconHomeDashboard'
).
removeClass
(
'active'
);
$
(
'#iconHomeWorkList'
).
removeClass
(
'active'
);
...
...
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