4
hao
2025-04-16 c5fb1fbcbb2bf4d511773d348f9ef625855c61fc
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
<!DOCTYPE html>
<html  xmlns:shiro="http://www.pollix.at/thymeleaf/shiro"
       xmlns:th="http://www.thymeleaf.org">
<head th:include="layout :: htmlhead" th:with="title='管理'">
    <style th:inline="text">
        .layui-table, .layui-table-view{
            margin:0px;
        }
    </style>
 
</head>
 
<body class="layui-layout-body" style="font:12px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;">
<div class="layui-layout layui-layout-admin">
    <form action="" class="layui-form layui-form-pane" id="userSearch" method="post" style="margin-top: 5px;">
        <div class="layui-form-item" style="margin-bottom: 0px">
            <div class="layui-inline">
                <label class="layui-form-label" style="width:100px;">物料或条码:</label>
                <div class="layui-input-inline" style="margin-right:0px;width:200px;">
                    <input autocomplete="off" class="layui-input" id="keyword" name="keyword" type="text"/>
                </div>
                <!--按钮-->
                <button class="layui-btn layui-btn-primary" title="重置" type="reset">
                    <i class="layui-icon">&#xe669;</i>
                </button>
                <button class="layui-btn"  data-url="drill" lay-filter="doSearch" lay-submit="" title="查询">
                    <i class="layui-icon">&#xe615;</i>
                </button>
            </div>
        </div>
    </form>
 
    <div class="layui-tab layui-tab-brief" lay-filter="tabFilter" style="margin:0px;">
        <table id="unitList" lay-filter="unitTable" style="margin:0px;"></table>
    </div>
 
 
    <script src="/js/report/bcp.js" th:src="@{/js/report/bcp.js}"></script>
</div>
</body>
</html>