|
|
@@ -110,7 +110,16 @@
|
|
|
.seek-purchase .seek-purchase-content >table tbody tr.default-row td {
|
|
|
font-size: 14px;
|
|
|
text-align: center;
|
|
|
- height: 80px;
|
|
|
+ height: 136px;
|
|
|
+ }
|
|
|
+ .seek-purchase .seek-purchase-content >table >tbody >tr.default-row td .row-wrap {
|
|
|
+ padding-top: 33px;
|
|
|
+ }
|
|
|
+ .seek-purchase .seek-purchase-content >table >tbody >tr.default-row td .row-wrap.il-content .il-box.il-box-large .fl {
|
|
|
+ margin-right: 37px;
|
|
|
+ }
|
|
|
+ .seek-purchase .seek-purchase-content >table >tbody >tr.default-row td .row-wrap.il-content .il-box.il-box-large {
|
|
|
+ width: 440px;
|
|
|
}
|
|
|
.seek-purchase .seek-purchase-content >table tbody tr.default-row td.release-time {
|
|
|
position: relative;
|
|
|
@@ -211,7 +220,6 @@
|
|
|
background: #cccbcb;
|
|
|
}
|
|
|
.seek-purchase .seek-purchase-content >table tbody tr.default-row td.operate span {
|
|
|
- margin: 17px 0 0 0;
|
|
|
color: #39ae05;
|
|
|
display: block;
|
|
|
}
|
|
|
@@ -652,42 +660,41 @@
|
|
|
<table ng-table="seekPurchaseTableParams">
|
|
|
<thead>
|
|
|
<tr>
|
|
|
- <th width="212">买家 / 发布时间</th>
|
|
|
- <th width="211">型号 / 品牌</th>
|
|
|
- <th width="84">封装</th>
|
|
|
- <th width="95">生产日期</th>
|
|
|
- <th width="86">采购数量</th>
|
|
|
- <th width="94">单价预算</th>
|
|
|
- <th width="115">剩余时间</th>
|
|
|
- <th width="92">操作</th>
|
|
|
+ <th width="178">买家/发布时间</th>
|
|
|
+ <th width="658">产品信息</th>
|
|
|
+ <th width="134">剩余时间</th>
|
|
|
+ <th width="88">操作</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<tbody ng-repeat="seek in seekListData track by $index" ng-class="{'active': seek.$active}">
|
|
|
<tr class="default-row">
|
|
|
<td class="user-name">
|
|
|
- <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>
|
|
|
+ <div class="row-wrap">
|
|
|
+ <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>
|
|
|
+ </div>
|
|
|
+ <div class="date-bottom-item" ng-bind="seek.date | date:'yyyy-MM-dd HH:mm'"></div>
|
|
|
+ </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>
|
|
|
- <td class="unit-price">
|
|
|
- <span>{{seek.currency + seek.unitPrice | currencyStr}}</span>
|
|
|
+ <td>
|
|
|
+ <div class="row-wrap il-content">
|
|
|
+ <div class="il-box-large il-box">
|
|
|
+ <div title="{{seek.prodTitle}}" class="fl item"><span>类目:</span><div class="content">{{seek.prodTitle || '-'}}</div></div>
|
|
|
+ <div title="{{seek.cmpCode}}" class="fl item"><span>型号:</span><div class="content">{{seek.cmpCode || '-'}}</div></div>
|
|
|
+ <div title="{{seek.inbrand}}" class="fl item bottom"><span>品牌:</span><div class="content">{{seek.inbrand || '-'}}</div></div>
|
|
|
+ <div title="{{seek.spec}}" class="fl item bottom"><span>规格:</span><div class="content">{{seek.spec || '-'}}</div></div>
|
|
|
+ </div>
|
|
|
+ <div class="il-box-small il-box">
|
|
|
+ <div title="{{seek.encapsulation}}" class="item"><span>封装:</span>{{seek.encapsulation || '-'}}</div>
|
|
|
+ <div title="{{seek.needquantity}}" class="item"><span>采购数量:</span>{{seek.needquantity || '-'}}</div>
|
|
|
+ <div title="{{seek.currency + seek.unitPrice | currencyStr}}" class="item"><span>单价预算:</span>{{seek.currency + seek.unitPrice | currencyStr}}</div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</td>
|
|
|
<td class="left-time" ng-if="seek.remainingTime > 0">剩余 <span ng-bind="getDay(seek.remainingTime)" ng-if="getDay(seek.remainingTime) > 0" class="red-text"></span><i ng-if="getDay(seek.remainingTime) > 0"> 天 </i><span ng-if="getDay(seek.remainingTime) <= 0" ng-bind="getHours(seek.remainingTime)" class="red-text">5</span><i ng-if="getDay(seek.remainingTime) <= 0"> 小时</i></td>
|
|
|
<td class="left-time" ng-if="seek.remainingTime <= 0"><span>已截止</span></td>
|
|
|
- <td class="left-time" ng-if="seek.remainingTime == null"><span style="color: red;">-</span></td>
|
|
|
+ <td class="left-time" ng-if="seek.remainingTime == null"><span>-</span></td>
|
|
|
<td class="operate">
|
|
|
<!--<a ng-click="setLinkBoxIndex($index)">联系买家 <img src="static/img/seekPurchase/link-buyer.png" alt=""></a>-->
|
|
|
<div ng-if="userInfo.enterprise.uu != seek.inquiry.enUU && seek.quoted != 1 && seek.remainingTime > 0" ng-click="setSeekActive(seek, true, index)">我要报价</div>
|