Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
design
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
abookCheck
design
Commits
51844c29
Commit
51844c29
authored
Jun 08, 2021
by
Yujin Seo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#42180 作業一覧対応
parent
208ab630
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
5 deletions
+9
-5
app/index.html
+2
-2
app/script/check-list.js
+6
-3
app/script/check.js
+1
-0
No files found.
app/index.html
View file @
51844c29
...
...
@@ -280,7 +280,7 @@
<i
class=
"fas fa-home fs-14 p-1"
></i>
<div
class=
"fs-7"
>
ホーム
</div>
</a>
<a
class=
"d-block w-100 text-center py-2 text-decoration-none text-secondary"
onclick=
"CHK_L.
goRelationContent(
);"
>
<a
class=
"d-block w-100 text-center py-2 text-decoration-none text-secondary"
onclick=
"CHK_L.
sendAppCommand('goRelationContent'
);"
>
<i
class=
"fas fa-folder fs-14 p-1"
></i>
<div
class=
"fs-7"
>
関連資料
</div>
</a>
...
...
@@ -292,7 +292,7 @@
<i
class=
"fas fa-clipboard-list fs-14 p-1"
></i>
<div
class=
"fs-7"
>
帳票確認
</div>
</a>
<a
class=
"d-block w-100 text-center py-2 text-decoration-none text-secondary"
>
<a
class=
"d-block w-100 text-center py-2 text-decoration-none text-secondary"
onclick=
"CHK_L.sendAppCommand('goSetting');"
>
<i
class=
"fas fa-cog fs-14 p-1"
></i>
<div
class=
"fs-7"
>
設定
</div>
</a>
...
...
app/script/check-list.js
View file @
51844c29
...
...
@@ -243,10 +243,13 @@ CHK_L.updateList = function() {
}
}
CHK_L
.
goRelationContent
=
function
()
{
/**
* アプリにコマンド送信
* @param {any} command
*/
CHK_L
.
sendAppCommand
=
function
(
command
)
{
var
param
=
{};
param
.
cmd
=
CHK
.
getCommand
(
"goRelationContent"
);
param
.
cmd
=
CHK
.
getCommand
(
command
);
CHK
.
sendABookCheckApi
(
param
);
}
...
...
app/script/check.js
View file @
51844c29
...
...
@@ -44,6 +44,7 @@ CHK.jsonPath = {
//アプリ送信用コマンド
CHK
.
apiCmd
=
{
goRelationContent
:
"goRelationContent"
,
//関連資料
goSetting
:
"goSetting"
,
//設定
editAttached
:
"editAttached"
,
//添付ファイル編集
saveAttached
:
"saveAttached"
,
//添付ファイル保存
insertReport
:
"insertTaskReport"
,
//作業報告保存
...
...
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