123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <!--<style type="text/css">
- .modal.in .modal-dialog {
- width: 400px;
- height: 400px;
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- margin: auto;
- z-index: 9999;
- }
-
- .fontColor {
- font-size: 20px;
- color: #CC0000;
- }
- </style>
- <div class="modal-header">
- <button type="button" class="close" ng-click="cancel()">×</button>
- </div>
- <div class="modal-body">
- <div style="text-align: center;">
- <h3 class="fontColor">{{textLog}}</h3>
- </div>
- <div class="col-md-offset-8">
- <button class="btn btn-primary" ng-click="ok()">确定</button>
- <button class="btn btn-primary btn-o" ng-click="cancel()">取消</button>
- </div>
- </div>-->
- <style type="text/css">
- .modal.in .modal-dialog {
- width: 400px;
- height: 400px;
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- margin: auto;
- z-index: 9999;
- }
-
- .fontColor {
- font-size: 20px;
- color: #CC0000;
- }
- </style>
- <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="modal-body">
- <div style="text-align: center">
- <h3 class="fontColor" ng-if="isRunFunction">{{textLog}}</h3>
- </div>
- <div ng-if="isAddFunction" class="panel-body">
- <div class="box-tree">
- <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>
- </div>
- </div>
- <div style="text-align: center">
- <button class="btn btn-primary buttonclass" ng-click="ok()">确定</button>
- <button class="btn btn-primary btn-o buttonclass" ng-click="cancel()">取消</button>
- </div>
- </div>
|