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
882495ab
Commit
882495ab
authored
Nov 10, 2022
by
NGO THI HONG
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update baseUrl
parent
34334aba
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
20 additions
and
17 deletions
+20
-17
abweb/common/css/newdash/app.css
+6
-6
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
No files found.
abweb/common/css/newdash/app.css
View file @
882495ab
...
...
@@ -11038,7 +11038,7 @@ ul.card-list > li:not(.selected):not(.not-found):hover{
}
.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-repeat: no-repeat;
width: 14px;
...
...
@@ -20590,7 +20590,7 @@ button {
list-style: none;
}
.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;
width: 17px;
height: 17px;
...
...
@@ -20689,7 +20689,7 @@ button {
.type-icon .report:before{
content: '';
background-image: url("
..
/img/type_icon_report.svg");
background-image: url("
/abweb/common
/img/type_icon_report.svg");
background-size: contain;
background-repeat: no-repeat;
background-position: center;
...
...
@@ -20699,7 +20699,7 @@ button {
}
.type-icon .questionary:before{
content: '';
background-image: url("
..
/img/type_icon_questionary.svg");
background-image: url("
/abweb/common
/img/type_icon_questionary.svg");
background-size: contain;
background-repeat: no-repeat;
background-position: center;
...
...
@@ -20709,7 +20709,7 @@ button {
}
.type-icon .inspection:before{
content: '';
background-image: url("
..
/img/type_icon_inspection.svg");
background-image: url("
/abweb/common
/img/type_icon_inspection.svg");
background-size: contain;
background-repeat: no-repeat;
background-position: center;
...
...
@@ -20719,7 +20719,7 @@ button {
}
.type-icon .proccess:before{
content: '
'
;
background-image
:
url("
..
/img/type_icon_proccess.svg")
;
background-image
:
url("
/abweb/common
/img/type_icon_proccess.svg")
;
background-size
:
contain
;
background-repeat
:
no-repeat
;
background-position
:
center
;
...
...
abweb/html/dashboard.html
View file @
882495ab
...
...
@@ -36,13 +36,13 @@
</head>
<body>
<!-- header -->
<div
id=
"includedHeader"
></div>
<div
id=
"includedMainTitle"
></div>
<!-- dashboard -->
<main>
<div
class=
"container-wrap"
>
<!-- header -->
<div
id=
"includedHeader"
></div>
<div
id=
"includedMainTitle"
></div>
<!-- sub title -->
<h2
class=
"fs-8 font-weight-bold lang"
id=
"#pickupHeader"
lang=
"pickup"
></h2>
...
...
abweb/html/pickup.html
View file @
882495ab
...
...
@@ -44,13 +44,13 @@
</head>
<body
>
<!-- header -->
<div
id=
"includedHeader"
></div>
<div
id=
"includedMainTitle"
></div>
<!-- pickup -->
<main>
<div
class=
"container-wrap"
>
<!-- header -->
<div
id=
"includedHeader"
></div>
<div
id=
"includedMainTitle"
></div>
<!-- tab -->
<ul
class=
"nav nav-tabs line"
id=
"myTab"
role=
"tablist"
>
<li
class=
"nav-item"
id=
"liTabNewReport"
>
...
...
abweb/js/dashboard/dashboard.js
View file @
882495ab
...
...
@@ -121,6 +121,7 @@ DASHBOARD.initHtmlItem = function (item) {
/** Initialization dashboard screen */
DASHBOARD
.
init
=
function
()
{
sessionStorage
.
activeHomePage
=
CONSTANT
.
PAGE_TAB
.
DASHBOARD
;
DASHBOARD
.
loadCommon
();
DashboardSetting
.
getSettingData
(
function
(
settings
)
{
DASHBOARD
.
getDashboardData
(
function
(
dataDashboard
)
{
...
...
abweb/js/pickup/pickup.js
View file @
882495ab
...
...
@@ -114,6 +114,7 @@ PICKUP.getReportWithWarningsListData = function (callback) {
*/
PICKUP
.
init
=
function
()
{
console
.
log
(
"PICKUP.init"
);
sessionStorage
.
activeHomePage
=
CONSTANT
.
PAGE_TAB
.
DASHBOARD
;
TEMPLATE
.
loadHearder
(
"#includedHeader"
);
TEMPLATE
.
loadConfirmModal
(
"#includedConfirmModal"
);
const
navs
=
[
...
...
@@ -685,7 +686,7 @@ PICKUP.getInspectDate = function(dateString) {
let
params
=
{};
params
.
sid
=
COMMON
.
getSid
();
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
);
}
...
...
@@ -700,7 +701,7 @@ PICKUP.sendReportFormFromContinuousWork = function(operationId, taskKey, process
params
.
operationId
=
operationId
;
params
.
processKey
=
processKey
;
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
);
}
...
...
@@ -728,6 +729,7 @@ PICKUP.sendReportFormFromContinuousWork = function(operationId, taskKey, process
params
.
phaseNo
=
phaseNo
;
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
);
}
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