更新价格明细弹窗

parent f367b68f
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
html { html {
-webkit-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%; } -ms-text-size-adjust: 100%; }
.no_point{pointer-events: none}
html, body { html, body {
*position: static; *position: static;
font: 14px/1.5 "Microsoft Yahei", "Hiragino Sans GB", "Helvetica Neue", Helvetica, tahoma, arial, Verdana, sans-serif, "WenQuanYi Micro Hei", "\5B8B\4F53"; } font: 14px/1.5 "Microsoft Yahei", "Hiragino Sans GB", "Helvetica Neue", Helvetica, tahoma, arial, Verdana, sans-serif, "WenQuanYi Micro Hei", "\5B8B\4F53"; }
......
<div class="table-list" id="shopList" style="width: 95%;overflow-x: auto"> <div class="table-list" id="shopList" style="width: 95%;">
<table class="layui-table" id="tb" style="width: 650px;" lay-filter="parse-table-demo1"> <style type="text/css">
.width_s{ width:100px;}
</style>
<table class="layui-table" id="tb" style="width: 95%;" lay-filter="parse-table-demo1">
<thead> <thead>
<tr> <tr>
@if(!empty($ladder_price) && is_array($ladder_price)) <th style="width: 30%">阶梯数量 </th>
@foreach($ladder_price as $k=>$v) <th style="width: 30%">国内含税价</th>
<th><div style="">阶梯数量 <?= $k+1 ?></div></th> <th style="width: 30%">香港交货价</th>
<th><div style="">国内含税价<?= $k+1 ?>(¥)</div></th>
<th><div style="">香港交货价<?= $k+1 ?></div></th>
@endforeach
@endif
</tr> </tr>
</thead> </thead>
<tr > <tbody>
@if(!empty($ladder_price) && is_array($ladder_price)) @if(!empty($ladder_price) && is_array($ladder_price))
@foreach($ladder_price as $k=>$v) @foreach($ladder_price as $k=>$v)
<td>{{@$v['purchases']}}</td> <tr >
<td>{{@$v['price_us']}}</td> <td>{{@$v['purchases'].'+'}}</td>
<td>{{@$v['price_cn']}}</td> <td>{{ @$v['price_cn'] ? '¥'.@$v['price_cn'] : "" }}</td>
<td>{{ @$v['price_us'] ? '$'.@$v['price_us'] : "" }}</td>
</tr>
@endforeach @endforeach
@endif @endif
</tr>
</tbody> </tbody>
</table> </table>
</div> </div>
\ No newline at end of file
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