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
27be2101
Commit
27be2101
authored
Jun 11, 2021
by
Yujin Seo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#42180 作業一覧対応
parent
2af6df32
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
+2
-1
app/script/check.js
+2
-1
No files found.
app/script/check.js
View file @
27be2101
...
...
@@ -52,6 +52,7 @@ CHK.apiCmd = {
goRelationContent
:
"goRelationContent"
,
//関連資料
goSetting
:
"goSetting"
,
//設定
goOperation
:
"goOperation"
,
//作業開始
goPanoramaEdit
:
"goPanoramaEdit"
,
//パノラマ作業資料編集
refreshContent
:
"refreshContent"
,
//新着更新
editAttached
:
"editAttached"
,
//添付ファイル編集
saveAttached
:
"saveAttached"
,
//添付ファイル保存
...
...
@@ -2650,7 +2651,7 @@ CHK.createOperationList = function(operationList) {
var
operationNameTd
=
$
(
"<td class='operationId_"
+
operationList
[
i
].
operationId
+
"'><a href=
\"
javascript:CHK_L.sendAppCommand('goOperation', '"
+
operationList
[
i
].
operationId
+
"', '"
+
operationList
[
i
].
contentId
+
"');
\"
class='d-block text-black text-decoration-none mb-1'>"
+
operationList
[
i
].
operationName
+
"</a></td>"
);
var
operationStartDateTd
=
$
(
"<td/>"
,
{
class
:
"operationStartDate"
}).
text
(
setOperationDate
(
operationList
[
i
].
operationStartDate
));
var
operationEndDateTd
=
$
(
"<td/>"
,
{
class
:
"operationEndDate"
}).
text
(
setOperationDate
(
operationList
[
i
].
operationEndDate
));
var
iconTd
=
operationList
[
i
].
operationType
==
CHK
.
OPERATION_TYPE
.
VTOUR
?
$
(
"<td class='p-2'> <button class='btn btn-outline-primary fs-8 py-2'
>VR</button> </td>"
)
:
""
;
var
iconTd
=
operationList
[
i
].
operationType
==
CHK
.
OPERATION_TYPE
.
VTOUR
?
$
(
"<td class='p-2'> <button class='btn btn-outline-primary fs-8 py-2' onclick=
\"
javascript:CHK_L.sendAppCommand('goPanoramaEdit', '"
+
operationList
[
i
].
operationId
+
"', '"
+
operationList
[
i
].
contentId
+
"');
\"
>VR</button> </td>"
)
:
""
;
operationTR
.
append
(
operationNameTd
);
operationTR
.
append
(
operationStartDateTd
);
...
...
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