|
@@ -37,7 +37,7 @@
|
|
|
<th width="90">数量</th>
|
|
<th width="90">数量</th>
|
|
|
<th width="90">香港交货<span style="font-size: 12px;">($)</span></th>
|
|
<th width="90">香港交货<span style="font-size: 12px;">($)</span></th>
|
|
|
<th width="100">大陆交货<span style="font-size: 12px;">(¥)</span></th>
|
|
<th width="100">大陆交货<span style="font-size: 12px;">(¥)</span></th>
|
|
|
- <th width="100">交期</th>
|
|
|
|
|
|
|
+ <th width="100">交期(天)</th>
|
|
|
<th width="100">操作</th>
|
|
<th width="100">操作</th>
|
|
|
</tr>
|
|
</tr>
|
|
|
</thead>
|
|
</thead>
|
|
@@ -83,7 +83,11 @@
|
|
|
<div v-for="price in commodity.prices" v-text="price.rMBPrice"></div>
|
|
<div v-for="price in commodity.prices" v-text="price.rMBPrice"></div>
|
|
|
</td>
|
|
</td>
|
|
|
<td>
|
|
<td>
|
|
|
- <div v-if="commodity.b2cMinDelivery">交期:{{commodity.b2cMinDelivery || 0}}-{{commodity.b2cMaxDelivery || 0}}天</div>
|
|
|
|
|
|
|
+ <div v-if="commodity.b2cMinDelivery">交期:
|
|
|
|
|
+ <!--{{commodity.b2cMinDelivery || 0}}-{{commodity.b2cMaxDelivery || 0}}天-->
|
|
|
|
|
+ <span v-if="commodity.b2cMinDelivery != commodity.b2cMaxDelivery" v-text="commodity.b2cMinDelivery + '-' + commodity.b2cMaxDelivery"></span>
|
|
|
|
|
+ <span v-if="commodity.b2cMinDelivery == commodity.b2cMaxDelivery" v-text="commodity.b2cMinDelivery"></span>
|
|
|
|
|
+ </div>
|
|
|
</td>
|
|
</td>
|
|
|
<td>
|
|
<td>
|
|
|
<buy :item="commodity"></buy>
|
|
<buy :item="commodity"></buy>
|