dialog.tpl.html 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <style>
  2. .delContent{
  3. text-align: center;
  4. font-size: 15px;
  5. margin: 50px;
  6. }
  7. .delContent span{
  8. color:#3da3df;
  9. }
  10. </style>
  11. <div class="modal-header">
  12. <div class="modal-title fontcolor-two fontsizes-14">{{title}}<button type="button" class="close pull-right"
  13. ng-click="cancel()">×</button></div>
  14. </div>
  15. <div class="modal-body center">
  16. <div class="btn-group" ng-if='type!=2' style="margin:20px 0;">
  17. <div class="control-label pull-left margin-top-5 margin-right-5"><label class="demoincident">报表名称</label>:</div>
  18. <input class="form-control pull-right inputcolor" style="width:132px !important;border-color: #dedede;color: #93989e;"
  19. type="text" ng-model="inp.content" placeholder="知识增加数量" />
  20. </div>
  21. <!-- <div class="btn-group" ng-if='type!=2' style="margin:20px 0;">
  22. <div class="control-label pull-left margin-top-5 margin-right-5"><label class="demoincident">报表类型</label>:</div>
  23. <div class="pull-left selectzise">
  24. <ui-select class="pull-left" style="width:132px" ng-model="choosUser.handlingPersonnelUser" theme="bootstrap"
  25. ng-change="onChangeUser($select.selected)">
  26. <ui-select-match placeholder="">
  27. {{$select.selected.name}}
  28. </ui-select-match>
  29. <ui-select-choices repeat="item in allUser | filter: $select.name">
  30. <div ng-bind-html="item.name | highlight: $select.name"></div>
  31. </ui-select-choices>
  32. </ui-select>
  33. </div>
  34. </div> -->
  35. <div ng-if='type==2' class="delContent">
  36. <div>是否确认删除<span>【{{delContent}}】</span>报表</div>
  37. </div>
  38. </div>
  39. <div class="modal-footer modelfooter-hint pointfont">
  40. <div class="hintfooterleft pull-left" ng-click="ok()" translate="modal.button.OK ">OK</div>
  41. <div class="hintfooterright pull-right" ng-click="cancel() " translate="modal.button.CANCEL ">Cancel</div>
  42. </div>