|
|
@@ -0,0 +1,24 @@
|
|
|
+<div class="modal-header">
|
|
|
+ <h3 class="modal-title">
|
|
|
+ <i class="fa fa-user fa-fw text-default"></i>客户名称
|
|
|
+ </h3>
|
|
|
+</div>
|
|
|
+<div class="modal-body">
|
|
|
+ <div>
|
|
|
+ <table width="50%" class="block table table-bordered table-striped table-hover">
|
|
|
+ <thead>
|
|
|
+ <th width="80px;" class="text-center">用户名称</th>
|
|
|
+ </thead>
|
|
|
+ <tbody>
|
|
|
+ <div style="overflow-y:scroll; width:100%;max-height:500px">
|
|
|
+ <tr ng-repeat="cust in custs">
|
|
|
+ <td width="80px;"><a ng-bind="cust.custName" ng-click="CustName(cust.custName)"></a></td>
|
|
|
+ </tr>
|
|
|
+ </div>
|
|
|
+ <tbody>
|
|
|
+ </table>
|
|
|
+ </div>
|
|
|
+</div>
|
|
|
+<div class="modal-footer">
|
|
|
+ <button class="btn btn-default" ng-click="close(false)" type="button">取消</button>
|
|
|
+</div>
|