Commit 7786f324 by 朱继来

调整

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