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
d434b3ce
Commit
d434b3ce
authored
Nov 15, 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'
テスト See merge request
!57
parents
60c59c01
ed9a5f33
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
17 deletions
+10
-17
abweb/html/reportForm.html
+2
-0
abweb/js/reportForm/reportForm.js
+7
-16
abweb/js/template/template.js
+1
-1
No files found.
abweb/html/reportForm.html
View file @
d434b3ce
...
...
@@ -35,6 +35,7 @@
<!-- report list -->
<main>
<div
class=
"container-wrap"
>
<div
id=
"main-ttl"
>
<!-- breadcrumb -->
<nav
aria-label=
"breadcrumb"
>
<ol
class=
"breadcrumb px-0 mb-0"
>
...
...
@@ -55,6 +56,7 @@
</div>
</div>
</div>
</div>
</main>
<div
class=
"mb-5"
id=
"report-form"
></div>
...
...
abweb/js/reportForm/reportForm.js
View file @
d434b3ce
...
...
@@ -12,36 +12,25 @@ RF.init = function () {
//Check if user is logged in
COMMON
.
checkAuth
(
false
);
RF
.
loadCommon
(
);
TEMPLATE
.
loadHearder
(
'#includedHeader'
);
TEMPLATE
.
loadConfirmModal
(
'#includedConfirmModal'
);
RF
.
initFormView
();
};
/**
* load common
*/
RF
.
loadCommon
=
function
()
{
$
(
'#includedHeader'
).
load
(
'../common/html/header.html'
,
function
()
{
I18N
.
initi18n
();
HEADER
.
init
();
});
$
(
'#includedConfirmModal'
).
load
(
'../html/common/confirm-modal.html'
,
function
()
{
I18N
.
initi18n
();
});
};
/**
* iinit form view
*/
RF
.
initFormView
=
function
()
{
const
urlParameterList
=
COMMON
.
getUrlParameter
();
const
operationId
=
urlParameterList
[
'operationId'
];
sessionStorage
.
setItem
([
'operationId'
],
operationId
);
if
(
operationId
)
{
let
params
=
{};
const
taskKey
=
urlParameterList
[
'taskKey'
];
const
replyNo
=
urlParameterList
[
'replyNo'
];
const
processKey
=
urlParameterList
[
'processKey'
];
const
phaseNo
=
urlParameterList
[
'phaseNo'
];
const
reportStartDate
=
urlParameterList
[
'reportStartDate'
];
params
.
sid
=
COMMON
.
getSid
();
params
.
operationId
=
operationId
;
...
...
@@ -50,11 +39,13 @@ RF.initFormView = function () {
if
(
replyNo
)
params
.
replyNo
=
replyNo
;
if
(
processKey
)
params
.
processKey
=
processKey
;
if
(
phaseNo
)
params
.
phaseNo
=
phaseNo
;
if
(
reportStartDate
)
prarams
.
reportStartDate
=
reportStartDate
;
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
();
COMMON
.
closeLoading
();
$
(
'#contentFieldOrverlay'
).
show
();
//COMMON.closeLoading();
});
}
else
{
COMMON
.
avwScreenMove
(
'index.html'
);
...
...
abweb/js/template/template.js
View file @
d434b3ce
...
...
@@ -6,7 +6,7 @@ var TEMPLATE = {};
/** template load header */
TEMPLATE
.
loadHearder
=
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