|
|
@@ -327,6 +327,16 @@
|
|
|
.seek-purchase .seek-purchase-content >table tbody.active tr.say-price{
|
|
|
display: table-row;
|
|
|
}
|
|
|
+ .seek-purchase .seek-purchase-content >table tbody tr.empty td div {
|
|
|
+ text-align: center;
|
|
|
+ height: 200px;
|
|
|
+ line-height: 200px;
|
|
|
+ border: 1px solid #e8e8e8;
|
|
|
+ }
|
|
|
+ .seek-purchase .seek-purchase-content >table >tbody tr.empty td div span {
|
|
|
+ color: #999;
|
|
|
+ margin-left: 10px;
|
|
|
+ }
|
|
|
.ng-table-pager {
|
|
|
margin-top: 20px;
|
|
|
}
|
|
|
@@ -667,8 +677,8 @@
|
|
|
-->
|
|
|
</td>
|
|
|
<td class="user-name">
|
|
|
- <div ng-if="seek.inquiry.enterprise.enName" title="{{seek.inquiry.enterprise.enName}}" ng-bind="seek.inquiry.enterprise.enName"></div>
|
|
|
- <div ng-if="!seek.inquiry.enterprise.enName" title="{{seek.userName}}" ng-bind="seek.userName"></div>
|
|
|
+ <span ng-if="seek.inquiry.enterprise.enName" title="{{seek.inquiry.enterprise.enName}}" ng-bind="seek.inquiry.enterprise.enName"></span>
|
|
|
+ <span ng-if="!seek.inquiry.enterprise.enName" title="{{seek.userName}}" ng-bind="seek.userName"></span>
|
|
|
</td>
|
|
|
<td><div title="{{seek.cmpCode}}" ng-bind="seek.cmpCode || '-'"></div></td>
|
|
|
<td><div title="{{seek.inbrand}}" ng-bind="seek.inbrand || '-'"></div></td>
|
|
|
@@ -690,6 +700,16 @@
|
|
|
</td>
|
|
|
</tr>
|
|
|
</tbody>
|
|
|
+ <tbody ng-if="seekListData.length == 0">
|
|
|
+ <tr class="empty">
|
|
|
+ <td colspan="10">
|
|
|
+ <div>
|
|
|
+ <img src="static/img/all/empty-cart.png">
|
|
|
+ <span>暂无求购信息</span>
|
|
|
+ </div>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ </tbody>
|
|
|
</table>
|
|
|
</div>
|
|
|
<div class="com-modal-wrap" ng-show="isShowSayPriceBox">
|