Index: arms/html/reqStatus/content-container.html =================================================================== diff -u -r75c1d8627d9ebe5f8fce0249a44bba41f06cb591 -rfad143484c6c7e58bfa0940679b14136519ec3b0 --- arms/html/reqStatus/content-container.html (.../content-container.html) (revision 75c1d8627d9ebe5f8fce0249a44bba41f06cb591) +++ arms/html/reqStatus/content-container.html (.../content-container.html) (revision fad143484c6c7e58bfa0940679b14136519ec3b0) @@ -183,7 +183,27 @@
- Resource +
+
+ +
+
+
+
+ 6. 연결된 ALM 이슈의 작업자 +
+
+
+
+
+
+
+
Index: arms/js/reqStatus.js =================================================================== diff -u -raadb593469e577eff05f6c8296bdb02ec0a8cd50 -rfad143484c6c7e58bfa0940679b14136519ec3b0 --- arms/js/reqStatus.js (.../reqStatus.js) (revision aadb593469e577eff05f6c8296bdb02ec0a8cd50) +++ arms/js/reqStatus.js (.../reqStatus.js) (revision fad143484c6c7e58bfa0940679b14136519ec3b0) @@ -90,6 +90,16 @@ disableFadeOut: false }); + $("#assign_status").slimScroll({ + height: "195px", + railVisible: true, + railColor: "#222", + railOpacity: 0.3, + wheelStep: 10, + allowPageScroll: false, + disableFadeOut: false + }); + }) .catch(function() { console.error('플러그인 로드 중 오류 발생'); @@ -156,9 +166,42 @@ //진행상태 가져오기 progressLoad($("#selected_pdService").val(), null); + resourceLoad($("#selected_pdService").val(), null); + }); } // end makePdServiceSelectBox() + +function resourceLoad(pdservice_id, pdservice_version_id){ + + $('#assign_status').empty(); // 모든 자식 요소 삭제 + + //제품 서비스 셀렉트 박스 데이터 바인딩 + $.ajax({ + url: "/auth-user/api/arms/dashboard/jira-issue-assignee?pdServiceId=" + pdservice_id, + type: "GET", + contentType: "application/json;charset=UTF-8", + dataType: "json", + progress: true, + statusCode: { + 200: function (data) { + + for (var key in data) { + var value = data[key]; + console.log(key + "=" + value); + + var html_piece = "
\n" + + "✡ " + key + " : " + value + "\n" + + "
"; + $('#assign_status').append(html_piece); + } + + } + } + }); +} + function progressLoad(pdservice_id, pdservice_version_id){ $('#progress_status').empty(); // 모든 자식 요소 삭제