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
ee4a6bb7
Commit
ee4a6bb7
authored
Oct 05, 2022
by
Takumi Imai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#49471 インデント修正
parent
49973db6
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
83 additions
and
74 deletions
+83
-74
.prettierrc
+21
-0
abvw/common/js/appCommon/check-common.js
+0
-0
abvw/common/js/appCommon/constant.js
+59
-71
abvw/html/index.html
+3
-3
abvw/js/operationList/operationList.js
+0
-0
No files found.
.prettierrc
0 → 100644
View file @
ee4a6bb7
{
"arrowParens": "avoid",
"bracketSpacing": true,
"endOfLine": "lf",
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"jsxBracketSameLine": false,
"jsxSingleQuote": false,
"printWidth": 200,
"proseWrap": "preserve",
"quoteProps": "as-needed",
"requirePragma": false,
"semi": true,
"singleQuote": true,
"tabWidth": 4,
"tabs": true,
"trailingComma": "all",
"useTabs": false,
"vueIndentScriptAndStyle": false
}
\ No newline at end of file
abvw/common/js/appCommon/check-common.js
View file @
ee4a6bb7
This diff is collapsed.
Click to expand it.
abvw/common/js/appCommon/constant.js
View file @
ee4a6bb7
/**
* constant js
*
* @since
cms:1.4.3.2&1.4.3.3 web:1.0
* @since
1.4.3.2 & 1.4.3.3
*/
const
CHK_CONSTANT
=
{};
...
...
@@ -14,90 +14,78 @@ CHK_CONSTANT.SORT_TYPE = {
};
CHK_CONSTANT
.
PAGE_NAME
=
{
DASHBOARD
:
"dashboard"
,
OPERATION_LIST
:
"operationList"
,
FOOTER
:
"main-footer.html"
,
DEFAULT
:
"index.html"
,
LOGIN
:
"login.html"
}
DASHBOARD
:
'dashboard'
,
OPERATION_LIST
:
'operationList'
,
FOOTER
:
'main-footer.html'
,
DEFAULT
:
'index.html'
,
LOGIN
:
'login.html'
,
}
;
CHK_CONSTANT
.
PAGE_TAB
=
{
DASHBOARD
:
"dashboard"
,
OPERATION_LIST
:
"operationList"
}
DASHBOARD
:
'dashboard'
,
OPERATION_LIST
:
'operationList'
,
}
;
CHK_CONSTANT
.
OPERATION_TYPE
=
{
LIST
:
"0"
,
DRAWING
:
"1"
,
VTOUR
:
"2"
,
PDF
:
"3"
LIST
:
'0'
,
DRAWING
:
'1'
,
VTOUR
:
'2'
,
PDF
:
'3'
,
};
CHK_CONSTANT
.
REPORT_TYPE
=
{
REPORTONLY
:
"0"
,
INSPECT
:
"1"
,
WITHREPLY
:
"2"
,
WORKFLOW
:
"3"
}
REPORTONLY
:
'0'
,
INSPECT
:
'1'
,
WITHREPLY
:
'2'
,
WORKFLOW
:
'3'
,
}
;
CHK_CONSTANT
.
ADD_REPORT_FLG
=
{
UNABLE
:
"0"
,
ABLE
:
"1"
}
//Command for sending CMS.
//must match the value (method name).
CHK_CONSTANT
.
ACT_CMD
=
{
getOperationList
:
"getOperationList"
,
goOperation
:
"redirectOperationPage"
,
checkSession
:
"checkAuthUser"
,
saveOperationLog
:
"saveOperationLog"
UNABLE
:
'0'
,
ABLE
:
'1'
,
};
//method name corresponding to the command.
//Disallow duplicate method names.
CHK_CONSTANT
.
CMS_WEB
=
{
OperationListWeb
:
[
"getOperationList"
],
BranchOperation
:
[
"redirectOperationPage"
],
GetSession
:
[
"checkAuthUser"
],
OperationLogWeb
:[
"saveOperationLog"
]
CHK_CONSTANT
.
URL
=
{
BASE_CMS
:
'https://'
+
location
.
host
+
'/checkapi/web/'
,
BASE_WEB
:
'abvw/html/'
,
ALL_OPERATION_LIST
:
'operationLIstWeb/getOperationList'
,
};
CHK_CONSTANT
.
LANG
=
{
SAVE_NAME
:
"lang"
,
JAPAN
:
"ja"
,
KOREA
:
"ko"
,
ENGLISH
:
"en"
}
SAVE_NAME
:
'lang'
,
JAPAN
:
'ja'
,
KOREA
:
'ko'
,
ENGLISH
:
'en'
,
}
;
CHK_CONSTANT
.
MSG_MAP
=
{
all
:{
ja
:
"全て"
,
ko
:
"전체"
,
en
:
"All"
},
dateError
:
{
ja
:
"開始日は終了日の前に設定してください。"
,
ko
:
"잘못된 검색일입니다."
,
en
:
"Please enter correct search date."
},
operationListTitle
:{
ja
:
"トップページ|A Book Check"
,
ko
:
"톱 페이지|A Book Check"
,
en
:
"Top Page|A Book Check"
},
buttonCategory
:
{
ja
:
"カテゴリー"
,
ko
:
"카테고리"
,
en
:
"Category"
},
buttonRefresh
:
{
ja
:
"更新"
,
ko
:
"갱신"
,
en
:
"Refresh"
},
buttonBack
:
{
ja
:
"戻る"
,
ko
:
"Back"
,
en
:
"Back"
},
placeholderOperationName
:
{
ja
:
"作業名"
,
ko
:
"작업명"
,
en
:
"Working Name"
},
labelPeriod
:
{
ja
:
"期間"
,
ko
:
"기간"
,
en
:
"Period"
},
labelStartDate
:
{
ja
:
"開始日"
,
ko
:
"시작일"
,
en
:
"Start date"
},
labelEndDate
:
{
ja
:
"終了日"
,
ko
:
"종료일"
,
en
:
"End date"
},
placeholderSelect
:
{
ja
:
"選択"
,
ko
:
"선택"
,
en
:
"Choice"
},
labelSort
:
{
ja
:
"並び替え"
,
ko
:
"정렬"
,
en
:
"Sort"
},
labelSortName
:
{
ja
:
"作業名順"
,
ko
:
"작업명순"
,
en
:
"By working name"
},
labelSortNew
:
{
ja
:
"作業期間が新しい順"
,
ko
:
"작업기간이 최신순"
,
en
:
"By newest period"
},
labelSortOld
:
{
ja
:
"作業期間が古い順"
,
ko
:
"작업기간이 오래된순"
,
en
:
"By oldest period"
},
labelSortOpen
:
{
ja
:
"閲覧日が新しい順"
,
ko
:
"열람순"
,
en
:
"By newest viewing date"
},
labelReset
:
{
ja
:
"クリア"
,
ko
:
"클리어"
,
en
:
"Clear"
},
headerItemName
:
{
ja
:
"作業名"
,
ko
:
"작업명"
,
en
:
"Working Name"
},
headerStartDate
:
{
ja
:
"開始日"
,
ko
:
"시작일"
,
en
:
"Start date"
},
headerEndDate
:
{
ja
:
"終了日"
,
ko
:
"종료일"
,
en
:
"End date"
},
buttonHome
:
{
ja
:
"ホーム"
,
ko
:
"홈"
,
en
:
"Home"
},
buttonSetting
:
{
ja
:
"設定"
,
ko
:
"설정"
,
en
:
"Setting"
},
buttonOperationList
:
{
ja
:
"作業一覧"
,
ko
:
"작업일람"
,
en
:
"Operations List"
},
operationListHeaderTitle
:
{
ja
:
"作業一覧"
,
ko
:
"작업일람"
,
en
:
"Operations List"
},
buttonDashboard
:
{
ja
:
"ダッシュボード"
,
ko
:
"대시보드"
,
en
:
"Dashboard"
},
buttonDashboardSetting
:
{
ja
:
"設定"
,
ko
:
"설정"
,
en
:
"Setting"
},
Processing_w_dot
:
{
ja
:
"処理中..."
,
ko
:
"처리중"
,
en
:
"Processing..."
},
errorCommunicationFailed
:
{
ja
:
"通信エラーが発生しました"
,
ko
:
"통신 오류가 발생했습니다"
,
en
:
"A communication error has occurred"
},
errorOccurred
:
{
ja
:
"エラーが発生しました"
,
ko
:
"오류가 발생했습니다"
,
en
:
"Error Occurred"
}
all
:
{
ja
:
'全て'
,
ko
:
'전체'
,
en
:
'All'
},
dateError
:
{
ja
:
'開始日は終了日の前に設定してください。'
,
ko
:
'잘못된 검색일입니다.'
,
en
:
'Please enter correct search date.'
},
operationListTitle
:
{
ja
:
'トップページ|A Book Check'
,
ko
:
'톱 페이지|A Book Check'
,
en
:
'Top Page|A Book Check'
},
buttonCategory
:
{
ja
:
'カテゴリー'
,
ko
:
'카테고리'
,
en
:
'Category'
},
buttonRefresh
:
{
ja
:
'更新'
,
ko
:
'갱신'
,
en
:
'Refresh'
},
buttonBack
:
{
ja
:
'戻る'
,
ko
:
'Back'
,
en
:
'Back'
},
placeholderOperationName
:
{
ja
:
'作業名'
,
ko
:
'작업명'
,
en
:
'Working Name'
},
labelPeriod
:
{
ja
:
'期間'
,
ko
:
'기간'
,
en
:
'Period'
},
labelStartDate
:
{
ja
:
'開始日'
,
ko
:
'시작일'
,
en
:
'Start date'
},
labelEndDate
:
{
ja
:
'終了日'
,
ko
:
'종료일'
,
en
:
'End date'
},
placeholderSelect
:
{
ja
:
'選択'
,
ko
:
'선택'
,
en
:
'Choice'
},
labelSort
:
{
ja
:
'並び替え'
,
ko
:
'정렬'
,
en
:
'Sort'
},
labelSortName
:
{
ja
:
'作業名順'
,
ko
:
'작업명순'
,
en
:
'By working name'
},
labelSortNew
:
{
ja
:
'作業期間が新しい順'
,
ko
:
'작업기간이 최신순'
,
en
:
'By newest period'
},
labelSortOld
:
{
ja
:
'作業期間が古い順'
,
ko
:
'작업기간이 오래된순'
,
en
:
'By oldest period'
},
labelSortOpen
:
{
ja
:
'閲覧日が新しい順'
,
ko
:
'열람순'
,
en
:
'By newest viewing date'
},
labelReset
:
{
ja
:
'クリア'
,
ko
:
'클리어'
,
en
:
'Clear'
},
headerItemName
:
{
ja
:
'作業名'
,
ko
:
'작업명'
,
en
:
'Working Name'
},
headerStartDate
:
{
ja
:
'開始日'
,
ko
:
'시작일'
,
en
:
'Start date'
},
headerEndDate
:
{
ja
:
'終了日'
,
ko
:
'종료일'
,
en
:
'End date'
},
buttonHome
:
{
ja
:
'ホーム'
,
ko
:
'홈'
,
en
:
'Home'
},
buttonSetting
:
{
ja
:
'設定'
,
ko
:
'설정'
,
en
:
'Setting'
},
buttonOperationList
:
{
ja
:
'作業一覧'
,
ko
:
'작업일람'
,
en
:
'Operations List'
},
operationListHeaderTitle
:
{
ja
:
'作業一覧'
,
ko
:
'작업일람'
,
en
:
'Operations List'
},
buttonDashboard
:
{
ja
:
'ダッシュボード'
,
ko
:
'대시보드'
,
en
:
'Dashboard'
},
buttonDashboardSetting
:
{
ja
:
'設定'
,
ko
:
'설정'
,
en
:
'Setting'
},
Processing_w_dot
:
{
ja
:
'処理中...'
,
ko
:
'처리중'
,
en
:
'Processing...'
},
errorCommunicationFailed
:
{
ja
:
'通信エラーが発生しました'
,
ko
:
'통신 오류가 발생했습니다'
,
en
:
'A communication error has occurred'
},
errorOccurred
:
{
ja
:
'エラーが発生しました'
,
ko
:
'오류가 발생했습니다'
,
en
:
'Error Occurred'
},
};
abvw/html/index.html
View file @
ee4a6bb7
...
...
@@ -48,9 +48,9 @@
<section
class=
"category-menu"
>
<div
id=
"overlayDiv"
class=
"overlay"
></div>
<nav
id=
"category-menu"
class=
"drawer-menu"
>
<div
class=
"d-flex justify
-content-between border-bottom"
>
<
h2
class=
"text-nowrap font-weight-bold fs-13 p-3 mb-0 multi-lang"
data-msg=
"buttonCategory"
></h2
>
<
a
class=
"category
-btn p-3"
onclick=
"CHK_OL.openCategory();"
href=
"#"
><i
class=
"fa fa-times"
></i></a>
<div
class=
"d-flex justify
font-weight-bold fs-13 p-3 mb-0 multi-lang"
data-msg=
"buttonCategory"
></h2
>
<
a
class=
"category-content-between border-bottom"
>
<
h2
class=
"text-nowrap
-btn p-3"
onclick=
"CHK_OL.openCategory();"
href=
"#"
><i
class=
"fa fa-times"
></i></a>
</div>
</nav>
</section>
...
...
abvw/js/operationList/operationList.js
View file @
ee4a6bb7
This diff is collapsed.
Click to expand it.
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