|
|
@@ -243,9 +243,9 @@
|
|
|
</div>
|
|
|
<div class="seek-purchase-content">
|
|
|
<div class="seek-purchase-title">
|
|
|
- <div class="seek-data">采纳次数:<span>52</span></div>
|
|
|
- <div class="seek-data">报价次数:<span>96</span></div>
|
|
|
- <div class="seek-rate">求购成交率 <span>60%</span></div>
|
|
|
+ <div class="seek-data">采纳次数:<span ng-bind="seekPurchaseRate.acceptedAmount"></span></div>
|
|
|
+ <div class="seek-data">报价次数:<span ng-bind="seekPurchaseRate.offerAmount"></span></div>
|
|
|
+ <div class="seek-rate">求购成交率 <span ng-bind="seekPurchaseRate.rate+'%'"></span></div>
|
|
|
</div>
|
|
|
<!--搜索时间筛选-->
|
|
|
<div class="screen" style="background: #f5f8fe;height: 40px;margin-bottom: 15px;margin-top: 5px;padding-top: 4px;padding-right: 11px;">
|
|
|
@@ -313,27 +313,30 @@
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<tbody>
|
|
|
- <tr>
|
|
|
+ <tr ng-repeat="seek in seekPurchases">
|
|
|
<td class="release-time">
|
|
|
- <span>2016-12-03</span>
|
|
|
+ <span ng-bind="seek.seekPurchase.releaseDate"></span>
|
|
|
<span>14:45:50</span>
|
|
|
<div class="seek-status">
|
|
|
- <div>已上架</div>
|
|
|
+ <div ng-show="seek.goodsId == null" class="no-grounding">未上架</div>
|
|
|
+ <a ng-show="seek.goodsId == null">去上架>></a>
|
|
|
+ <div ng-show="seek.goodsId != null">已上架</div>
|
|
|
</div>
|
|
|
</td>
|
|
|
- <td>深圳市优软科技有限公司</td>
|
|
|
- <td>MADANSFA-12345</td>
|
|
|
- <td>panasonic</td>
|
|
|
- <td>盘装</td>
|
|
|
- <td>2016-12-12</td>
|
|
|
- <td>5000</td>
|
|
|
- <td class="unit-price"><span>$</span>5000</td>
|
|
|
+ <td ng-bind="seek.seekPurchase.userName"></td>
|
|
|
+ <td ng-bind="seek.seekPurchase.code"></td>
|
|
|
+ <td ng-bind="seek.seekPurchase.brand"></td>
|
|
|
+ <td ng-bind="seek.seekPurchase.encapsulation || '--'"></td>
|
|
|
+ <td ng-bind="seek.seekPurchase.produceDate || '--'"></td>
|
|
|
+ <td ng-bind="seek.seekPurchase.amount || '--'"></td>
|
|
|
+ <td class="unit-price"><span ng-bind="seek.seekPurchase.currency+seek.seekPurchase.unitPrice"></span></td>
|
|
|
<td class="left-time">剩余 <span>5</span> 小时</td>
|
|
|
<td class="operate">
|
|
|
<a>联系买家 <img src="static/img/seekPurchase/link-buyer.png" alt=""></a>
|
|
|
<div>我要报价</div>
|
|
|
</td>
|
|
|
</tr>
|
|
|
+ <!--
|
|
|
<tr>
|
|
|
<td class="release-time">
|
|
|
<span>2016-12-03</span>
|
|
|
@@ -356,6 +359,7 @@
|
|
|
<span>已报价 <img src="static/img/seekPurchase/check.png" alt=""></span>
|
|
|
</td>
|
|
|
</tr>
|
|
|
+ -->
|
|
|
</tbody>
|
|
|
</table>
|
|
|
</div>
|