|  |  | 
 |  |  | var pageCurr; | 
 |  |  | function getCol() { | 
 |  |  |     var cols = [ | 
 |  |  |         {field: 'wrkNo', align: 'center',title: '工作号'} | 
 |  |  |         ,{field: 'ioTime$', align: 'center',title: '工作时间'} | 
 |  |  |     ]; | 
 |  |  |     cols.push.apply(cols, detlCols); | 
 |  |  |     cols.push({field: 'modiUser$', align: 'center',title: '修改人员',hide: true} | 
 |  |  |         ,{field: 'modiTime$', align: 'center',title: '修改时间',hide: true} | 
 |  |  |     ) | 
 |  |  |     return cols; | 
 |  |  | } | 
 |  |  |  | 
 |  |  | layui.use(['table','laydate', 'form'], function(){ | 
 |  |  |     var table = layui.table; | 
 |  |  |     var $ = layui.jquery; | 
 |  |  | 
 |  |  |         even: true, | 
 |  |  |         toolbar: '#toolbar', | 
 |  |  |         cellMinWidth: 50, | 
 |  |  |         cols: [[ | 
 |  |  |             {type: 'checkbox'} | 
 |  |  | //            ,{field: 'id', title: 'ID', sort: true,align: 'center', fixed: 'left', width: 80} | 
 |  |  |             ,{field: 'wrkNo', align: 'center',title: '工作号'} | 
 |  |  |             ,{field: 'ioTime$', align: 'center',title: '工作时间'} | 
 |  |  |             ,{field: 'matnr', align: 'center',title: '物料编号'} | 
 |  |  |             // ,{field: 'lgnum', align: 'center',title: '仓库号'} | 
 |  |  |             // ,{field: 'tbnum', align: 'center',title: '转储请求编号'} | 
 |  |  |             // ,{field: 'tbpos', align: 'center',title: '行项目'} | 
 |  |  |             // ,{field: 'zmatid', align: 'center',title: '物料标签ID'} | 
 |  |  |             ,{field: 'maktx', align: 'center',title: '物料描述'} | 
 |  |  |             // ,{field: 'werks', align: 'center',title: '工厂'} | 
 |  |  |             ,{field: 'anfme', align: 'center',title: '数量'} | 
 |  |  |             ,{field: 'altme', align: 'center',title: '单位'} | 
 |  |  |             ,{field: 'zpallet', align: 'center',title: '托盘条码'} | 
 |  |  |             // ,{field: 'bname', align: 'center',title: '用户ID'} | 
 |  |  |             ,{field: 'memo', align: 'center',title: '备注',hide: true} | 
 |  |  |             ,{field: 'modiUser$', align: 'center',title: '修改人员',hide: true} | 
 |  |  |             ,{field: 'modiTime$', align: 'center',title: '修改时间',hide: true} | 
 |  |  |             // ,{field: 'appeUser$', align: 'center',title: '创建者',event: 'appeUser', style: 'cursor:pointer'} | 
 |  |  |             // ,{field: 'appeTime$', align: 'center',title: '添加时间'} | 
 |  |  |             // ,{field: 'nista', align: 'center',title: ''} | 
 |  |  |  | 
 |  |  |             // ,{fixed: 'right', title:'操作', align: 'center', toolbar: '#operate', width:150} | 
 |  |  |         ]], | 
 |  |  |         cols: [getCol()], | 
 |  |  |         request: { | 
 |  |  |             pageName: 'curr', | 
 |  |  |             pageSize: 'limit' | 
 |  |  | 
 |  |  |                     res.data[_index][data.value] = 'N'; | 
 |  |  |                 } | 
 |  |  |             }); | 
 |  |  |             getOutBound(); | 
 |  |  |         } | 
 |  |  |     }); | 
 |  |  |  | 
 |  |  | 
 |  |  |         ,range: true | 
 |  |  |     }); | 
 |  |  |  | 
 |  |  |     // 获取拥有者表数据 | 
 |  |  |     function getOutBound(){ | 
 |  |  |         $.ajax({ | 
 |  |  |             url: baseUrl+"/owner/auto/site", | 
 |  |  |             headers: {'token': localStorage.getItem('token')}, | 
 |  |  |             method: 'POST', | 
 |  |  |             async: false, | 
 |  |  |             success: function (res) { | 
 |  |  |                 if (res.code === 200){ | 
 |  |  |                     var tpl = $("#takeSiteSelectTemplate").html(); | 
 |  |  |                     var template = Handlebars.compile(tpl); | 
 |  |  |                     var html = template(res); | 
 |  |  |                     $('#ownerSelect').append(html); | 
 |  |  |                     form.render('select'); | 
 |  |  |                 } else if (res.code === 403){ | 
 |  |  |                     top.location.href = baseUrl+"/"; | 
 |  |  |                 }else { | 
 |  |  |                     layer.msg(res.msg) | 
 |  |  |                 } | 
 |  |  |             } | 
 |  |  |         }) | 
 |  |  |     } | 
 |  |  |  | 
 |  |  | }); | 
 |  |  |  | 
 |  |  | // 关闭动作 |