<!DOCTYPE html>
|
<html lang="en">
|
<head>
|
<meta charset="utf-8">
|
<title></title>
|
<meta name="renderer" content="webkit">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
<style>
|
.cool-divider {
|
margin: 0 8px;
|
display: inline-block;
|
height: .9em;
|
width: 1px;
|
vertical-align: middle;
|
position: relative;
|
top: -.06em;
|
box-sizing: border-box;
|
-webkit-tap-highlight-color: transparent;
|
margin-top: 5px !important;
|
margin-bottom: 5px !important;
|
background: #c8d1dabd;
|
}
|
</style>
|
</head>
|
<body>
|
|
<script type="text/html" template id="TPL_businessUser">
|
<div class="layui-card">
|
<div class="layui-card-header">商品 <div class="cool-divider"></div> <span>{{d.params.res.msg}}</span></div>
|
<div class="layui-card-body">
|
<table class="layui-table" lay-skin="line">
|
<colgroup>
|
<col/>
|
<col/>
|
</colgroup>
|
<thead>
|
<tr>
|
<td align="center">货位名称</td>
|
<td align="center">货位数量</td>
|
</tr>
|
</thead>
|
<tbody id="locChartList">
|
{{# layui.each(d.params.res.data, function(index, item){ }}
|
<tr>
|
<td align="center"><span class="layui-text">{{item.locNo}}</span></td>
|
<td align="center"><span style="font-weight: bold">{{item.anfme}}</span></td>
|
</tr>
|
{{# }); }}
|
</tbody>
|
</table>
|
</div>
|
</div>
|
</script>
|
|
</body>
|
</html>
|