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
60c59c01
Commit
60c59c01
authored
Nov 14, 2022
by
Kang Donghun
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'feature/1.0_check_web_dev_imai' into 'feature/1.0_check_web_dev'
Feature/1.0 check web dev imai See merge request
!55
parents
baa071c3
77b91919
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
10 deletions
+9
-10
abweb/html/accountSetting.html
+4
-1
abweb/js/reportList/reportList.js
+3
-2
abweb/js/setting/settings.js
+1
-7
abweb/js/template/template.js
+1
-0
No files found.
abweb/html/accountSetting.html
View file @
60c59c01
...
...
@@ -18,10 +18,11 @@
<script
type=
"text/javascript"
src=
"../common/js/jquery/jquery-3.6.0.min.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"../common/js/jquery/jquery-ui.min.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"../common/js/i18n.js?__UPDATEID__"
></script>
<script
src=
"https://cdn.jsdelivr.net/npm/gasparesganga-jquery-loading-overlay@2.1.7/dist/loadingoverlay.min.js"
></script>
<script
type=
"text/javascript"
src=
"../common/js/constant.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"../common/js/common.js?__UPDATEID__"
></script>
<script
src=
"../common/js/header.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"../js/template/template.js"
></script>
<script
type=
"text/javascript"
src=
"../common/js/validation.js"
></script>
<script
type=
"text/javascript"
src=
"../js/setting/settings.js?__UPDATEID__"
></script>
</head>
...
...
@@ -34,6 +35,7 @@
<!-- account setting -->
<main
id=
"main"
>
<div
class=
"container-wrap"
>
<div
id=
"main-ttl"
>
<!-- title -->
<h1
class=
"fs-14 font-weight-bold pt-4 pb-3 mb-0 lang"
lang=
"account_setting"
>
アカウント設定
</h1>
...
...
@@ -86,6 +88,7 @@
</div>
</div>
</div>
</div>
</main>
<!-- alert -->
...
...
abweb/js/reportList/reportList.js
View file @
60c59c01
...
...
@@ -16,7 +16,6 @@ RL.init = function () {
RL
.
checkQuickReport
();
RL
.
loadCommon
();
RL
.
initTaskReportList
();
COMMON
.
closeLoading
();
};
/**
...
...
@@ -77,7 +76,9 @@ RL.initTaskReportList = function () {
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
.
HTML
.
BASE
+
CONSTANT
.
URL
.
CMS
.
HTML
.
TASK_REPORT_LIST
;
$
(
'#reportList'
).
load
(
url
,
params
);
$
(
'#reportList'
).
load
(
url
,
params
,
function
()
{
COMMON
.
closeLoading
();
});
}
else
{
COMMON
.
displayAlert
(
'error'
);
COMMON
.
avwScreenMove
(
'index.html'
);
...
...
abweb/js/setting/settings.js
View file @
60c59c01
...
...
@@ -148,13 +148,7 @@ SETTINGS.getNewPasswordRe = function () {
// Initalize screen
SETTINGS
.
initScreen
=
function
()
{
$
(
'#includedHeader'
).
load
(
'../common/html/header.html'
,
function
()
{
I18N
.
initi18n
();
HEADER
.
init
();
});
$
(
'#includedConfirmModal'
).
load
(
'../common/html/confirmModal.html'
,
function
()
{
I18N
.
initi18n
();
});
TEMPLATE
.
loadHearder
(
'#includedHeader'
);
// Login ID
$
(
'#txtLoginId'
).
text
(
ClientData
.
userInfo_loginId_session
());
// Account Path
...
...
abweb/js/template/template.js
View file @
60c59c01
...
...
@@ -6,6 +6,7 @@ var TEMPLATE = {};
/** template load header */
TEMPLATE
.
loadHearder
=
function
(
elmentId
)
{
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