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
93bb0513
Commit
93bb0513
authored
Nov 11, 2022
by
Takumi Imai
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'feature/1.0_check_web_dev_50272' into 'feature/1.0_check_web_dev'
Feature/1.0 check web dev 50272 See merge request
!39
parents
4f53e449
882495ab
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
41 additions
and
24 deletions
+41
-24
abweb/common/css/newdash/app.css
+6
-6
abweb/common/js/header.js
+8
-4
abweb/html/common/header.html
+3
-3
abweb/html/dashboard.html
+4
-4
abweb/html/pickup.html
+4
-4
abweb/js/dashboard/dashboard.js
+1
-0
abweb/js/pickup/pickup.js
+5
-3
abweb/js/template/template.js
+10
-0
No files found.
abweb/common/css/newdash/app.css
View file @
93bb0513
...
@@ -11038,7 +11038,7 @@ ul.card-list > li:not(.selected):not(.not-found):hover{
...
@@ -11038,7 +11038,7 @@ ul.card-list > li:not(.selected):not(.not-found):hover{
}
}
.select-card-list .arrow-icon {
.select-card-list .arrow-icon {
background-image: url("
..
/img/icon_arrow_down.svg");
background-image: url("
/abweb/common
/img/icon_arrow_down.svg");
background-size: contain;
background-size: contain;
background-repeat: no-repeat;
background-repeat: no-repeat;
width: 14px;
width: 14px;
...
@@ -20590,7 +20590,7 @@ button {
...
@@ -20590,7 +20590,7 @@ button {
list-style: none;
list-style: none;
}
}
.list-menu button .arrow-icon{
.list-menu button .arrow-icon{
background-image: url("
..
/img/icon_arrow_right.svg");
background-image: url("
/abweb/common
/img/icon_arrow_right.svg");
background-size: contain;
background-size: contain;
width: 17px;
width: 17px;
height: 17px;
height: 17px;
...
@@ -20689,7 +20689,7 @@ button {
...
@@ -20689,7 +20689,7 @@ button {
.type-icon .report:before{
.type-icon .report:before{
content: '';
content: '';
background-image: url("
..
/img/type_icon_report.svg");
background-image: url("
/abweb/common
/img/type_icon_report.svg");
background-size: contain;
background-size: contain;
background-repeat: no-repeat;
background-repeat: no-repeat;
background-position: center;
background-position: center;
...
@@ -20699,7 +20699,7 @@ button {
...
@@ -20699,7 +20699,7 @@ button {
}
}
.type-icon .questionary:before{
.type-icon .questionary:before{
content: '';
content: '';
background-image: url("
..
/img/type_icon_questionary.svg");
background-image: url("
/abweb/common
/img/type_icon_questionary.svg");
background-size: contain;
background-size: contain;
background-repeat: no-repeat;
background-repeat: no-repeat;
background-position: center;
background-position: center;
...
@@ -20709,7 +20709,7 @@ button {
...
@@ -20709,7 +20709,7 @@ button {
}
}
.type-icon .inspection:before{
.type-icon .inspection:before{
content: '';
content: '';
background-image: url("
..
/img/type_icon_inspection.svg");
background-image: url("
/abweb/common
/img/type_icon_inspection.svg");
background-size: contain;
background-size: contain;
background-repeat: no-repeat;
background-repeat: no-repeat;
background-position: center;
background-position: center;
...
@@ -20719,7 +20719,7 @@ button {
...
@@ -20719,7 +20719,7 @@ button {
}
}
.type-icon .proccess:before{
.type-icon .proccess:before{
content: '
'
;
content: '
'
;
background-image
:
url("
..
/img/type_icon_proccess.svg")
;
background-image
:
url("
/abweb/common
/img/type_icon_proccess.svg")
;
background-size
:
contain
;
background-size
:
contain
;
background-repeat
:
no-repeat
;
background-repeat
:
no-repeat
;
background-position
:
center
;
background-position
:
center
;
...
...
abweb/common/js/header.js
View file @
93bb0513
...
@@ -12,20 +12,23 @@
...
@@ -12,20 +12,23 @@
DashboardSetting
.
getSettingData
(
function
(
settings
)
{
DashboardSetting
.
getSettingData
(
function
(
settings
)
{
if
(
settings
.
dashboardHome
==
1
)
if
(
settings
.
dashboardHome
==
1
)
{
{
HEADER
.
goDashboard
();
sessionStorage
.
activeHomePage
=
CONSTANT
.
PAGE_NAME
.
DASHBOARD
;
HEADER
.
goDashboard
();
}
}
else
else
{
{
HEADER
.
goOperationList
()
;
sessionStorage
.
activeHomePage
=
CONSTANT
.
PAGE_TAB
.
OPERATION_LIST
;
}
HEADER
.
goOperationList
();
}
});
});
}
}
/**
/**
* Go page of operationList
* Go page of operationList
*/
*/
HEADER
.
goOperationList
=
function
()
{
HEADER
.
goOperationList
=
function
()
{
sessionStorage
.
activeHomePage
=
CONSTANT
.
PAGE_TAB
.
OPERATION_LIST
;
$
(
'#footer'
).
load
(
CONSTANT
.
PAGE_NAME
.
FOOTER
,
function
()
{
$
(
'#footer'
).
load
(
CONSTANT
.
PAGE_NAME
.
FOOTER
,
function
()
{
sessionStorage
.
activeTab
=
CONSTANT
.
PAGE_TAB
.
OPERATION_LIST
;
sessionStorage
.
activeTab
=
CONSTANT
.
PAGE_TAB
.
OPERATION_LIST
;
HEADER
.
activeInitBottomNav
(
'operationListBottomNav'
);
HEADER
.
activeInitBottomNav
(
'operationListBottomNav'
);
...
@@ -37,6 +40,7 @@
...
@@ -37,6 +40,7 @@
* Go page of dashboard
* Go page of dashboard
*/
*/
HEADER
.
goDashboard
=
function
()
{
HEADER
.
goDashboard
=
function
()
{
sessionStorage
.
activeHomePage
=
CONSTANT
.
PAGE_NAME
.
DASHBOARD
;
COMMON
.
avwScreenMove
(
"dashboard.html"
);
COMMON
.
avwScreenMove
(
"dashboard.html"
);
};
};
...
...
abweb/html/common/header.html
View file @
93bb0513
...
@@ -5,13 +5,13 @@
...
@@ -5,13 +5,13 @@
<img
src=
"../common/img/logo.svg"
type=
"image"
alt=
""
class=
"img-fluid lang"
lang=
"logo"
>
<img
src=
"../common/img/logo.svg"
type=
"image"
alt=
""
class=
"img-fluid lang"
lang=
"logo"
>
</a>
</a>
<ul
class=
"mr-sm-auto ml-sm-0 ml-auto mb-0 pl-0 d-flex"
>
<ul
class=
"mr-sm-auto ml-sm-0 ml-auto mb-0 pl-0 d-flex"
>
<li
class=
"active nav-link"
>
<li
class=
"active nav-link"
id=
"iconHomeDashboard"
>
<a
href=
"dashboard.html"
class=
"d-block text-center text-decoration-none"
>
<a
href=
"dashboard.html"
class=
"d-block text-center text-decoration-none"
>
<img
src=
"../common/img/nav_icon_dashboard.svg"
type=
"image"
alt=
""
class=
"p-sm-1 p-0 img-fluid lang"
lang=
"dashboard"
>
<img
src=
"../common/img/nav_icon_dashboard.svg"
type=
"image"
alt=
""
class=
"p-sm-1 p-0 img-fluid lang"
lang=
"dashboard"
>
<div
class=
"fs-7 d-sm-block d-none lang"
lang=
"dashboard"
></div>
<div
class=
"fs-7 d-sm-block d-none lang"
lang=
"dashboard"
></div>
</a>
</a>
</li>
</li>
<li
class=
"nav-link"
>
<li
class=
"nav-link"
id=
"iconHomeWorkList"
>
<a
href=
"task-list.html"
class=
"d-block text-center text-decoration-none"
>
<a
href=
"task-list.html"
class=
"d-block text-center text-decoration-none"
>
<img
src=
"../common/img/nav_icon_task.svg"
type=
"image"
alt=
""
class=
"p-sm-1 p-0 img-fluid lang"
lang=
"workList"
>
<img
src=
"../common/img/nav_icon_task.svg"
type=
"image"
alt=
""
class=
"p-sm-1 p-0 img-fluid lang"
lang=
"workList"
>
<div
class=
"fs-7 d-sm-block d-none lang"
lang=
"workList"
></div>
<div
class=
"fs-7 d-sm-block d-none lang"
lang=
"workList"
></div>
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
<img
src=
"../common/img/menu_icon_account_setting.svg"
type=
"image"
alt=
""
class=
"navbar-dropdown-icon lang"
lang=
"account_setting"
>
<img
src=
"../common/img/menu_icon_account_setting.svg"
type=
"image"
alt=
""
class=
"navbar-dropdown-icon lang"
lang=
"account_setting"
>
<span
class=
"lang"
style=
" color: #6c757d;"
lang=
"account_setting"
></span>
<span
class=
"lang"
style=
" color: #6c757d;"
lang=
"account_setting"
></span>
</a>
</a>
<a
class=
"dropdown-item "
href=
"
#"
data-toggle=
"modal"
data-target=
"#confirm-modal"
id=
"btnLogout"
>
<a
class=
"dropdown-item "
href=
"
login.html"
id=
"btnLogout"
>
<img
src=
"../common/img/menu_icon_logout.svg"
type=
"image"
alt=
""
class=
"navbar-dropdown-icon lang"
lang=
"dspLogout"
>
<img
src=
"../common/img/menu_icon_logout.svg"
type=
"image"
alt=
""
class=
"navbar-dropdown-icon lang"
lang=
"dspLogout"
>
<span
class=
"lang"
style=
" color: #6c757d;"
lang=
"dspLogout"
></span>
<span
class=
"lang"
style=
" color: #6c757d;"
lang=
"dspLogout"
></span>
</a>
</a>
...
...
abweb/html/dashboard.html
View file @
93bb0513
...
@@ -36,13 +36,13 @@
...
@@ -36,13 +36,13 @@
</head>
</head>
<body>
<body>
<!-- header -->
<div
id=
"includedHeader"
></div>
<div
id=
"includedMainTitle"
></div>
<!-- dashboard -->
<!-- dashboard -->
<main>
<main>
<div
class=
"container-wrap"
>
<div
class=
"container-wrap"
>
<!-- header -->
<div
id=
"includedHeader"
></div>
<div
id=
"includedMainTitle"
></div>
<!-- sub title -->
<!-- sub title -->
<h2
class=
"fs-8 font-weight-bold lang"
id=
"#pickupHeader"
lang=
"pickup"
></h2>
<h2
class=
"fs-8 font-weight-bold lang"
id=
"#pickupHeader"
lang=
"pickup"
></h2>
...
...
abweb/html/pickup.html
View file @
93bb0513
...
@@ -44,13 +44,13 @@
...
@@ -44,13 +44,13 @@
</head>
</head>
<body
>
<body
>
<!-- header -->
<div
id=
"includedHeader"
></div>
<div
id=
"includedMainTitle"
></div>
<!-- pickup -->
<!-- pickup -->
<main>
<main>
<div
class=
"container-wrap"
>
<div
class=
"container-wrap"
>
<!-- header -->
<div
id=
"includedHeader"
></div>
<div
id=
"includedMainTitle"
></div>
<!-- tab -->
<!-- tab -->
<ul
class=
"nav nav-tabs line"
id=
"myTab"
role=
"tablist"
>
<ul
class=
"nav nav-tabs line"
id=
"myTab"
role=
"tablist"
>
<li
class=
"nav-item"
id=
"liTabNewReport"
>
<li
class=
"nav-item"
id=
"liTabNewReport"
>
...
...
abweb/js/dashboard/dashboard.js
View file @
93bb0513
...
@@ -121,6 +121,7 @@ DASHBOARD.initHtmlItem = function (item) {
...
@@ -121,6 +121,7 @@ DASHBOARD.initHtmlItem = function (item) {
/** Initialization dashboard screen */
/** Initialization dashboard screen */
DASHBOARD
.
init
=
function
()
{
DASHBOARD
.
init
=
function
()
{
sessionStorage
.
activeHomePage
=
CONSTANT
.
PAGE_TAB
.
DASHBOARD
;
DASHBOARD
.
loadCommon
();
DASHBOARD
.
loadCommon
();
DashboardSetting
.
getSettingData
(
function
(
settings
)
{
DashboardSetting
.
getSettingData
(
function
(
settings
)
{
DASHBOARD
.
getDashboardData
(
function
(
dataDashboard
)
{
DASHBOARD
.
getDashboardData
(
function
(
dataDashboard
)
{
...
...
abweb/js/pickup/pickup.js
View file @
93bb0513
...
@@ -114,6 +114,7 @@ PICKUP.getReportWithWarningsListData = function (callback) {
...
@@ -114,6 +114,7 @@ PICKUP.getReportWithWarningsListData = function (callback) {
*/
*/
PICKUP
.
init
=
function
()
{
PICKUP
.
init
=
function
()
{
console
.
log
(
"PICKUP.init"
);
console
.
log
(
"PICKUP.init"
);
sessionStorage
.
activeHomePage
=
CONSTANT
.
PAGE_TAB
.
DASHBOARD
;
TEMPLATE
.
loadHearder
(
"#includedHeader"
);
TEMPLATE
.
loadHearder
(
"#includedHeader"
);
TEMPLATE
.
loadConfirmModal
(
"#includedConfirmModal"
);
TEMPLATE
.
loadConfirmModal
(
"#includedConfirmModal"
);
const
navs
=
[
const
navs
=
[
...
@@ -685,7 +686,7 @@ PICKUP.getInspectDate = function(dateString) {
...
@@ -685,7 +686,7 @@ PICKUP.getInspectDate = function(dateString) {
let
params
=
{};
let
params
=
{};
params
.
sid
=
COMMON
.
getSid
();
params
.
sid
=
COMMON
.
getSid
();
params
.
operationId
=
operationId
;
params
.
operationId
=
operationId
;
let
url
=
CO
NSTANT
.
URL
.
CMS
.
BASE
+
ClientData
.
userInfo_accountPath
()
+
CONSTANT
.
URL
.
CMS
.
HTML
.
BASE
+
CONSTANT
.
URL
.
CMS
.
HTML
.
LIST_REPORT_FORM
+
'/'
+
CONSTANT
.
REPLY_NO
.
REPORT
;
let
url
=
CO
MMON
.
format
(
ClientData
.
conf_checkApiUrl
(),
ClientData
.
userInfo_accountPath
())
+
CONSTANT
.
URL
.
CMS
.
HTML
.
BASE
+
CONSTANT
.
URL
.
CMS
.
HTML
.
LIST_REPORT_FORM
;
COMMON
.
postCommunication
(
url
,
params
);
COMMON
.
postCommunication
(
url
,
params
);
}
}
...
@@ -700,7 +701,7 @@ PICKUP.sendReportFormFromContinuousWork = function(operationId, taskKey, process
...
@@ -700,7 +701,7 @@ PICKUP.sendReportFormFromContinuousWork = function(operationId, taskKey, process
params
.
operationId
=
operationId
;
params
.
operationId
=
operationId
;
params
.
processKey
=
processKey
;
params
.
processKey
=
processKey
;
params
.
phaseNo
=
phaseNo
;
params
.
phaseNo
=
phaseNo
;
let
url
=
CO
NSTANT
.
URL
.
CMS
.
BASE
+
ClientData
.
userInfo_accountPath
()
+
CONSTANT
.
URL
.
CMS
.
HTML
.
BASE
+
CONSTANT
.
URL
.
CMS
.
HTML
.
LIST_REPORT_FORM
+
'/'
+
CONSTANT
.
REPLY_NO
.
REPORT
;
let
url
=
CO
MMON
.
format
(
ClientData
.
conf_checkApiUrl
(),
ClientData
.
userInfo_accountPath
())
+
CONSTANT
.
URL
.
CMS
.
HTML
.
BASE
+
CONSTANT
.
URL
.
CMS
.
HTML
.
LIST_REPORT_FORM
;
COMMON
.
postCommunication
(
url
,
params
);
COMMON
.
postCommunication
(
url
,
params
);
}
}
...
@@ -728,6 +729,7 @@ PICKUP.sendReportFormFromContinuousWork = function(operationId, taskKey, process
...
@@ -728,6 +729,7 @@ PICKUP.sendReportFormFromContinuousWork = function(operationId, taskKey, process
params
.
phaseNo
=
phaseNo
;
params
.
phaseNo
=
phaseNo
;
break
;
break
;
}
}
let
url
=
CONSTANT
.
URL
.
CMS
.
BASE
+
ClientData
.
userInfo_accountPath
()
+
CONSTANT
.
URL
.
CMS
.
HTML
.
BASE
+
CONSTANT
.
URL
.
CMS
.
HTML
.
LIST_REPORT_FORM
+
'/'
+
CONSTANT
.
REPLY_NO
.
REPORT
;
let
url
=
COMMON
.
format
(
ClientData
.
conf_checkApiUrl
(),
ClientData
.
userInfo_accountPath
())
+
CONSTANT
.
URL
.
CMS
.
HTML
.
BASE
+
CONSTANT
.
URL
.
CMS
.
HTML
.
LIST_REPORT_FORM
;
COMMON
.
postCommunication
(
url
,
params
);
COMMON
.
postCommunication
(
url
,
params
);
}
}
abweb/js/template/template.js
View file @
93bb0513
...
@@ -7,6 +7,16 @@ var TEMPLATE = {};
...
@@ -7,6 +7,16 @@ var TEMPLATE = {};
/** template load header */
/** template load header */
TEMPLATE
.
loadHearder
=
function
(
elmentId
)
{
TEMPLATE
.
loadHearder
=
function
(
elmentId
)
{
$
(
elmentId
).
load
(
"../html/common/header.html"
,
function
()
{
$
(
elmentId
).
load
(
"../html/common/header.html"
,
function
()
{
$
(
"#iconHomeDashboard"
).
removeClass
(
'active'
);
$
(
"#iconHomeWorkList"
).
removeClass
(
'active'
);
if
(
sessionStorage
.
activeHomePage
==
CONSTANT
.
PAGE_NAME
.
OPERATION_LIST
)
{
$
(
"#iconHomeWorkList"
).
addClass
(
'active'
);
}
else
{
$
(
"#iconHomeDashboard"
).
addClass
(
'active'
);
}
I18N
.
initi18n
();
I18N
.
initi18n
();
});
});
}
}
...
...
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