更新价格明细弹窗

parent f367b68f
......@@ -4,7 +4,7 @@
html {
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%; }
.no_point{pointer-events: none}
html, body {
*position: static;
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">
<table class="layui-table" id="tb" style="width: 650px;" lay-filter="parse-table-demo1">
<div class="table-list" id="shopList" style="width: 95%;">
<style type="text/css">
.width_s{ width:100px;}
</style>
<table class="layui-table" id="tb" style="width: 95%;" lay-filter="parse-table-demo1">
<thead>
<tr>
@if(!empty($ladder_price) && is_array($ladder_price))
@foreach($ladder_price as $k=>$v)
<th><div style="">阶梯数量 <?= $k+1 ?></div></th>
<th><div style="">国内含税价<?= $k+1 ?>(¥)</div></th>
<th><div style="">香港交货价<?= $k+1 ?></div></th>
@endforeach
@endif
<th style="width: 30%">阶梯数量 </th>
<th style="width: 30%">国内含税价</th>
<th style="width: 30%">香港交货价</th>
</tr>
</thead>
<tr >
<tbody>
@if(!empty($ladder_price) && is_array($ladder_price))
@foreach($ladder_price as $k=>$v)
<td>{{@$v['purchases']}}</td>
<td>{{@$v['price_us']}}</td>
<td>{{@$v['price_cn']}}</td>
<tr >
<td>{{@$v['purchases'].'+'}}</td>
<td>{{ @$v['price_cn'] ? '¥'.@$v['price_cn'] : "" }}</td>
<td>{{ @$v['price_us'] ? '$'.@$v['price_us'] : "" }}</td>
</tr>
@endforeach
@endif
</tr>
</tbody>
</table>
</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