From fd8fdf9441329845ff78d3ae4274f107e3e6ba4d Mon Sep 17 00:00:00 2001 From: 이민희 <mhlee@maprex.co.kr> Date: 월, 29 11월 2021 17:59:00 +0900 Subject: [PATCH] 이슈 목록 - '이슈 제목' 검색 조건 추가 --- src/main/webapp/views/issue/issueListNormal.html | 35 +++++++++++++++++++++++++++-------- 1 files changed, 27 insertions(+), 8 deletions(-) diff --git a/src/main/webapp/views/issue/issueListNormal.html b/src/main/webapp/views/issue/issueListNormal.html index b52df46..d051599 100644 --- a/src/main/webapp/views/issue/issueListNormal.html +++ b/src/main/webapp/views/issue/issueListNormal.html @@ -16,8 +16,8 @@ maxlength="300" kr-input owl-auto-focus - ng-model="vm.search.title" - placeholder="{{'issue.pleaseEnterIssueName' | translate}}"> + ng-model="vm.search.keyWord" + placeholder="{{'issue.pleaseEnterIssueKeyWord' | translate}}"> <div class="input-group-prepend ml-10"> <button class="btn btn-navy" ng-click="fn.getPageList(0)"> <span translate="common.search">寃��깋</span></button> </div> @@ -29,6 +29,12 @@ <div class="col-sm-12"> <div class="tabfilter"> <div translate="common.selectedSearchCriteria">�꽑�깮�븳 寃��깋 議곌굔</div> + <!-- �씠�뒋 �젣紐� --> + <p ng-if="$root.isDefined(vm.search.title)"> + {{vm.search.title}} + <span ng-click="vm.search.title = ''">횞</span> + </p> + <!-- �봽濡쒖젥�듃 --> <issue-search-array-view-element lists="vm.projects" type="'project'"></issue-search-array-view-element> @@ -102,6 +108,19 @@ </label> <div ng-if="vm.searchView"> <div class="row"> + <div class="col-lg-3"> + <div class="form-group"> + <label> <span translate="issue.issueTitle">�씠�뒋 �젣紐�</span></label> + <input type="text" + name="title" + class="form-control input-sm" + kr-input + maxlength="20" + autocomplete="off" + ng-model="vm.search.title"> + </div> + </div> + <div class="col-lg-3"> <div class="form-group"> <label> <span translate="common.project">�봽濡쒖젥�듃</span></label> @@ -186,13 +205,13 @@ <div class="col-lg-3"> <div class="form-group"> <label> <span translate="common.assigneeTeam">�떞�떦遺��꽌</span></label> - <js-autocomplete-multi data-input-name="users" - selected-model="vm.users" - search="vm.userName" + <js-autocomplete-multi data-input-name="departments" + selected-model="vm.departments" + search="vm.departmentName" input-disabled="false" - source="fn.getUserList(vm.userName, vm.users)" - translation-texts="{ count : 'common.userNum', empty : 'common.emptyUser' }" - extra-settings="{ displayProp : 'byName' , idProp : 'id', widthable : false, width : '', imageable : true, imagePathProp : 'profile', type : 'user', maxlength : 100 }"> + source="fn.getUserDepartmentList(vm.departmentName, vm.departments)" + translation-texts="{ count : 'common.userNum', empty : 'common.emptyProjectDepartment' }" + extra-settings="{ displayProp : 'byName' , idProp : 'id', widthable : false, width : '', imageable : true, imagePathProp : 'profile', type : 'department', maxlength : 100 }"> </js-autocomplete-multi> </div> </div> -- Gitblit v1.8.0