You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pdd-order-api/app/views/page/order/op_setting/logistics.php

30 lines
784 B
PHTML

1 year ago
<div class="right-container">
<div class="page-header">
<h3>物流公司列表</h3>
</div>
<div class="clearfix" data-page="logistics">
<div class="table-responsive">
<table class="table table-hover table-bordered">
<thead class="bordered-silver">
<tr>
<th>物流公司名称</th>
</tr>
</thead>
<tbody>
<?php foreach ($logisticsList as $row){?>
<tr>
<td><?php echo $row['logistics_name'];?></td>
</tr>
<?php }?>
<?php if (empty($logisticsList)){?>
<tr>
<td colspan="4" class="text-center">无纪录 </td>
</tr>
<?php }?>
</tbody>
</table>
</div>
</div>
</div>
<?php echo HtmlTool::getStaticFile(array('biz/order/tpl_util.js','biz/tpl_builder.js', 'biz/order/op_setting.js'), TsConst::jsOp);?>