Commit 51844c29 by Yujin Seo

#42180 作業一覧対応

parent 208ab630
...@@ -280,7 +280,7 @@ ...@@ -280,7 +280,7 @@
<i class="fas fa-home fs-14 p-1"></i> <i class="fas fa-home fs-14 p-1"></i>
<div class="fs-7">ホーム</div> <div class="fs-7">ホーム</div>
</a> </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> <i class="fas fa-folder fs-14 p-1"></i>
<div class="fs-7">関連資料</div> <div class="fs-7">関連資料</div>
</a> </a>
...@@ -292,7 +292,7 @@ ...@@ -292,7 +292,7 @@
<i class="fas fa-clipboard-list fs-14 p-1"></i> <i class="fas fa-clipboard-list fs-14 p-1"></i>
<div class="fs-7">帳票確認</div> <div class="fs-7">帳票確認</div>
</a> </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> <i class="fas fa-cog fs-14 p-1"></i>
<div class="fs-7">設定</div> <div class="fs-7">設定</div>
</a> </a>
......
...@@ -243,10 +243,13 @@ CHK_L.updateList = function() { ...@@ -243,10 +243,13 @@ CHK_L.updateList = function() {
} }
} }
/**
CHK_L.goRelationContent = function () { * アプリにコマンド送信
* @param {any} command
*/
CHK_L.sendAppCommand = function (command) {
var param = {}; var param = {};
param.cmd = CHK.getCommand("goRelationContent"); param.cmd = CHK.getCommand(command);
CHK.sendABookCheckApi(param); CHK.sendABookCheckApi(param);
} }
......
...@@ -44,6 +44,7 @@ CHK.jsonPath = { ...@@ -44,6 +44,7 @@ CHK.jsonPath = {
//アプリ送信用コマンド //アプリ送信用コマンド
CHK.apiCmd = { CHK.apiCmd = {
goRelationContent: "goRelationContent", //関連資料 goRelationContent: "goRelationContent", //関連資料
goSetting: "goSetting", //設定
editAttached: "editAttached", //添付ファイル編集 editAttached: "editAttached", //添付ファイル編集
saveAttached: "saveAttached", //添付ファイル保存 saveAttached: "saveAttached", //添付ファイル保存
insertReport: "insertTaskReport", //作業報告保存 insertReport: "insertTaskReport", //作業報告保存
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment