From 8ee8befece12f71e3c98754b2c25c529c32ac456 Mon Sep 17 00:00:00 2001 From: wyu <kknd09321@nate.com> Date: 월, 22 11월 2021 13:01:18 +0900 Subject: [PATCH] 이슈 상세 연관,하위 테이블 표시 설정 - [프론트] --- src/main/webapp/scripts/app/issue/issueAddRelationTableConfig.controller.js | 9 ++------- src/main/webapp/scripts/app/issue/issueAddDownTableConfig.controller.js | 9 +++++++++ 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/src/main/webapp/scripts/app/issue/issueAddDownTableConfig.controller.js b/src/main/webapp/scripts/app/issue/issueAddDownTableConfig.controller.js index 74a08f9..9b64891 100644 --- a/src/main/webapp/scripts/app/issue/issueAddDownTableConfig.controller.js +++ b/src/main/webapp/scripts/app/issue/issueAddDownTableConfig.controller.js @@ -22,44 +22,52 @@ // 蹂��닔 紐⑥쓬 $scope.vm = { + issueId : "", issueTableConfigs : [{ name : $filter("translate")("common.priority"), // �슦�꽑�닚�쐞 + issueId : "", key : "PRIORITY", width : "width-100-p", position : 1, display : true }, { name : $filter("translate")("common.importance"), // 以묒슂�룄 + issueId : "", key : "SEVERITY", width : "width-80-p", position : 2, display : true }, { name : $filter("translate")("issue.issueType"), // �씠�뒋 ���엯 + issueId : "", key : "ISSUE_TYPE", width : "width-140-p", position : 3, display : true }, { name : $filter("translate")("common.assignee"), // �떞�떦�옄 + issueId : "", key : "ASSIGNEE", width : "width-100-p", position : 4, display : true }, { name : $filter("translate")("common.register"), // �벑濡앹옄 + issueId : "", key : "REGISTER", width : "width-100-p", position : 5, display : false }, { name : $filter("translate")("common.period"), // 湲곌컙 + issueId : "", key : "PERIOD", width : "width-140-p", position : 6, display : false }, { name : $filter("translate")("common.lastChangeDate"), // 理쒓렐 蹂�寃쎌씪 + issueId : "", key : "MODIFY_DATE", width : "width-100-p", position : 7, @@ -83,6 +91,7 @@ $rootScope.spinner = true; var content = { + issueId :$scope.vm.issueId, issueTableConfigs : JSON.stringify($scope.vm.issueTableConfigs) }; diff --git a/src/main/webapp/scripts/app/issue/issueAddRelationTableConfig.controller.js b/src/main/webapp/scripts/app/issue/issueAddRelationTableConfig.controller.js index 6e890a9..084700f 100644 --- a/src/main/webapp/scripts/app/issue/issueAddRelationTableConfig.controller.js +++ b/src/main/webapp/scripts/app/issue/issueAddRelationTableConfig.controller.js @@ -22,51 +22,45 @@ // 蹂��닔 紐⑥쓬 $scope.vm = { + issueId: "", issueTableConfigs : [{ name : $filter("translate")("common.priority"), // �슦�꽑�닚�쐞 - issueId : "", key : "PRIORITY", width : "width-100-p", position : 1, display : true }, { name : $filter("translate")("common.importance"), // 以묒슂�룄 - issueId : "", key : "SEVERITY", width : "width-80-p", position : 2, display : true }, { name : $filter("translate")("issue.issueType"), // �씠�뒋 ���엯 - issueId : "", key : "ISSUE_TYPE", width : "width-140-p", position : 3, display : true }, { name : $filter("translate")("common.assignee"), // �떞�떦�옄 - issueId : "", key : "ASSIGNEE", width : "width-100-p", position : 4, display : true }, { name : $filter("translate")("common.register"), // �벑濡앹옄 - issueId : "", key : "REGISTER", width : "width-100-p", position : 5, display : false }, { name : $filter("translate")("common.period"), // 湲곌컙 - issueId : "", key : "PERIOD", width : "width-140-p", position : 6, display : false }, { name : $filter("translate")("common.lastChangeDate"), // 理쒓렐 蹂�寃쎌씪 - issueId : "", key : "MODIFY_DATE", width : "width-100-p", position : 7, @@ -90,6 +84,7 @@ $rootScope.spinner = true; var content = { + issueId :$scope.vm.issueId, issueTableConfigs : JSON.stringify($scope.vm.issueTableConfigs) }; -- Gitblit v1.8.0