|
|
@@ -128,6 +128,27 @@
|
|
|
.order-hd td a{
|
|
|
margin: 0 8px;
|
|
|
}
|
|
|
+ .order-table .header th label{
|
|
|
+ margin-left: 34px;
|
|
|
+ }
|
|
|
+ .order-table .header th label input{
|
|
|
+ margin: 0;
|
|
|
+ position: relative;
|
|
|
+ top: 3px;
|
|
|
+ }
|
|
|
+ .order-table tr.header th:first-child{
|
|
|
+ text-align: left;
|
|
|
+ }
|
|
|
+ .edit.col-xs-3{
|
|
|
+ padding-right: 0;
|
|
|
+ width: 215px;
|
|
|
+ float: right;
|
|
|
+ }
|
|
|
+ .edit.col-xs-3 a{
|
|
|
+ font-size: 14px;
|
|
|
+ line-height: 34px;
|
|
|
+ color: #5078cb;
|
|
|
+ }
|
|
|
</style>
|
|
|
<link rel="stylesheet" href="static/css/public.css">
|
|
|
<div class="block" id="public">
|
|
|
@@ -147,7 +168,7 @@
|
|
|
<div class="condition block" style="padding: 10px 15px;">
|
|
|
<div class="search-bg condition block" style="padding: 10px 15px;">
|
|
|
<div class="row">
|
|
|
- <div id="topSearch" style="float: left">
|
|
|
+ <div id="topSearch" class="col-xs-6" style="float: left;width: 35%;">
|
|
|
<span class="text-muted"><i class="fa fa-search fa-lg"></i> 搜索"{{tip}}",为您找到结果:</span>
|
|
|
单据{{tableParams.total()}}条
|
|
|
</div>
|
|
|
@@ -159,13 +180,14 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <a ng-click="">批量修改</a>
|
|
|
- <select type="select" ng-model="product.updatetype" ng-init="product.updatetype = '品牌'">
|
|
|
- <option value="品牌">品牌</option>
|
|
|
- <option value="名称(类目)">名称(类目)</option>
|
|
|
- <option value="产品型号">产品型号</option>
|
|
|
- </select>
|
|
|
- <a ng-click="updateByBatch(product.updatetype)">确定</a>
|
|
|
+ <div class="edit col-xs-3">
|
|
|
+ <select type="select" class="fl form-control" ng-model="product.updatetype" ng-init="product.updatetype = '品牌'" style="width: 130px;">
|
|
|
+ <option value="品牌">品牌</option>
|
|
|
+ <option value="名称(类目)">名称(类目)</option>
|
|
|
+ <option value="产品型号">产品型号</option>
|
|
|
+ </select>
|
|
|
+ <a ng-click="updateByBatch(product.updatetype)" class="fr">批量修改</a>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
@@ -173,7 +195,7 @@
|
|
|
<table class="order-table block " ng-table="tableParams">
|
|
|
<thead>
|
|
|
<tr class="header">
|
|
|
- <th><input type="checkbox" ng-model="checks.checked" ng-click="checkAll()"></th>
|
|
|
+ <th width="80"><label><input type="checkbox" ng-model="checks.checked" ng-click="checkAll()"> 全选</label></th>
|
|
|
<th width="140">产品编号</th>
|
|
|
<th>产品名称(类目)</th>
|
|
|
<th width="160">产品型号</th>
|
|
|
@@ -190,7 +212,7 @@
|
|
|
</thead>
|
|
|
<tbody ng-repeat="product in $data">
|
|
|
<tr class="order-hd">
|
|
|
- <td><input type="checkbox" ng-model="product.checked" ng-click="checkOne(product)" ng-disabled="product.cmpUuId != null"></td>
|
|
|
+ <td class="text-center"><input type="checkbox" ng-model="product.checked" ng-click="checkOne(product)" ng-disabled="product.cmpUuId != null"></td>
|
|
|
<td class="text-center" title="{{product.code}}" ng-bind="::product.code"></td>
|
|
|
<td class="line-h20 first text-center">
|
|
|
<div class="order-main">
|