1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <!-- <div class="panel">
- <div class="panel-body" style="padding:0px">
- <div class="form-group col-xs-12" ng-class={'has-error':showError} ng-model="model[options.key].id">
- <div class="input-group col-xs-6">
- <div class="col-xs-6">
- <label class="control-label">工作组</label>
-
- <ui-select ng-model="option" theme="bootstrap" ng-required="{{to.required}}"
- ng-change="to['onChange'](id, options, this, $event ,model);"
- ng-disabled="to.disabled" reset-search-input="false">
- <ui-select-match placehoslder="{{to.placeholder}}">
- {{$select.selected.groupName}}
- </ui-select-match>
- <ui-select-choices uiDisableChoice="option.disabled" repeat="option as option in multipleDemo" refresh="to.refresh($select.search, options)" refresh-delay="{{to.refreshDelay}}">
- <div ng-bind-html="option.groupName | highlight: $select.search"></div>
- </ui-select-choices>
- </ui-select>
- </div>
- <div class="col-xs-6">
- <label class="control-label">技术人员</label>
-
- <ui-select ng-model="id" theme="bootstrap" ng-required="{{to.required}}"
- ng-change="to['onChange'](id, options, this, $event ,model);"
- ng-disabled="to.disabled" reset-search-input="false">
- <ui-select-match placeholder="{{to.placeholder}}">
- {{$select.selected.name}}
- </ui-select-match>
- <ui-select-choices uiDisableChoice="option.disabled" repeat="option as option in userdata" refresh="to.refresh($select.search, options)" refresh-delay="{{to.refreshDelay}}">
- <div ng-bind-html="option.name"></div>
- </ui-select-choices>
- </ui-select>
- </div>
- </div>
- </div>
- </div>
- </div> -->
- <!-- <div class="" style="padding-top: 8px;">
- <label class="control-label">工作组</label>
- <ui-select ng-model="option" theme="bootstrap" ng-required="{{to.required}}" ng-change="to['onChange'](id, options, this, $event ,model);" ng-disabled="to.disabled" reset-search-input="false">
- <ui-select-match placehoslder="{{to.placeholder}}">
- {{$select.selected.groupName}}
- </ui-select-match>
- <ui-select-choices uiDisableChoice="option.disabled" repeat="option as option in multipleDemo" refresh="to.refresh($select.search, options)" refresh-delay="{{to.refreshDelay}}">
- <div ng-bind-html="option.groupName | highlight: $select.search"></div>
- </ui-select-choices>
- </ui-select>
- </div>
- <div class="">
- <label class="control-label">技术人员</label>
- <ui-select ng-model="id" theme="bootstrap" ng-required="{{to.required}}" ng-change="to['onChange'](id, options, this, $event ,model);" ng-disabled="to.disabled" reset-search-input="false">
- <ui-select-match placeholder="{{to.placeholder}}">
- {{$select.selected.name}}
- </ui-select-match>
- <ui-select-choices uiDisableChoice="option.disabled" repeat="option as option in userdata" refresh="to.refresh($select.search, options)" refresh-delay="{{to.refreshDelay}}">
- <div ng-bind-html="option.name"></div>
- </ui-select-choices>
- </ui-select>
- </div> -->
- <div class="ui-handler-style">
- <div>
- <div class="normal-label-text">
- <span ng-class="{'labelColor':to.required}">指派人的工作组</span>
- </div>
- <ui-select ng-model="option" theme="bootstrap" ng-required="{{to.required}}" ng-change="to['onChange'](id, options, this, $event ,model);" ng-disabled="to.disabled" reset-search-input="false">
- <ui-select-match placehoslder="{{to.placeholder}}">
- {{$select.selected.groupName}}
- </ui-select-match>
- <ui-select-choices uiDisableChoice="option.disabled" repeat="option as option in multipleDemo" refresh="to.refresh($select.search, options)" refresh-delay="{{to.refreshDelay}}">
- <div ng-bind-html="option.groupName | highlight: $select.search"></div>
- </ui-select-choices>
- </ui-select>
- </div>
- <div>
- <div class="normal-label-text">
- <span ng-class="{'labelColor':to.required}">被指派的人</span>
- </div>
- <ui-select ng-model="id" theme="bootstrap" ng-required="{{to.required}}" ng-change="to['onChange'](id, options, this, $event ,model);" ng-disabled="to.disabled" reset-search-input="false">
- <ui-select-match placeholder="{{to.placeholder}}">
- {{$select.selected.name}}
- </ui-select-match>
- <ui-select-choices uiDisableChoice="option.disabled" repeat="option as option in userdata" refresh="to.refresh($select.search, options)" refresh-delay="{{to.refreshDelay}}">
- <div ng-bind-html="option.name"></div>
- </ui-select-choices>
- </ui-select>
- </div>
- </div>
|