changRun.html 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <!--<style type="text/css">
  2. .modal.in .modal-dialog {
  3. width: 400px;
  4. height: 400px;
  5. position: absolute;
  6. top: 0;
  7. bottom: 0;
  8. left: 0;
  9. right: 0;
  10. margin: auto;
  11. z-index: 9999;
  12. }
  13. .fontColor {
  14. font-size: 20px;
  15. color: #CC0000;
  16. }
  17. </style>
  18. <div class="modal-header">
  19. <button type="button" class="close" ng-click="cancel()">×</button>
  20. </div>
  21. <div class="modal-body">
  22. <div style="text-align: center;">
  23. <h3 class="fontColor">{{textLog}}</h3>
  24. </div>
  25. <div class="col-md-offset-8">
  26. <button class="btn btn-primary" ng-click="ok()">确定</button>
  27. <button class="btn btn-primary btn-o" ng-click="cancel()">取消</button>
  28. </div>
  29. </div>-->
  30. <style type="text/css">
  31. .modal.in .modal-dialog {
  32. width: 400px;
  33. height: 400px;
  34. position: absolute;
  35. top: 0;
  36. bottom: 0;
  37. left: 0;
  38. right: 0;
  39. margin: auto;
  40. z-index: 9999;
  41. }
  42. .fontColor {
  43. font-size: 20px;
  44. color: #CC0000;
  45. }
  46. </style>
  47. <div class="modal-header bg-primary borderdown">
  48. <button type="button" class="close" ng-click="cancel()">×</button>
  49. <i class="fa fa-inbox"></i><span class="label label-tag">提示</span>
  50. </div>
  51. <div class="modal-body">
  52. <div style="text-align: center">
  53. <h3 class="fontColor" ng-if="isRunFunction">{{textLog}}</h3>
  54. </div>
  55. <div ng-if="isAddFunction" class="panel-body">
  56. <div class="box-tree">
  57. <abn-tree tree-data="my_data" tree-control="my_tree" on-select="my_tree_handler(branch)" ng-dblclick="my_tree.expand_branch()" expand-level="2" icon-leaf="ti-file" icon-expand="ti-plus" icon-collapse="ti-minus"></abn-tree>
  58. </div>
  59. </div>
  60. <div style="text-align: center">
  61. <button class="btn btn-primary buttonclass" ng-click="ok()">确定</button>
  62. <button class="btn btn-primary btn-o buttonclass" ng-click="cancel()">取消</button>
  63. </div>
  64. </div>