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
c74ddccc
Commit
c74ddccc
authored
Oct 13, 2022
by
Takumi Imai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#50225 閲覧ログ
parent
74629130
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
19 additions
and
10 deletions
+19
-10
abvw/common/js/common.js
+10
-0
abvw/common/js/constant.js
+1
-1
abvw/common/json/sys/conf.json
+6
-6
abvw/js/operationList/operationList.js
+2
-3
No files found.
abvw/common/js/common.js
View file @
c74ddccc
...
@@ -1060,6 +1060,16 @@ COMMON.operateData = function (args, strKey, returnDefaultData) {
...
@@ -1060,6 +1060,16 @@ COMMON.operateData = function (args, strKey, returnDefaultData) {
}
}
}
}
};
};
/**
* UTC current Time (millisecond)
*
* @returns UTC time
*/
COMMON
.
currentTime
=
function
()
{
return
Date
.
now
();
};
/*
/*
* Operations for session storage [ end ]
* Operations for session storage [ end ]
*/
*/
...
...
abvw/common/js/constant.js
View file @
c74ddccc
...
@@ -51,7 +51,7 @@ CONSTANT.URL = {
...
@@ -51,7 +51,7 @@ CONSTANT.URL = {
AUTH_SESSION
:
'getSession/checkAuthUser'
,
AUTH_SESSION
:
'getSession/checkAuthUser'
,
TASK_REPORT_LIST
:
'getTaskReport/index'
,
TASK_REPORT_LIST
:
'getTaskReport/index'
,
ENTRY_REPORT
:
'getReport???'
,
//未定
ENTRY_REPORT
:
'getReport???'
,
//未定
OPERATION_VIEW_LOG
:
'operationViewLog/save
l
og'
,
OPERATION_VIEW_LOG
:
'operationViewLog/save
L
og'
,
};
};
CONSTANT
.
LANG
=
{
CONSTANT
.
LANG
=
{
...
...
abvw/common/json/sys/conf.json
View file @
c74ddccc
{
{
"
1
apiUrl"
:
"http://localhost:8080/acms/{0}/abvapi"
,
"apiUrl"
:
"http://localhost:8080/acms/{0}/abvapi"
,
"
1
apiLoginUrl"
:
"http://localhost:8080/acms/nuabvapi"
,
"apiLoginUrl"
:
"http://localhost:8080/acms/nuabvapi"
,
"
1
apiResourceDlUrl"
:
"http://localhost:8080/acms/{0}/dl"
,
"apiResourceDlUrl"
:
"http://localhost:8080/acms/{0}/dl"
,
"apiUrl"
:
"https://abook189.abook.bz/acms/{0}/abvapi"
,
"
1
apiUrl"
:
"https://abook189.abook.bz/acms/{0}/abvapi"
,
"apiLoginUrl"
:
"https://abook189.abook.bz/acms/nuabvapi"
,
"
1
apiLoginUrl"
:
"https://abook189.abook.bz/acms/nuabvapi"
,
"apiResourceDlUrl"
:
"https://abook189.abook.bz/acms/{0}/dl"
,
"
1
apiResourceDlUrl"
:
"https://abook189.abook.bz/acms/{0}/dl"
,
"bookShelfCount"
:
15
,
"bookShelfCount"
:
15
,
"bookListCount"
:
15
,
"bookListCount"
:
15
,
"screenlockTimeDefault"
:
30
,
"screenlockTimeDefault"
:
30
,
...
...
abvw/js/operationList/operationList.js
View file @
c74ddccc
...
@@ -480,9 +480,8 @@ OL.saveOperationReadingLog = function (operationId, operationType, reportType) {
...
@@ -480,9 +480,8 @@ OL.saveOperationReadingLog = function (operationId, operationType, reportType) {
params
.
deviceType
=
CONSTANT
.
DEVICE_TYPE
.
WEB
;
params
.
deviceType
=
CONSTANT
.
DEVICE_TYPE
.
WEB
;
params
.
operationType
=
operationType
;
params
.
operationType
=
operationType
;
params
.
reportType
=
reportType
;
params
.
reportType
=
reportType
;
const
date
=
new
Date
();
params
.
viewingStartDate
=
COMMON
.
currentTime
();
params
.
viewingStartDate
=
date
.
toLocaleString
();
const
url
=
CONSTANT
.
URL
.
BASE_CMS
+
ClientData
.
userInfo_accountPath
()
+
CONSTANT
.
URL
.
BASE_CHECKAPI
+
CONSTANT
.
URL
.
OPERATION_VIEW_LOG
;
const
url
=
CONSTANT
.
URL
.
BASE_CMS
+
ClientData
.
userInfo_accountPath
()
+
CONSTANT
.
URL
.
BASE_HTML
+
CONSTANT
.
URL
.
OPERATION_VIEW_LOG
;
COMMON
.
cmsAjax
(
url
,
params
,
false
);
COMMON
.
cmsAjax
(
url
,
params
,
false
);
};
};
...
...
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