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
Show whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
55 additions
and
81 deletions
+55
-81
abweb/common/css/loading.css
+15
-0
abweb/common/js/common.js
+9
-31
abweb/html/accountSetting.html
+2
-2
abweb/html/dashboard.html
+2
-3
abweb/html/index.html
+2
-15
abweb/html/login.html
+2
-0
abweb/html/pdfPrint.html
+2
-3
abweb/html/pickup.html
+2
-3
abweb/html/pushMessageDetail.html
+2
-3
abweb/html/pushMessageList.html
+2
-3
abweb/html/reportForm.html
+2
-3
abweb/html/reportList.html
+2
-2
abweb/html/sendMessage.html
+2
-3
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';
...
@@ -20,7 +20,7 @@ COMMON.hasErrorKey = 'AVW_HASERR';
* @param {*} url
* @param {*} url
*/
*/
COMMON
.
avwScreenMove
=
function
(
url
)
{
COMMON
.
avwScreenMove
=
function
(
url
)
{
//
COMMON.showLoading();
COMMON
.
showLoading
();
window
.
onbeforeunload
=
null
;
window
.
onbeforeunload
=
null
;
window
.
location
=
url
;
window
.
location
=
url
;
};
};
...
@@ -32,19 +32,16 @@ COMMON.avwScreenMove = function (url) {
...
@@ -32,19 +32,16 @@ COMMON.avwScreenMove = function (url) {
* @param {String} key
* @param {String} key
*/
*/
COMMON
.
showLoading
=
function
()
{
COMMON
.
showLoading
=
function
()
{
// $.LoadingOverlay('show', {
document
.
getElementById
(
'loader'
).
style
.
display
=
'block'
;
// image: '../common/img/loading.gif',
// });
};
};
/**
/**
* close loading
* close loading
*/
*/
COMMON
.
closeLoading
=
function
()
{
COMMON
.
closeLoading
=
function
()
{
setTimeout
(
function
()
{
setTimeout
(
function
(){
$
(
'#contentFieldOrverlay'
).
show
();
document
.
getElementById
(
'loader'
).
style
.
display
=
'none'
;
// $.LoadingOverlay('hide');
},
1000
);
},
500
);
};
};
/**
/**
...
@@ -167,10 +164,10 @@ COMMON.cmsAjax = function (url, param, async = true, callback, errorCallback, ty
...
@@ -167,10 +164,10 @@ COMMON.cmsAjax = function (url, param, async = true, callback, errorCallback, ty
}
else
if
(
result
.
httpStatus
==
'401'
)
{
}
else
if
(
result
.
httpStatus
==
'401'
)
{
COMMON
.
goUrlWithCurrentParams
(
CONSTANT
.
PAGE_NAME
.
LOGIN
);
COMMON
.
goUrlWithCurrentParams
(
CONSTANT
.
PAGE_NAME
.
LOGIN
);
}
else
if
(
result
.
httpStatus
==
'403'
)
{
}
else
if
(
result
.
httpStatus
==
'403'
)
{
//
COMMON.closeLoading();
COMMON
.
closeLoading
();
COMMON
.
displayAlert
(
'errorOccurred'
);
COMMON
.
displayAlert
(
'errorOccurred'
);
}
else
{
}
else
{
//
COMMON.closeLoading();
COMMON
.
closeLoading
();
COMMON
.
displayAlert
(
result
.
message
);
COMMON
.
displayAlert
(
result
.
message
);
}
}
},
},
...
@@ -178,7 +175,7 @@ COMMON.cmsAjax = function (url, param, async = true, callback, errorCallback, ty
...
@@ -178,7 +175,7 @@ COMMON.cmsAjax = function (url, param, async = true, callback, errorCallback, ty
if
(
errorCallback
)
{
if
(
errorCallback
)
{
errorCallback
(
XMLHttpRequest
,
textStatus
,
errorThrown
);
errorCallback
(
XMLHttpRequest
,
textStatus
,
errorThrown
);
}
else
{
}
else
{
//
COMMON.closeLoading();
COMMON
.
closeLoading
();
COMMON
.
displayAlert
(
'errorCommunicationFailed'
);
COMMON
.
displayAlert
(
'errorCommunicationFailed'
);
}
}
},
},
...
@@ -187,7 +184,7 @@ COMMON.cmsAjax = function (url, param, async = true, callback, errorCallback, ty
...
@@ -187,7 +184,7 @@ COMMON.cmsAjax = function (url, param, async = true, callback, errorCallback, ty
if
(
errorCallback
)
{
if
(
errorCallback
)
{
errorCallback
();
errorCallback
();
}
else
{
}
else
{
//
COMMON.closeLoading();
COMMON
.
closeLoading
();
COMMON
.
displayAlert
(
'errorOccurred'
);
COMMON
.
displayAlert
(
'errorOccurred'
);
}
}
}
}
...
@@ -965,25 +962,6 @@ COMMON.currentTime = function () {
...
@@ -965,25 +962,6 @@ COMMON.currentTime = function () {
return
Date
.
now
();
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 ]
* Operations for session storage [ end ]
*/
*/
...
...
abweb/html/accountSetting.html
View file @
79ca3bbd
...
@@ -10,6 +10,7 @@
...
@@ -10,6 +10,7 @@
<link
href=
"../common/img/apple-touch-icon.png"
rel=
"apple-touch-icon"
>
<link
href=
"../common/img/apple-touch-icon.png"
rel=
"apple-touch-icon"
>
<!-- main css -->
<!-- main css -->
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/app.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/header.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/style.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/style.css"
>
<!-- vender css -->
<!-- vender css -->
...
@@ -29,7 +30,7 @@
...
@@ -29,7 +30,7 @@
</head>
</head>
<body>
<body>
<div
id=
"
contentFieldOrverlay"
style=
"display: none;"
>
<div
id=
"
loader"
></div
>
<!-- header -->
<!-- header -->
<div
id=
"includedHeader"
></div>
<div
id=
"includedHeader"
></div>
<!-- account setting -->
<!-- account setting -->
...
@@ -98,7 +99,6 @@
...
@@ -98,7 +99,6 @@
<div
id=
"includedConfirmModal"
></div>
<div
id=
"includedConfirmModal"
></div>
<script
type=
"text/javascript"
src=
"../common/js/app.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"../common/js/app.js?__UPDATEID__"
></script>
<script
src=
"../common/js/event.js?__UPDATEID__"
></script>
<script
src=
"../common/js/event.js?__UPDATEID__"
></script>
</div>
</body>
</body>
</html>
</html>
abweb/html/dashboard.html
View file @
79ca3bbd
...
@@ -10,6 +10,7 @@
...
@@ -10,6 +10,7 @@
<link
href=
"../common/img/apple-touch-icon.png"
rel=
"apple-touch-icon"
>
<link
href=
"../common/img/apple-touch-icon.png"
rel=
"apple-touch-icon"
>
<!-- main css -->
<!-- main css -->
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/app.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/header.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/style.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/style.css"
>
<!-- vender css -->
<!-- vender css -->
...
@@ -37,7 +38,7 @@
...
@@ -37,7 +38,7 @@
</head>
</head>
<body>
<body>
<div
id=
"
contentFieldOrverlay"
style=
"display: none;"
>
<div
id=
"
loader"
></div
>
<!-- header -->
<!-- header -->
<div
id=
"includedHeader"
></div>
<div
id=
"includedHeader"
></div>
<!-- dashboard -->
<!-- dashboard -->
...
@@ -68,6 +69,5 @@
...
@@ -68,6 +69,5 @@
<div
id=
"includedConfirmModal"
></div>
<div
id=
"includedConfirmModal"
></div>
<script
type=
"text/javascript"
src=
"../common/js/app.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"../common/js/app.js?__UPDATEID__"
></script>
<script
src=
"../common/js/event.js?__UPDATEID__"
></script>
<script
src=
"../common/js/event.js?__UPDATEID__"
></script>
</div>
</body>
</body>
</html>
</html>
\ No newline at end of file
abweb/html/index.html
View file @
79ca3bbd
...
@@ -10,6 +10,7 @@
...
@@ -10,6 +10,7 @@
<link
href=
"../common/img/apple-touch-icon.png"
rel=
"apple-touch-icon"
>
<link
href=
"../common/img/apple-touch-icon.png"
rel=
"apple-touch-icon"
>
<!-- main css -->
<!-- main css -->
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/app.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/header.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/style.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/style.css"
>
<!-- vender css -->
<!-- vender css -->
...
@@ -31,7 +32,7 @@
...
@@ -31,7 +32,7 @@
</head>
</head>
<body>
<body>
<div
id=
"
contentFieldOrverlay"
style=
"display: none;"
>
<div
id=
"
loader"
></div
>
<!-- header -->
<!-- header -->
<div
id=
"includedHeader"
></div>
<div
id=
"includedHeader"
></div>
<!-- task list -->
<!-- task list -->
...
@@ -130,20 +131,6 @@
...
@@ -130,20 +131,6 @@
<!-- confirm -->
<!-- confirm -->
<div
id=
"includedConfirmModal"
></div>
<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>
</div>
<!--loading-->
<div
id=
"check_loading"
style=
"display:none; position: relative; overflow:hidden;"
>
<p
id=
"checkLoadingMessage"
></p>
<div
id=
"checkLoadingImage"
><img
src=
'######'
/></div>
</div>
</div>
<script
src=
"../common/js/app.js?__UPDATEID__"
defer
></script>
<script
src=
"../common/js/app.js?__UPDATEID__"
defer
></script>
<script
src=
"../common/js/event.js?__UPDATEID__"
></script>
<script
src=
"../common/js/event.js?__UPDATEID__"
></script>
</body>
</body>
...
...
abweb/html/login.html
View file @
79ca3bbd
...
@@ -15,6 +15,7 @@
...
@@ -15,6 +15,7 @@
<link
href=
"../common/img/apple-touch-icon.png"
rel=
"apple-touch-icon"
>
<link
href=
"../common/img/apple-touch-icon.png"
rel=
"apple-touch-icon"
>
<!-- main css -->
<!-- main css -->
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/app.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/header.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/style.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/style.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../css/login/login.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../css/login/login.css"
>
...
@@ -43,6 +44,7 @@
...
@@ -43,6 +44,7 @@
</head>
</head>
<body>
<body>
<div
id=
"loader"
></div>
<form
class=
"form-login card"
>
<form
class=
"form-login card"
>
<img
class=
"mb-4 w-100 text-center"
src=
"../common/img/logo.svg"
alt=
""
height=
"60"
>
<img
class=
"mb-4 w-100 text-center"
src=
"../common/img/logo.svg"
alt=
""
height=
"60"
>
<div
class=
"form-group mb-2"
>
<div
class=
"form-group mb-2"
>
...
...
abweb/html/pdfPrint.html
View file @
79ca3bbd
...
@@ -10,6 +10,7 @@
...
@@ -10,6 +10,7 @@
<link
href=
"../img/apple-touch-icon.png"
rel=
"apple-touch-icon"
>
<link
href=
"../img/apple-touch-icon.png"
rel=
"apple-touch-icon"
>
<!-- main css -->
<!-- main css -->
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/app.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/header.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/style.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/style.css"
>
<!-- vender css -->
<!-- vender css -->
...
@@ -36,7 +37,7 @@
...
@@ -36,7 +37,7 @@
</head>
</head>
<body>
<body>
<div
id=
"
contentFieldOrverlay"
style=
"display: none;"
>
<div
id=
"
loader"
></div
>
<!-- header -->
<!-- header -->
<div
id=
"includedHeader"
></div>
<div
id=
"includedHeader"
></div>
...
@@ -63,7 +64,6 @@
...
@@ -63,7 +64,6 @@
<div
id=
"includedConfirmModal"
></div>
<div
id=
"includedConfirmModal"
></div>
<script
type=
"text/javascript"
src=
"../common/js/app.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"../common/js/app.js?__UPDATEID__"
></script>
<script
src=
"../common/js/event.js?__UPDATEID__"
></script>
<script
src=
"../common/js/event.js?__UPDATEID__"
></script>
</div>
</body>
</body>
</html>
</html>
\ No newline at end of file
abweb/html/pickup.html
View file @
79ca3bbd
...
@@ -10,6 +10,7 @@
...
@@ -10,6 +10,7 @@
<link
href=
"../common/img/apple-touch-icon.png"
rel=
"apple-touch-icon"
>
<link
href=
"../common/img/apple-touch-icon.png"
rel=
"apple-touch-icon"
>
<!-- main css -->
<!-- main css -->
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/app.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/header.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/style.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/style.css"
>
<!-- vender css -->
<!-- vender css -->
...
@@ -41,7 +42,7 @@
...
@@ -41,7 +42,7 @@
</head>
</head>
<body>
<body>
<div
id=
"
contentFieldOrverlay"
style=
"display: none;"
>
<div
id=
"
loader"
></div
>
<div
id=
"includedHeader"
></div>
<div
id=
"includedHeader"
></div>
<!-- pickup -->
<!-- pickup -->
<main>
<main>
...
@@ -140,7 +141,6 @@
...
@@ -140,7 +141,6 @@
<div
id=
"includedConfirmModal"
></div>
<div
id=
"includedConfirmModal"
></div>
<script
type=
"text/javascript"
src=
"../common/js/app.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"../common/js/app.js?__UPDATEID__"
></script>
<script
src=
"../common/js/event.js?__UPDATEID__"
></script>
<script
src=
"../common/js/event.js?__UPDATEID__"
></script>
</div>
</body>
</body>
</html>
</html>
\ No newline at end of file
abweb/html/pushMessageDetail.html
View file @
79ca3bbd
...
@@ -10,6 +10,7 @@
...
@@ -10,6 +10,7 @@
<link
href=
"../common/img/apple-touch-icon.png"
rel=
"apple-touch-icon"
>
<link
href=
"../common/img/apple-touch-icon.png"
rel=
"apple-touch-icon"
>
<!-- main css -->
<!-- main css -->
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/app.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/header.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/style.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/style.css"
>
<!-- vender css -->
<!-- vender css -->
...
@@ -33,7 +34,7 @@
...
@@ -33,7 +34,7 @@
</head>
</head>
<body>
<body>
<div
id=
"
contentFieldOrverlay"
style=
"display: none;"
>
<div
id=
"
loader"
></div
>
<!-- header -->
<!-- header -->
<div
id=
"includedHeader"
></div>
<div
id=
"includedHeader"
></div>
<!-- message detail -->
<!-- message detail -->
...
@@ -73,7 +74,6 @@
...
@@ -73,7 +74,6 @@
</main>
</main>
<script
type=
"text/javascript"
src=
"../common/js/app.js"
></script>
<script
type=
"text/javascript"
src=
"../common/js/app.js"
></script>
<script
src=
"../common/js/event.js?__UPDATEID__"
></script>
<script
src=
"../common/js/event.js?__UPDATEID__"
></script>
</div>
</body>
</body>
</html>
</html>
\ No newline at end of file
abweb/html/pushMessageList.html
View file @
79ca3bbd
...
@@ -10,6 +10,7 @@
...
@@ -10,6 +10,7 @@
<link
href=
"../common/img/apple-touch-icon.png"
rel=
"apple-touch-icon"
>
<link
href=
"../common/img/apple-touch-icon.png"
rel=
"apple-touch-icon"
>
<!-- main css -->
<!-- main css -->
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/app.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/header.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/style.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/style.css"
>
<!-- vender css -->
<!-- vender css -->
...
@@ -34,7 +35,7 @@
...
@@ -34,7 +35,7 @@
</head>
</head>
<body>
<body>
<div
id=
"
contentFieldOrverlay"
style=
"display: none;"
>
<div
id=
"
loader"
></div
>
<div
id=
"includedHeader"
></div>
<div
id=
"includedHeader"
></div>
<!-- message list -->
<!-- message list -->
<main>
<main>
...
@@ -54,6 +55,5 @@
...
@@ -54,6 +55,5 @@
</main>
</main>
<script
type=
"text/javascript"
src=
"../common/js/app.js"
></script>
<script
type=
"text/javascript"
src=
"../common/js/app.js"
></script>
<script
src=
"../common/js/event.js?__UPDATEID__"
></script>
<script
src=
"../common/js/event.js?__UPDATEID__"
></script>
</div>
</body>
</body>
</html>
</html>
\ No newline at end of file
abweb/html/reportForm.html
View file @
79ca3bbd
...
@@ -10,6 +10,7 @@
...
@@ -10,6 +10,7 @@
<link
href=
"../common/img/apple-touch-icon.png"
rel=
"apple-touch-icon"
>
<link
href=
"../common/img/apple-touch-icon.png"
rel=
"apple-touch-icon"
>
<!-- main css -->
<!-- main css -->
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/app.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/header.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/style.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/style.css"
>
<!-- vender css -->
<!-- vender css -->
...
@@ -28,7 +29,7 @@
...
@@ -28,7 +29,7 @@
</head>
</head>
<body
onload=
"RF.init();"
>
<body
onload=
"RF.init();"
>
<div
id=
"
contentFieldOrverlay"
style=
"display: none;"
>
<div
id=
"
loader"
></div
>
<!-- header -->
<!-- header -->
<div
id=
"includedHeader"
></div>
<div
id=
"includedHeader"
></div>
...
@@ -41,6 +42,5 @@
...
@@ -41,6 +42,5 @@
<div
id=
"includedConfirmModal"
></div>
<div
id=
"includedConfirmModal"
></div>
<script
type=
"text/javascript"
src=
"../common/js/app.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"../common/js/app.js?__UPDATEID__"
></script>
<script
src=
"../common/js/event.js?__UPDATEID__"
></script>
<script
src=
"../common/js/event.js?__UPDATEID__"
></script>
</div>
</body>
</body>
</html>
</html>
\ No newline at end of file
abweb/html/reportList.html
View file @
79ca3bbd
...
@@ -10,6 +10,7 @@
...
@@ -10,6 +10,7 @@
<link
href=
"../common/img/apple-touch-icon.png"
rel=
"apple-touch-icon"
>
<link
href=
"../common/img/apple-touch-icon.png"
rel=
"apple-touch-icon"
>
<!-- main css -->
<!-- main css -->
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/app.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/header.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/style.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/style.css"
>
<!-- vender css -->
<!-- vender css -->
...
@@ -35,7 +36,7 @@
...
@@ -35,7 +36,7 @@
</head>
</head>
<body>
<body>
<div
id=
"
contentFieldOrverlay"
style=
"display: none;"
>
<div
id=
"
loader"
></div
>
<!-- header -->
<!-- header -->
<div
id=
"includedHeader"
></div>
<div
id=
"includedHeader"
></div>
<div
id=
"includedMainTitle"
></div>
<div
id=
"includedMainTitle"
></div>
...
@@ -47,7 +48,6 @@
...
@@ -47,7 +48,6 @@
<div
id=
"includedConfirmModal"
></div>
<div
id=
"includedConfirmModal"
></div>
<script
type=
"text/javascript"
src=
"../common/js/app.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"../common/js/app.js?__UPDATEID__"
></script>
<script
src=
"../common/js/event.js?__UPDATEID__"
></script>
<script
src=
"../common/js/event.js?__UPDATEID__"
></script>
</div>
</body>
</body>
</html>
</html>
abweb/html/sendMessage.html
View file @
79ca3bbd
...
@@ -10,6 +10,7 @@
...
@@ -10,6 +10,7 @@
<link
href=
"../common/img/apple-touch-icon.png"
rel=
"apple-touch-icon"
>
<link
href=
"../common/img/apple-touch-icon.png"
rel=
"apple-touch-icon"
>
<!-- main css -->
<!-- main css -->
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/app.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/header.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/style.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/style.css"
>
<!-- vender css -->
<!-- vender css -->
...
@@ -37,7 +38,7 @@
...
@@ -37,7 +38,7 @@
</head>
</head>
<body>
<body>
<div
id=
"
contentFieldOrverlay"
style=
"display: none;"
>
<div
id=
"
loader"
></div
>
<div
id=
"includedHeader"
></div>
<div
id=
"includedHeader"
></div>
<!-- send message -->
<!-- send message -->
<main>
<main>
...
@@ -92,7 +93,6 @@
...
@@ -92,7 +93,6 @@
<div
id=
"includeTemplateModal"
></div>
<div
id=
"includeTemplateModal"
></div>
<script
type=
"text/javascript"
src=
"../common/js/app.js"
></script>
<script
type=
"text/javascript"
src=
"../common/js/app.js"
></script>
<script
src=
"../common/js/event.js?__UPDATEID__"
></script>
<script
src=
"../common/js/event.js?__UPDATEID__"
></script>
</div>
</body>
</body>
</html>
</html>
\ No newline at end of file
abweb/js/login/login.js
View file @
79ca3bbd
...
@@ -390,11 +390,11 @@ LOGIN.changeLanguage = function (lang) {
...
@@ -390,11 +390,11 @@ LOGIN.changeLanguage = function (lang) {
// Login click function
// Login click function
LOGIN
.
loginFunction
=
function
()
{
LOGIN
.
loginFunction
=
function
()
{
//
COMMON.showLoading();
COMMON
.
showLoading
();
if
(
LOGIN
.
checkValidation
())
{
if
(
LOGIN
.
checkValidation
())
{
LOGIN
.
processLogin
();
LOGIN
.
processLogin
();
}
else
{
}
else
{
//
COMMON.closeLoading();
COMMON
.
closeLoading
();
}
}
};
};
...
@@ -424,14 +424,14 @@ LOGIN.skipPassFunction = function () {
...
@@ -424,14 +424,14 @@ LOGIN.skipPassFunction = function () {
// Open Change Password Dialog
// Open Change Password Dialog
LOGIN
.
OpenChangePasswordDialog
=
function
()
{
LOGIN
.
OpenChangePasswordDialog
=
function
()
{
$
(
'#password-reset-modal'
).
show
();
$
(
'#password-reset-modal'
).
show
();
//
COMMON.showLoading();
COMMON
.
showLoading
();
console
.
log
(
'password open'
);
console
.
log
(
'password open'
);
};
};
// Close Chnage Password Dialog
// Close Chnage Password Dialog
LOGIN
.
CloseChangePasswordDialog
=
function
()
{
LOGIN
.
CloseChangePasswordDialog
=
function
()
{
$
(
'#main-password-change'
).
hide
();
$
(
'#main-password-change'
).
hide
();
//
COMMON.closeLoading();
COMMON
.
closeLoading
();
};
};
// Save Service Option
// Save Service Option
...
...
abweb/js/operationList/operationList.js
View file @
79ca3bbd
...
@@ -449,7 +449,7 @@ OL.sortOperationList = function (sortNumber) {
...
@@ -449,7 +449,7 @@ OL.sortOperationList = function (sortNumber) {
* search operarionList
* search operarionList
*/
*/
OL
.
search
=
function
()
{
OL
.
search
=
function
()
{
//
COMMON.showLoading();
COMMON
.
showLoading
();
const
searchKeyword
=
$
(
'#searchTaskName'
).
val
();
const
searchKeyword
=
$
(
'#searchTaskName'
).
val
();
const
searchStartDate
=
$
(
'#searchStartDate'
).
val
();
const
searchStartDate
=
$
(
'#searchStartDate'
).
val
();
const
searchEndDate
=
$
(
'#searchEndDate'
).
val
();
const
searchEndDate
=
$
(
'#searchEndDate'
).
val
();
...
...
abweb/js/reportForm/reportForm.js
View file @
79ca3bbd
...
@@ -134,8 +134,7 @@ RF.initFormView = function () {
...
@@ -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
;
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
()
{
$
(
'#report-form'
).
load
(
url
,
params
,
function
()
{
initPageLoad
();
initPageLoad
();
$
(
'#contentFieldOrverlay'
).
show
();
COMMON
.
closeLoading
();
//COMMON.closeLoading();
});
});
}
else
{
}
else
{
COMMON
.
avwScreenMove
(
'index.html'
);
COMMON
.
avwScreenMove
(
'index.html'
);
...
...
abweb/js/reportList/reportList.js
View file @
79ca3bbd
...
@@ -16,7 +16,7 @@ RL.init = function () {
...
@@ -16,7 +16,7 @@ RL.init = function () {
RL
.
checkQuickReport
();
RL
.
checkQuickReport
();
RL
.
loadCommon
();
RL
.
loadCommon
();
RL
.
initTaskReportList
();
RL
.
initTaskReportList
();
//
COMMON.closeLoading();
COMMON
.
closeLoading
();
};
};
/**
/**
...
...
abweb/js/setting/settings.js
View file @
79ca3bbd
...
@@ -12,7 +12,7 @@ $(document).ready(function () {
...
@@ -12,7 +12,7 @@ $(document).ready(function () {
SETTINGS
.
getToken
();
SETTINGS
.
getToken
();
SETTINGS
.
initScreen
();
SETTINGS
.
initScreen
();
$
(
'#dspPwdUpd1'
).
click
(
SETTINGS
.
dspPwdUpd1_Click
);
$
(
'#dspPwdUpd1'
).
click
(
SETTINGS
.
dspPwdUpd1_Click
);
//
COMMON.closeLoading();
COMMON
.
closeLoading
();
});
});
SETTINGS
.
getToken
=
function
()
{
SETTINGS
.
getToken
=
function
()
{
...
...
abweb/js/template/template.js
View file @
79ca3bbd
...
@@ -6,7 +6,7 @@ var TEMPLATE = {};
...
@@ -6,7 +6,7 @@ var TEMPLATE = {};
/** template load header */
/** template load header */
TEMPLATE
.
loadHeader
=
function
(
elmentId
)
{
TEMPLATE
.
loadHeader
=
function
(
elmentId
)
{
//
COMMON.showLoading();
COMMON
.
showLoading
();
$
(
elmentId
).
load
(
'../common/html/header.html'
,
function
()
{
$
(
elmentId
).
load
(
'../common/html/header.html'
,
function
()
{
$
(
'#iconHomeDashboard'
).
removeClass
(
'active'
);
$
(
'#iconHomeDashboard'
).
removeClass
(
'active'
);
$
(
'#iconHomeWorkList'
).
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