|
|
@@ -628,10 +628,8 @@
|
|
|
<table ng-table="seekPurchaseTableParams">
|
|
|
<thead>
|
|
|
<tr>
|
|
|
- <th width="104">发布时间</th>
|
|
|
- <th width="108">买家</th>
|
|
|
- <th width="117">型号</th>
|
|
|
- <th width="94">品牌</th>
|
|
|
+ <th width="212">买家 / 发布时间</th>
|
|
|
+ <th width="211">型号 / 品牌</th>
|
|
|
<th width="84">封装</th>
|
|
|
<th width="95">生产日期</th>
|
|
|
<th width="86">采购数量</th>
|
|
|
@@ -642,24 +640,21 @@
|
|
|
</thead>
|
|
|
<tbody ng-repeat="seek in $data track by $index" ng-class="{'active': seek.$active, 'hover': seek.$hover && (seek.status == 201 || seek.status == 202)}">
|
|
|
<tr class="default-row" ng-mouseenter="seek.$hover = true;" ng-mouseleave="seek.$hover = false;" >
|
|
|
- <td class="release-time">
|
|
|
- <span ng-bind="seek.inquiry.date | date:'yyyy-MM-dd'"></span>
|
|
|
- <span ng-bind="seek.inquiry.date | date:'HH:mm:ss'"></span>
|
|
|
- <!--
|
|
|
- <div class="seek-status">
|
|
|
- <div ng-show="seek.goodsEnuu" class="status">已在库</div>
|
|
|
- <div ng-show="!seek.goodsEnuu" class="no-grounding">未在库</div>
|
|
|
- <div class="BOM-list-btn" ng-if="seek.bomId">BOM清单</div>
|
|
|
- <a ng-show="!seek.goodsEnuu" target="_blank" href="vendor#/vendor_upload">产品导入>></a>
|
|
|
- </div>
|
|
|
- -->
|
|
|
- </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>
|
|
|
+ <p>
|
|
|
+ <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>
|
|
|
+ </p>
|
|
|
+ <p class="text-light">
|
|
|
+ <span ng-bind="seek.date | date:'yyyy-MM-dd HH:mm'"></span>
|
|
|
+ </p>
|
|
|
+ </td>
|
|
|
+ <td style="text-align: left;">
|
|
|
+ <p title="{{seek.cmpCode}}" class="text-bold" style="width: 205px;">
|
|
|
+ <span ng-bind="seek.cmpCode || '-'"></span>
|
|
|
+ </p>
|
|
|
+ <p title="{{seek.inbrand}}" ng-bind="seek.inbrand || '-'" style="width: 205px;"></p>
|
|
|
</td>
|
|
|
- <td><div title="{{seek.cmpCode || seek.prodCode || seek.product.cmpCode}}" ng-bind="seek.cmpCode || seek.prodCode || seek.product.cmpCode"></div></td>
|
|
|
- <td><div title="{{seek.inbrand}}" ng-bind="seek.inbrand || '-'"></div></td>
|
|
|
<td><div title="{{seek.encapsulation}}" ng-bind="seek.encapsulation || '--'"></div></td>
|
|
|
<td><div title="{{seek.produceDate}}" ng-bind="seek.produceDate || '--'"></div></td>
|
|
|
<td><div title="{{seek.needquantity}}" ng-bind="seek.needquantity || '--'"></div></td>
|