1234567891011121314151617181920212223 |
- <div class="modal-header bg-primary borderdown">
- <button type="button" class="close" ng-click="cancel()">×</button>
- <i class="fa fa-inbox"></i><span class="label label-tag">知识库下载</span>
- </div>
- <div class="modalopen-body">
- <div class="row form-group">
- <label class="control-label">下载类型:</label>
- <div>
- <ui-select ng-model="key" theme="bootstrap" ng-change="onChange(key);">
- <ui-select-match placeholder="请选择要下载下载类型">
- {{$select.selected.name}}
- </ui-select-match>
- <ui-select-choices repeat="item in downmodel | filter: $select.search">
- <div ng-bind-html="item.name | highlight: $select.search"></div>
- </ui-select-choices>
- </ui-select>
- </div>
- </div>
- <div>
- <button class="btn btn-primary buttonclass" ng-click="ok(key)" translate="modal.button.OK">OK</button>
- <button class="btn btn-primary btn-o buttonclass" ng-click="cancel()" translate="modal.button.CANCEL">Cancel</button>
- </div>
- </div>
|