1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <style>
- .delContent{
- text-align: center;
- font-size: 15px;
- margin: 50px;
- }
- .delContent span{
- color:#3da3df;
- }
- </style>
- <div class="modal-header">
- <div class="modal-title fontcolor-two fontsizes-14">{{title}}<button type="button" class="close pull-right"
- ng-click="cancel()">×</button></div>
- </div>
- <div class="modal-body center">
- <div class="btn-group" ng-if='type!=2' style="margin:20px 0;">
- <div class="control-label pull-left margin-top-5 margin-right-5"><label class="demoincident">报表名称</label>:</div>
- <input class="form-control pull-right inputcolor" style="width:132px !important;border-color: #dedede;color: #93989e;"
- type="text" ng-model="inp.content" placeholder="知识增加数量" />
- </div>
- <!-- <div class="btn-group" ng-if='type!=2' style="margin:20px 0;">
- <div class="control-label pull-left margin-top-5 margin-right-5"><label class="demoincident">报表类型</label>:</div>
- <div class="pull-left selectzise">
- <ui-select class="pull-left" style="width:132px" ng-model="choosUser.handlingPersonnelUser" theme="bootstrap"
- ng-change="onChangeUser($select.selected)">
- <ui-select-match placeholder="">
- {{$select.selected.name}}
- </ui-select-match>
- <ui-select-choices repeat="item in allUser | filter: $select.name">
- <div ng-bind-html="item.name | highlight: $select.name"></div>
- </ui-select-choices>
- </ui-select>
- </div>
- </div> -->
- <div ng-if='type==2' class="delContent">
- <div>是否确认删除<span>【{{delContent}}】</span>报表</div>
- </div>
- </div>
- <div class="modal-footer modelfooter-hint pointfont">
- <div class="hintfooterleft pull-left" ng-click="ok()" translate="modal.button.OK ">OK</div>
- <div class="hintfooterright pull-right" ng-click="cancel() " translate="modal.button.CANCEL ">Cancel</div>
- </div>
|