Commit 7786f324 by 朱继来

调整

parent 8ca96c98
......@@ -58,7 +58,7 @@
list-style: none;
margin-right: 10px;
}
.tabs-box .check-table tr .check-table-title{
.check-table-title{
text-align: center;
vertical-align: middle;
}
......
......@@ -12,7 +12,7 @@
/* 提交审核弹框label */
.submit-check label { display: inline-block; width: 120px; text-align: right;}
input[type="text"] {width: 120px;}
.order-change-main table th, .order-change-main table td { text-align: center; vertical-align: middle; }
.shop-table th, .shop-table td { text-align: center; vertical-align: middle; }
</style>
<div class="tabs-box">
......@@ -367,14 +367,14 @@
<table class="table table-bordered table-hover">
<tr>
<th width="20%">商品总金额</th>
<th class="check-table-title" width="20%">商品总金额</th>
<td><p class="text-danger">{{$currency}}<span class="goods_total">{{$order_price_info['goods_price']}}</span></p></td>
</tr>
<!-- 销售类型为现卖时展示 -->
@if ($order_info['sale_type'] == 1 && $order_price_info['ext_price'])
<tr>
<th width="20%">附加费金额</th>
<th class="check-table-title" width="20%">附加费金额</th>
<td>
<p class="text-danger">{{$currency}}<span class="extra_fee">{{$order_price_info['ext_price'] ? $order_price_info['ext_price'] : 0}}</span></p>
<input type="hidden" name="extra_fee" autocomplete="off" value="{{$order_price_info['ext_price'] ? $order_price_info['ext_price'] : 0}}">
......@@ -384,7 +384,7 @@
@if ($order_price_info['discount_amount'])
<tr>
<th>优惠金额</th>
<th class="check-table-title">优惠金额</th>
<td>
<span>{{ $order_price_info['discount_amount'] }}</span>
<input class="only_number discount_amount" type="hidden" name="discount_amount" value="{{ $order_price_info['discount_amount'] }}">
......@@ -393,14 +393,14 @@
@endif
<tr>
<th>运费</th>
<th class="check-table-title">运费</th>
<td>
<input class="only_number freight_fee" type="text" name="freight_fee" value="{{ $order_price_info['shipping_price'] }}">
</td>
</tr>
<tr>
<th width="20%">订单总额</th>
<th class="check-table-title" width="20%">订单总额</th>
<td>
<p class="text-danger">{{$currency}}<span class="total">{{$order_info['order_amount']}}</span></p>
</td>
......@@ -412,7 +412,7 @@
<!-- <p>定金调整</p> -->
<table class="table table-bordered table-hover">
<tr>
<th width="20%">定金金额</th>
<th class="check-table-title" width="20%">定金金额</th>
<td>
<p class="text-danger">{{$currency}}
<?php
......@@ -434,7 +434,7 @@
<!-- <p>付款时间</p> -->
<table class="table table-bordered table-hover change-table">
<tr>
<th width="20%">选择付款时间</th>
<th class="check-table-title" width="20%">选择付款时间</th>
<td>
<select name="payTime" class="payTime">
<option value="">请选择</option>
......@@ -455,7 +455,7 @@
</td>
</tr>
<tr>
<th>发货方式</th>
<th class="check-table-title">发货方式</th>
<td>
<select name="zy_delivery_type" class="zy_delivery_type">
<option value="">请选择</option>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment