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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
| <!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">
| <link rel="stylesheet" href="../../static/layui/css/layui.css" media="all">
| <link rel="stylesheet" href="../../static/css/cool.css" media="all">
| <link rel="stylesheet" href="../../static/css/common.css" media="all">
| </head>
|
| <body>
| <div class="layui-inline" style="width:31%;margin-top: 20px">
| <label class="layui-form-label">工 作 号:</label>
| <div class="layui-input-inline">
| <input id="wrkNo" class="layui-input" type="text" disabled="disabled">
| </div>
| </div>
| <table class="layui-hide" id="taskDetlLog" lay-filter="taskDetlLog"></table>
| </body>
| <script type="text/javascript" src="../../static/js/jquery/jquery-3.3.1.min.js"></script>
| <script type="text/javascript" src="../../static/layui/layui.js" charset="utf-8"></script>
| <script type="text/javascript" src="../../static/js/common.js" charset="utf-8"></script>
| <script type="text/javascript" src="../../static/js/cool.js" charset="utf-8"></script>
| <script type="text/javascript">
| var pageCur;
|
| layui.use(['table', 'laydate', 'form'], function () {
| var table = layui.table;
| var $ = layui.jquery;
| var form = layui.form;
|
| $('#wrkNo').val(parent.wrkNo);
| // 数据渲染
| table.render({
| elem: '#taskDetlLog',
| headers: { token: localStorage.getItem('token') },
| url: baseUrl + '/taskDetlLog/list/auth',
| where: { task_id: parent.id },
| page: true,
| limit: 16,
| limits: [16, 30, 50, 100, 200, 500],
| even: true,
| cellMinWidth: 50,
| cols: [[
| { field: 'wrkNo', align: 'center', title: '工作号', width: 100 }
| , { field: 'ioTime$', align: 'center', title: '工作时间', width: 160 }
| , { field: 'matnr', align: 'center', title: '物料编码', width: 120 }
| , { field: 'maktx', align: 'center', title: '物料名称' }
| , { field: 'anfme', align: 'center', title: '数量', width: 80 }
| , { field: 'batch', align: 'center', title: '批次', width: 100 }
| , { field: 'orderNo', align: 'center', title: '单据编号', width: 120 }
| , { field: 'zpallet', align: 'center', title: '托盘条码', width: 120 }
| , { field: 'specs', align: 'center', title: '规格' }
| , { field: 'unit', align: 'center', title: '单位', width: 60 }
| , { field: 'supp', align: 'center', title: '供应商' }
| ]],
| request: {
| pageName: 'curr',
| pageSize: 'limit'
| },
| parseData: function (res) {
| return {
| 'code': res.code,
| 'msg': res.msg,
| 'count': res.data.total,
| 'data': res.data.records
| }
| },
| response: {
| statusCode: 200
| },
| done: function (res, curr, count) {
| if (res.code === 403) {
| top.location.href = baseUrl + "/";
| }
| pageCur = curr;
| }
| });
| });
| </script>
|
| </html>
|
|