| | |
| | | <js-autocomplete-multi data-input-name="departments" |
| | | selected-model="vm.form.companies" |
| | | search="vm.companyName" |
| | | source="fn.getCompanyList(vm.companyName, vm.form.companies)" |
| | | source="fn.getPartnerList(vm.companyName, vm.form.companies)" |
| | | input-disabled="false" |
| | | translation-texts="{ count : 'common.userNum', empty : 'common.emptyUser' }" |
| | | translation-texts="{ count : 'common.userNum', empty : 'common.emptyCompanyPartners' }" |
| | | extra-settings="{ displayProp : 'byName' , idProp : 'id', imageable : false, maxlength : 100, autoResize : true }"></js-autocomplete-multi> |
| | | |
| | | |
| | | <div class="select3-selection__choicediv mt-10"> |
| | | <span class="select3-selection__choice" ng-repeat="company in vm.form.companies"> |
| | | <span>{{company.byName}}</span> <!--사용자가 속해 있는 부서 이름 출력--> |
| | | <span class="select3-selection__choice__remove" ng-click="fn.removeUseCompany($index)">×</span> |
| | | <span class="select3-selection__choice__remove" ng-click="fn.removeUsePartner($index)">×</span> |
| | | </span> |
| | | </div> |
| | | </div> |