#
whycq
2022-09-08 fbf44e2ba37f43fabc220964b5acc3603d96faa8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!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>