...
|
...
|
@@ -100,6 +100,7 @@ |
|
|
<td><span id="colorName"></span></td>
|
|
|
<td><span id="sizeName"></span></td>
|
|
|
<td><span id="goodsPrice"></span></td>
|
|
|
<td><span id="couponCutAmount"></span></td>
|
|
|
<td><span id="productNum"></span></td>
|
|
|
<td><span id="shipFee"></span></td>
|
|
|
<td><span id="amount"></span></td>
|
...
|
...
|
@@ -107,7 +108,7 @@ |
|
|
<tr>
|
|
|
<th colspan="2">销售价:<span id="salesPrice"></span></th>
|
|
|
<th colspan="2">平台费用:<span id="platformFee"></span></th>
|
|
|
<th colspan="2">银行转账费用:<span id="bankTransferfee"></span></th>
|
|
|
<th colspan="3">银行转账费用:<span id="bankTransferfee"></span></th>
|
|
|
<th colspan="3">卖家实际收入:<span id="sellerIncome"></span></th>
|
|
|
</tr>
|
|
|
</table>
|
...
|
...
|
@@ -302,6 +303,7 @@ function getOrderInfo(orderCode){ |
|
|
$("#colorName").html(result.data.colorName);
|
|
|
$("#sizeName").html(result.data.sizeName);
|
|
|
$("#goodsPrice").html(result.data.goodsPrice);
|
|
|
$("#couponCutAmount").html(result.data.couponCutAmount);
|
|
|
$("#productNum").html(result.data.productNum);
|
|
|
$("#shipFee").html(result.data.shipFee);
|
|
|
$("#amount").html(result.data.amount);
|
...
|
...
|
|