|
|
@@ -1,48 +0,0 @@
|
|
|
-<style>
|
|
|
-.headerline .content {
|
|
|
- width: 200px;
|
|
|
- font-size: 14px;
|
|
|
-}
|
|
|
-.modal-body {
|
|
|
- min-height: 350px;
|
|
|
-}
|
|
|
-.modal {
|
|
|
- top: 70px;
|
|
|
-}
|
|
|
-</style>
|
|
|
-<div class="modal-body">
|
|
|
- <div class="headerline">
|
|
|
- <span class="content"><i class="fa fa-fw fa-edit text-primary"></i>采购订单 - 选择供应商</span>
|
|
|
- </div>
|
|
|
- <form class="form-horizontal">
|
|
|
- <div class="form-group">
|
|
|
- <label class="col-md-2 col-sm-2 control-label">筛选:</label>
|
|
|
- <div class="col-md-8 col-sm-8">
|
|
|
- <input type="text" class="form-control input-sm"
|
|
|
- required placeholder="输入客户名称关键字查询" autofocus ng-model="keyword">
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </form>
|
|
|
- <table class="block table table-default table-striped table-bordered"
|
|
|
- ng-table="tableParams">
|
|
|
- <thead>
|
|
|
- <tr class="header">
|
|
|
- <th>UU</th>
|
|
|
- <th>供应商名称</th>
|
|
|
- <th>地址</th>
|
|
|
- <th>操作</th>
|
|
|
- </tr>
|
|
|
- </thead>
|
|
|
- <tbody>
|
|
|
- <tr ng-repeat="customer in $data| filter: keyword">
|
|
|
- <td class="text-center" ng-bind="::customer.myEnterprise.uu"></td>
|
|
|
- <td class="text-center" ng-bind="::customer.myEnterprise.enName"></td>
|
|
|
- <td class="text-center" ng-bind="::customer.myEnterprise.enAddress"></td>
|
|
|
- <td class="text-center"><a title="选择" href="javascript:void(0)" ng-click="check(customer)" style="text-decoration: none;">选择</a></td>
|
|
|
- </tr>
|
|
|
- </tbody>
|
|
|
- </table>
|
|
|
-</div>
|
|
|
-<div class="modal-footer">
|
|
|
- <button class="btn btn-default" ng-click="cancel()" type="button">取消</button>
|
|
|
-</div>
|