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
976ad058
Commit
976ad058
authored
Nov 04, 2022
by
Takumi Imai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#49772 ファイルパス修正
parent
468d4820
Show whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
121 additions
and
132 deletions
+121
-132
abweb/common/css/newdash/app.css
+6
-6
abweb/common/js/common.js
+6
-6
abweb/common/js/constant.js
+1
-1
abweb/common/js/web/i18n.js
+52
-63
abweb/html/dashboard.html
+3
-3
abweb/html/index.html
+22
-22
abweb/html/login.html
+17
-17
abweb/html/main-footer.html
+1
-1
abweb/html/pickup.html
+3
-3
abweb/html/push-message-detail.html
+3
-3
abweb/html/push-message-list.html
+3
-3
abweb/html/send-message.html
+4
-4
No files found.
abweb/common/css/newdash/app.css
View file @
976ad058
...
...
@@ -11038,7 +11038,7 @@ ul.card-list > li:not(.selected):not(.not-found):hover{
}
.select-card-list .arrow-icon {
background-image: url("/ab
vw
/common/img/icon_arrow_down.svg");
background-image: url("/ab
web
/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("/ab
vw
/common/img/icon_arrow_right.svg");
background-image: url("/ab
web
/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("/ab
vw
/common/img/type_icon_report.svg");
background-image: url("/ab
web
/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("/ab
vw
/common/img/type_icon_questionary.svg");
background-image: url("/ab
web
/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("/ab
vw
/common/img/type_icon_inspection.svg");
background-image: url("/ab
web
/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("/ab
vw
/common/img/type_icon_proccess.svg")
;
background-image
:
url("/ab
web
/common/img/type_icon_proccess.svg")
;
background-size
:
contain
;
background-repeat
:
no-repeat
;
background-position
:
center
;
...
...
abweb/common/js/common.js
View file @
976ad058
...
...
@@ -721,8 +721,8 @@ $(function () {
var
location
=
window
.
location
.
toString
().
toLowerCase
();
var
sysFile
=
''
;
if
(
location
.
indexOf
(
'/ab
vw
'
)
<
0
)
{
sysFile
=
'../ab
vw
/common/json/sys/conf.json'
;
if
(
location
.
indexOf
(
'/ab
web
'
)
<
0
)
{
sysFile
=
'../ab
web
/common/json/sys/conf.json'
;
}
else
{
sysFile
=
'../common/json/sys/conf.json'
;
}
...
...
@@ -1244,11 +1244,11 @@ COMMON.callCmsApi = function (url, type, params, async, success, error) {
};
// Function to set position of object to center
jQuery
.
fn
.
center
=
function
()
{
this
.
css
(
"position"
,
"fixed"
);
jQuery
.
fn
.
center
=
function
()
{
this
.
css
(
'position'
,
'fixed'
);
this
.
css
(
"top"
,
((
$
(
window
).
height
()
-
this
.
height
())
/
2
)
+
"px"
);
this
.
css
(
"left"
,
((
$
(
window
).
width
()
-
this
.
width
())
/
2
)
+
"px"
);
this
.
css
(
'top'
,
(
$
(
window
).
height
()
-
this
.
height
())
/
2
+
'px'
);
this
.
css
(
'left'
,
(
$
(
window
).
width
()
-
this
.
width
())
/
2
+
'px'
);
return
this
;
};
abweb/common/js/constant.js
View file @
976ad058
...
...
@@ -66,7 +66,7 @@ CONSTANT.URL = {
},
},
WEB
:
{
BASE
:
'http://127.0.0.1:5500/ab
vw
/html/'
,
BASE
:
'http://127.0.0.1:5500/ab
web
/html/'
,
OPERATION_LIST
:
'index'
,
},
};
...
...
abweb/common/js/web/i18n.js
View file @
976ad058
...
...
@@ -16,58 +16,54 @@ var I18N = {};
/**
* 定数:言語ファイル配置場所
*/
I18N
.
avwsys_location
=
""
;
I18N
.
avwsys_dir
=
""
;
I18N
.
avwsys_storagekey
=
""
;
I18N
.
avwsys_currLang
=
""
;
I18N
.
avwsys_location
=
''
;
I18N
.
avwsys_dir
=
''
;
I18N
.
avwsys_storagekey
=
''
;
I18N
.
avwsys_currLang
=
''
;
/* 言語の初期化 */
$
(
function
()
{
$
(
function
()
{
I18N
.
initi18n
();
});
/** 言語リソース設定初期化 */
I18N
.
initi18n
=
function
(){
I18N
.
avwsys_location
=
"/common/json/lang"
;
I18N
.
avwsys_dir
=
"/abvw"
;
I18N
.
avwsys_storagekey
=
"AVWUS_Lang"
;
I18N
.
avwsys_currLang
=
"AVW_CurrLang"
;
I18N
.
initi18n
=
function
()
{
I18N
.
avwsys_location
=
'/common/json/lang'
;
I18N
.
avwsys_dir
=
'/abweb'
;
I18N
.
avwsys_storagekey
=
'AVWUS_Lang'
;
I18N
.
avwsys_currLang
=
'AVW_CurrLang'
;
// ログイン画面/直接アクセス対策
var
location
=
window
.
location
.
toString
().
toLowerCase
();
if
(
location
.
indexOf
(
I18N
.
avwsys_dir
)
<
0
)
{
// I18N.avwsys_dirディレクトリ配下ではない場合は、I18N.avwsys_dirディレクトリをつける
I18N
.
avwsys_location
=
".."
+
I18N
.
avwsys_dir
+
I18N
.
avwsys_location
;
I18N
.
avwsys_location
=
'..'
+
I18N
.
avwsys_dir
+
I18N
.
avwsys_location
;
}
else
{
// I18N.avwsys_dirディレクトリ配下の場合は、相対パスに変換
I18N
.
avwsys_location
=
".."
+
I18N
.
avwsys_location
;
I18N
.
avwsys_location
=
'..'
+
I18N
.
avwsys_location
;
}
var
lang
=
"en"
;
var
lang
=
'en'
;
var
storage
=
window
.
localStorage
;
if
(
storage
)
{
if
(
storage
)
{
var
lang
=
storage
.
getItem
(
I18N
.
avwsys_storagekey
);
if
(
!
lang
)
{
if
(
!
lang
)
{
lang
=
I18N
.
getNavigatorLanguage
();
}
}
// 言語ファイルを初期化する
I18N
.
loadLanguage
(
lang
);
};
/* ブラウザの言語設定を取得する */
I18N
.
getNavigatorLanguage
=
function
()
{
var
lang
=
(
navigator
.
browserLanguage
||
navigator
.
language
||
navigator
.
userLanguage
)
;
I18N
.
getNavigatorLanguage
=
function
()
{
var
lang
=
navigator
.
browserLanguage
||
navigator
.
language
||
navigator
.
userLanguage
;
/* 対応言語 */
var
languages
=
[
'ja'
,
'ko'
,
'en'
];
// 対応言語を増やす場合はここを変更する
if
(
lang
.
match
(
/ja|ko|en/g
))
{
for
(
var
i
=
0
;
i
<
languages
.
length
;
i
++
)
{
var
languages
=
[
'ja'
,
'ko'
,
'en'
];
// 対応言語を増やす場合はここを変更する
if
(
lang
.
match
(
/ja|ko|en/g
))
{
for
(
var
i
=
0
;
i
<
languages
.
length
;
i
++
)
{
var
index
=
lang
.
indexOf
(
languages
[
i
]);
if
(
index
>=
0
)
{
if
(
index
>=
0
)
{
lang
=
lang
.
substring
(
index
,
2
);
break
;
}
...
...
@@ -79,18 +75,17 @@ I18N.getNavigatorLanguage = function() {
};
/* 言語リソースファイル読み込み */
I18N
.
loadLanguage
=
function
(
lang
)
{
I18N
.
loadLanguage
=
function
(
lang
)
{
// 引数から言語ファイルを選択
var
langfile
=
"lang-"
+
lang
+
".json"
;
var
langfile
=
'lang-'
+
lang
+
'.json'
;
// 言語ファイルを読み込む
$
.
ajax
({
url
:
I18N
.
avwsys_location
+
"/"
+
langfile
,
url
:
I18N
.
avwsys_location
+
'/'
+
langfile
,
async
:
false
,
dataType
:
'json'
,
cache
:
false
,
success
:
function
(
data
)
{
success
:
function
(
data
)
{
// lang属性の書換え
document
.
documentElement
.
lang
=
lang
;
...
...
@@ -101,41 +96,37 @@ I18N.loadLanguage = function(lang) {
// 言語設定、言語データをストレージにキャッシュしておく
I18N
.
storeCurrentLanguage
(
lang
,
jsonLangData
);
},
error
:
function
(
xhr
,
txtStatus
,
errorThrown
)
{
error
:
function
(
xhr
,
txtStatus
,
errorThrown
)
{
var
error
=
'Could not load a language file '
+
langfile
+
'. please check it.'
;
error
+=
'
\
n'
+
xhr
.
status
+
' '
+
txtStatus
+
' '
+
errorThrown
+
' : '
+
langfile
;
alert
(
error
);
}
},
});
};
/* ページ内のテキストをすべて言語に合わせて置換する */
I18N
.
replaceText
=
function
(
jsonLangData
)
{
I18N
.
replaceText
=
function
(
jsonLangData
)
{
var
itemCount
=
$
(
'.lang'
).
length
;
if
(
itemCount
>
0
)
{
for
(
var
i
=
0
;
i
<
itemCount
;
i
++
)
{
if
(
itemCount
>
0
)
{
for
(
var
i
=
0
;
i
<
itemCount
;
i
++
)
{
var
obj
=
$
(
'.lang:eq('
+
i
+
')'
);
var
langId
=
obj
.
attr
(
'lang'
);
if
(
langId
)
{
if
(
langId
)
{
var
langText
=
I18N
.
getLangText
(
jsonLangData
,
langId
);
var
tn
=
obj
.
get
()[
0
].
localName
;
if
(
tn
==
'input'
)
{
if
(
obj
.
attr
(
'type'
)
==
'button'
||
obj
.
attr
(
'type'
)
==
'submit'
)
{
if
(
tn
==
'input'
)
{
if
(
obj
.
attr
(
'type'
)
==
'button'
||
obj
.
attr
(
'type'
)
==
'submit'
)
{
obj
.
val
(
langText
);
}
else
{
}
else
{
obj
.
text
(
langText
);
}
}
else
{
if
(
obj
.
attr
(
'type'
)
==
'image'
)
{
obj
.
attr
(
'alt'
,
langText
);
obj
.
attr
(
'title'
,
langText
);
}
else
{
}
else
{
obj
.
text
(
langText
);
}
}
}
}
...
...
@@ -143,11 +134,11 @@ I18N.replaceText = function(jsonLangData) {
};
/* 現在設定されている言語でHTMLテキストを置き換える */
I18N
.
i18nReplaceText
=
function
()
{
I18N
.
i18nReplaceText
=
function
()
{
var
storage
=
window
.
sessionStorage
;
if
(
storage
)
{
if
(
storage
)
{
var
value
=
storage
.
getItem
(
I18N
.
avwsys_storagekey
);
if
(
value
)
{
if
(
value
)
{
var
json
=
JSON
.
parse
(
value
);
I18N
.
replaceText
(
json
);
}
...
...
@@ -155,33 +146,32 @@ I18N.i18nReplaceText = function() {
};
/* キーから文字列を取得 */
I18N
.
i18nText
=
function
(
key
)
{
I18N
.
i18nText
=
function
(
key
)
{
var
storage
=
window
.
sessionStorage
;
if
(
storage
)
{
if
(
storage
)
{
var
value
=
storage
.
getItem
(
I18N
.
avwsys_storagekey
);
if
(
value
)
{
if
(
value
)
{
var
json
=
JSON
.
parse
(
value
);
return
I18N
.
getLangText
(
json
,
key
);
}
}
return
"undefined"
;
return
'undefined'
;
};
/* 言語データのキー値から文字列を取得 */
I18N
.
getLangText
=
function
(
jsonLangData
,
key
)
{
if
(
jsonLangData
)
{
I18N
.
getLangText
=
function
(
jsonLangData
,
key
)
{
if
(
jsonLangData
)
{
var
text
=
jsonLangData
[
key
];
return
text
;
}
return
"undefined."
;
return
'undefined.'
;
};
/* 言語データの切り替え */
I18N
.
changeLanguage
=
function
(
lang
)
{
I18N
.
changeLanguage
=
function
(
lang
)
{
// 言語の切替を行った場合のみ選択言語をストアする
var
storage
=
window
.
localStorage
;
if
(
storage
)
{
if
(
storage
)
{
storage
.
setItem
(
I18N
.
avwsys_storagekey
,
lang
);
}
...
...
@@ -190,9 +180,9 @@ I18N.changeLanguage = function(lang) {
};
/* 設定言語の保存 */
I18N
.
storeCurrentLanguage
=
function
(
lang
,
langData
)
{
I18N
.
storeCurrentLanguage
=
function
(
lang
,
langData
)
{
var
ss
=
window
.
sessionStorage
;
if
(
ss
)
{
if
(
ss
)
{
// language data
ss
.
setItem
(
I18N
.
avwsys_storagekey
,
JSON
.
stringify
(
langData
));
// current language
...
...
@@ -200,15 +190,14 @@ I18N.storeCurrentLanguage = function(lang, langData) {
}
};
/* 設定言語の取得 */
I18N
.
getCurrentLanguage
=
function
()
{
I18N
.
getCurrentLanguage
=
function
()
{
var
lang
;
var
storage
=
window
.
sessionStorage
;
if
(
storage
)
{
if
(
storage
)
{
lang
=
storage
.
getItem
(
I18N
.
avwsys_currLang
);
}
if
(
!
lang
)
{
if
(
!
lang
)
{
lang
=
I18N
.
getNavigatorLanguage
();
}
return
lang
;
};
abweb/html/dashboard.html
View file @
976ad058
...
...
@@ -15,9 +15,9 @@
<!-- vender css -->
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/newdash/fontawesome_relative_path.css"
>
<script
type=
"text/javascript"
src=
"/ab
vw
/common/js/jquery/jquery-3.6.0.min.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"/ab
vw
/common/js/jquery/jquery-ui.min.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"/ab
vw
/common/js/web/i18n.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"/ab
web
/common/js/jquery/jquery-3.6.0.min.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"/ab
web
/common/js/jquery/jquery-ui.min.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"/ab
web
/common/js/web/i18n.js?__UPDATEID__"
></script>
<script
src=
"../common/js/constant.js?__UPDATEID__"
></script>
<script
src=
"../common/js/common.js?__UPDATEID__"
></script>
...
...
abweb/html/index.html
View file @
976ad058
...
...
@@ -8,24 +8,24 @@
<meta
name=
"viewport"
content=
"width=device-width,minimum-scale=1,initial-scale=1"
>
<meta
name=
"description"
content=
"A Book Check"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/ab
vw
/common/css/appCommon/header.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/ab
vw
/common/css/appCommon/footer.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/ab
vw
/common/css/appCommon/style.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/ab
vw
/common/css/appCommon/app.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/ab
vw
/common/css/appCommon/fontawesome_relative_path.css"
>
<script
src=
"/ab
vw
/common/js/jquery/jquery-3.6.0.min.js?__UPDATEID__"
></script>
<script
src=
"/ab
vw
/common/js/jquery/jquery-ui.min.js?__UPDATEID__"
></script>
<!-- <script src="/ab
vw
/common/js/web/common.js?__UPDATEID__"></script>
<script src="/ab
vw
/common/js/web/avweb.js?__UPDATEID__"></script> -->
<script
src=
"/ab
vw
/common/js/constant.js?__UPDATEID__"
></script>
<script
src=
"/ab
vw
/common/js/common.js?__UPDATEID__"
></script>
<script
src=
"/ab
vw
/js/operationList/operationList.js?__UPDATEID__"
></script>
<script
src=
"/ab
vw
/js/topPage/topPage.js?__UPDATEID__"
></script>
<script
src=
"/ab
vw
/js/dashboardSetting/check-dashboard-setting.js?__UPDATEID__"
></script>
<script
src=
"/ab
vw
/js/dashboard/dashboard.js?__UPDATEID__"
></script>
<script
src=
"/ab
vw
/common/js/footer.js?__UPDATEID__"
></script>
<script
src=
"/ab
vw
/common/js/app.js?__UPDATEID__"
defer
></script>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/ab
web
/common/css/appCommon/header.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/ab
web
/common/css/appCommon/footer.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/ab
web
/common/css/appCommon/style.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/ab
web
/common/css/appCommon/app.css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/ab
web
/common/css/appCommon/fontawesome_relative_path.css"
>
<script
src=
"/ab
web
/common/js/jquery/jquery-3.6.0.min.js?__UPDATEID__"
></script>
<script
src=
"/ab
web
/common/js/jquery/jquery-ui.min.js?__UPDATEID__"
></script>
<!-- <script src="/ab
web
/common/js/web/common.js?__UPDATEID__"></script>
<script src="/ab
web
/common/js/web/avweb.js?__UPDATEID__"></script> -->
<script
src=
"/ab
web
/common/js/constant.js?__UPDATEID__"
></script>
<script
src=
"/ab
web
/common/js/common.js?__UPDATEID__"
></script>
<script
src=
"/ab
web
/js/operationList/operationList.js?__UPDATEID__"
></script>
<script
src=
"/ab
web
/js/topPage/topPage.js?__UPDATEID__"
></script>
<script
src=
"/ab
web
/js/dashboardSetting/check-dashboard-setting.js?__UPDATEID__"
></script>
<script
src=
"/ab
web
/js/dashboard/dashboard.js?__UPDATEID__"
></script>
<script
src=
"/ab
web
/common/js/footer.js?__UPDATEID__"
></script>
<script
src=
"/ab
web
/common/js/app.js?__UPDATEID__"
defer
></script>
</head>
...
...
@@ -82,7 +82,7 @@
<!--カレンダー-->
<div
class=
"col-1 col-md-2 duration-area"
>
<a
href=
"#"
class=
"d-inline-block text-decoration-none py-2 lht-0"
data-toggle=
"modal"
data-target=
"#exampleModal"
>
<img
class=
"icon"
src=
"/ab
vw
/img/operationList/icon_calendar.svg"
>
<img
class=
"icon"
src=
"/ab
web
/img/operationList/icon_calendar.svg"
>
<span
class=
"d-none d-md-inline text-black fs-10 align-middle multi-lang"
data-msg=
"labelPeriod"
></span>
</a>
<div
class=
"modal modal-duration fade"
id=
"exampleModal"
tabindex=
"-1"
aria-labelledby=
"exampleModalLabel"
aria-hidden=
"true"
>
...
...
@@ -120,7 +120,7 @@
<!--ソート-->
<div
class=
"col-4 col-md-5 col-lg-6 text-right"
>
<a
href=
"#"
class=
"text-decoration-none py-2 lht-0"
data-toggle=
"dropdown"
aria-haspopup=
"true"
aria-expanded=
"false"
data-offset=
"-120, 0"
>
<img
class=
"icon"
src=
"/ab
vw
/img/operationList/icon_swap.svg"
>
<img
class=
"icon"
src=
"/ab
web
/img/operationList/icon_swap.svg"
>
<span
class=
"d-none d-md-inline text-dark fs-10 align-middle multi-lang"
data-msg=
"labelSort"
></span>
</a>
<div
class=
"dropdown-menu"
aria-labelledby=
"dropdownMenuButton"
>
...
...
@@ -130,7 +130,7 @@
<a
class=
"dropdown-item sort-type multi-lang"
data-msg=
"labelSortOpen"
data-sort=
"4"
onclick=
"OL.changeSortType(this);"
></a>
</div>
<a
href=
"javascript:OL.resetSearch();"
class=
"text-decoration-none py-2 lht-0 d-inline-block ml-3"
>
<img
class=
"icon"
src=
"/ab
vw
/img/operationList/icon_clear.svg"
>
<img
class=
"icon"
src=
"/ab
web
/img/operationList/icon_clear.svg"
>
<span
class=
"d-none d-md-inline text-dark fs-10 align-middle multi-lang"
data-msg=
"labelReset"
lnag=
"labelReset"
></span>
</a>
</div>
...
...
@@ -162,7 +162,7 @@
<h1
class=
"fs-10 font-weight-bold mb-0 text-white multi-lang alignCenter_header"
data-msg=
"dashboardHeaderTitle"
></h1>
<div
class=
"d-flex align-items-center"
>
<a
href=
"javascript:CHK.goUrlWithCurrentParams('dashboard-setting.html');"
class=
"nav-link text-white lht-0 p-1 mr-2"
>
<img
class=
"icon"
src=
"/ab
vw
/img/dashboard/icon_dashboard_setting.svg"
alt=
""
>
<img
class=
"icon"
src=
"/ab
web
/img/dashboard/icon_dashboard_setting.svg"
alt=
""
>
<span
class=
"d-none d-md-inline fs-10 align-middle multi-lang"
data-msg=
"buttonDashboardSetting"
></span>
</a>
</div>
...
...
abweb/html/login.html
View file @
976ad058
...
...
@@ -11,20 +11,20 @@
<title></title>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/ab
vw
/common/css/web/common.css?__UPDATEID__"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/ab
vw
/common/css/jquery/jquery-ui.min.css?__UPDATEID__"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/ab
vw
/common/css/jquery/jquery-ui.structure.min.css?__UPDATEID__"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/ab
vw
/common/css/jquery/jquery-ui.theme.min.css?__UPDATEID__"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/ab
vw
/css/login/login.css?__UPDATEID__"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/ab
vw
/css/login/login_validation.css?__UPDATEID__"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/ab
web
/common/css/web/common.css?__UPDATEID__"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/ab
web
/common/css/jquery/jquery-ui.min.css?__UPDATEID__"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/ab
web
/common/css/jquery/jquery-ui.structure.min.css?__UPDATEID__"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/ab
web
/common/css/jquery/jquery-ui.theme.min.css?__UPDATEID__"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/ab
web
/css/login/login.css?__UPDATEID__"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/ab
web
/css/login/login_validation.css?__UPDATEID__"
/>
<script
type=
"text/javascript"
src=
"/ab
vw
/common/js/jquery/jquery-3.6.0.min.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"/ab
vw
/common/js/jquery/jquery-ui.min.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"/ab
vw
/common/js/web/i18n.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"/ab
vw
/common/js/constant.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"/ab
vw
/common/js/validation.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"/ab
vw
/common/js/common.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"/ab
vw
/js/login/login.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"/ab
web
/common/js/jquery/jquery-3.6.0.min.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"/ab
web
/common/js/jquery/jquery-ui.min.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"/ab
web
/common/js/web/i18n.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"/ab
web
/common/js/constant.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"/ab
web
/common/js/validation.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"/ab
web
/common/js/common.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"/ab
web
/js/login/login.js?__UPDATEID__"
></script>
<!--[if gte IE 9]>
<style type="text/css">
...
...
@@ -44,19 +44,19 @@
<body
id=
"login"
>
<div
id=
"anonymous"
>
<img
src=
"/ab
vw
/img/login/logo_login.png"
width=
"200"
class=
"clearboth"
/>
<img
src=
"/ab
web
/img/login/logo_login.png"
width=
"200"
class=
"clearboth"
/>
</div>
<div
id=
"normalUser"
>
<!--
<div id="loader"><img src="./ab
vw
/img/login/loading_icon.gif" width="200" height="200"></div>
<div id="loader"><img src="./ab
web
/img/login/loading_icon.gif" width="200" height="200"></div>
<div id="fade"></div>
-->
<div
class=
"wrapper"
>
<div
id=
"main-ws"
>
<ul
class=
"floatR"
id=
"menu-language"
><li
class=
"language"
><a
id=
"language-ja"
><img
src=
"/ab
vw/img/login/flg_jpn.png"
width=
"29"
height=
"20"
></a></li><li
class=
"language"
><a
id=
"language-en"
><img
src=
"/abvw/img/login/flg_usa.png"
width=
"29"
height=
"20"
></a></li><li
class=
"language"
><a
id=
"language-ko"
><img
src=
"/abvw
/img/login/flg_kor.png"
width=
"29"
height=
"20"
></a></li></ul>
<ul
class=
"floatR"
id=
"menu-language"
><li
class=
"language"
><a
id=
"language-ja"
><img
src=
"/ab
web/img/login/flg_jpn.png"
width=
"29"
height=
"20"
></a></li><li
class=
"language"
><a
id=
"language-en"
><img
src=
"/abweb/img/login/flg_usa.png"
width=
"29"
height=
"20"
></a></li><li
class=
"language"
><a
id=
"language-ko"
><img
src=
"/abweb
/img/login/flg_kor.png"
width=
"29"
height=
"20"
></a></li></ul>
<article>
<img
src=
"/ab
vw
/img/login/logo_login.png"
width=
"200"
class=
"clearboth"
id=
"logologin"
>
<img
src=
"/ab
web
/img/login/logo_login.png"
width=
"200"
class=
"clearboth"
id=
"logologin"
>
<section
id=
"formlogin"
style=
"display:none;"
>
<table
width=
"440"
border=
"0"
cellspacing=
"0"
>
<tr>
...
...
abweb/html/main-footer.html
View file @
976ad058
...
...
@@ -3,7 +3,7 @@
<nav
class=
"d-flex justify-content-around"
>
<!--ダッシュボード-->
<a
id=
"dashboardBottomNav"
class=
"d-block w-100 text-center py-2 text-decoration-none text-secondary bottom-nav"
href=
"javascript:FOOTER.goDashboard();"
>
<img
src=
"/ab
vw/img/dashboard/icon_dashboard_inactive.svg"
data-inactive-src=
"/abvw/img/dashboard/icon_dashboard_inactive.svg"
data-src=
"/abvw
/img/dashboard/icon_dashboard.svg"
alt=
"buttonDashboard"
class=
"p-1"
>
<img
src=
"/ab
web/img/dashboard/icon_dashboard_inactive.svg"
data-inactive-src=
"/abweb/img/dashboard/icon_dashboard_inactive.svg"
data-src=
"/abweb
/img/dashboard/icon_dashboard.svg"
alt=
"buttonDashboard"
class=
"p-1"
>
<div
class=
"fs-7 multi-lang"
data-msg=
"buttonDashboard"
></div>
</a>
<!--作業一覧-->
...
...
abweb/html/pickup.html
View file @
976ad058
...
...
@@ -15,9 +15,9 @@
<!-- vender css -->
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/newdash/fontawesome_relative_path.css"
>
<script
type=
"text/javascript"
src=
"/ab
vw
/common/js/jquery/jquery-3.6.0.min.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"/ab
vw
/common/js/jquery/jquery-ui.min.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"/ab
vw
/common/js/web/i18n.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"/ab
web
/common/js/jquery/jquery-3.6.0.min.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"/ab
web
/common/js/jquery/jquery-ui.min.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"/ab
web
/common/js/web/i18n.js?__UPDATEID__"
></script>
<script
src=
"../common/js/constant.js?__UPDATEID__"
></script>
...
...
abweb/html/push-message-detail.html
View file @
976ad058
...
...
@@ -15,9 +15,9 @@
<!-- vender css -->
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/newdash/fontawesome_relative_path.css"
>
<script
type=
"text/javascript"
src=
"/ab
vw
/common/js/jquery/jquery-3.6.0.min.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"/ab
vw
/common/js/jquery/jquery-ui.min.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"/ab
vw
/common/js/web/i18n.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"/ab
web
/common/js/jquery/jquery-3.6.0.min.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"/ab
web
/common/js/jquery/jquery-ui.min.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"/ab
web
/common/js/web/i18n.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"../common/js/newdash/app.js"
></script>
<script
type=
"text/javascript"
src=
"../common/js/newdash/common.js"
></script>
...
...
abweb/html/push-message-list.html
View file @
976ad058
...
...
@@ -15,9 +15,9 @@
<!-- vender css -->
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/newdash/fontawesome_relative_path.css"
>
<script
type=
"text/javascript"
src=
"/ab
vw
/common/js/jquery/jquery-3.6.0.min.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"/ab
vw
/common/js/jquery/jquery-ui.min.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"/ab
vw
/common/js/web/i18n.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"/ab
web
/common/js/jquery/jquery-3.6.0.min.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"/ab
web
/common/js/jquery/jquery-ui.min.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"/ab
web
/common/js/web/i18n.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"../common/js/newdash/app.js"
></script>
<script
type=
"text/javascript"
src=
"../common/js/newdash/common.js"
></script>
...
...
abweb/html/send-message.html
View file @
976ad058
...
...
@@ -15,12 +15,12 @@
<!-- vender css -->
<link
rel=
"stylesheet"
type=
"text/css"
href=
"../common/css/newdash/fontawesome_relative_path.css"
>
<script
type=
"text/javascript"
src=
"/ab
vw
/common/js/jquery/jquery-3.6.0.min.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"/ab
vw
/common/js/jquery/jquery-ui.min.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"/ab
vw
/common/js/web/i18n.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"/ab
web
/common/js/jquery/jquery-3.6.0.min.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"/ab
web
/common/js/jquery/jquery-ui.min.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"/ab
web
/common/js/web/i18n.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"../common/js/newdash/app.js"
></script>
<script
type=
"text/javascript"
src=
"../common/js/newdash/common.js"
></script>
<script
type=
"text/javascript"
src=
"/ab
vw
/common/js/validation.js?__UPDATEID__"
></script>
<script
type=
"text/javascript"
src=
"/ab
web
/common/js/validation.js?__UPDATEID__"
></script>
<script
src=
"../common/js/constant.js?__UPDATEID__"
></script>
<script
src=
"../common/js/common.js?__UPDATEID__"
></script>
...
...
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