Commit 51844c29 by Yujin Seo

#42180 作業一覧対応

parent 208ab630
......@@ -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>
......
......@@ -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);
}
......
......@@ -44,6 +44,7 @@ CHK.jsonPath = {
//アプリ送信用コマンド
CHK.apiCmd = {
goRelationContent: "goRelationContent", //関連資料
goSetting: "goSetting", //設定
editAttached: "editAttached", //添付ファイル編集
saveAttached: "saveAttached", //添付ファイル保存
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