自动化立体仓库 - WMS系统
#
luxiaotao1123
2020-06-09 622fb46b9feb34a05d5ba639599228620b891ebd
#
2个文件已修改
59 ■■■■ 已修改文件
src/main/webapp/static/js/staDesc/staDesc.js 55 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/webapp/views/staDesc/staDesc_detail.html 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/webapp/static/js/staDesc/staDesc.js
@@ -22,10 +22,10 @@
//             ,{field: 'typeId', align: 'center',title: '路径ID'}
            ,{field: 'typeNo$', align: 'center',title: '入出库类型'}
            // ,{field: 'typeDesc', align: 'center',title: '作业类型'}
            ,{field: 'stnNo$', align: 'center',title: '作业站点',event: 'stnNo', style: 'cursor:pointer'}
            ,{field: 'stnNo$', align: 'center',title: '起始站点'}
            ,{field: 'stnDesc', align: 'center',title: '站点名称'}
            ,{field: 'crnNo$', align: 'center',title: '堆垛机号',event: 'crnNo', style: 'cursor:pointer'}
            ,{field: 'crnStn$', align: 'center',title: '堆垛机站点',event: 'crnStn', style: 'cursor:pointer'}
            ,{field: 'crnNo$', align: 'center',title: '堆垛机号'}
            ,{field: 'crnStn$', align: 'center',title: '目标站点'}
            ,{field: 'memo', align: 'center',title: '备注'}
            // ,{field: 'modiUser$', align: 'center',title: '修改人员',event: 'modiUser', style: 'cursor:pointer'}
            // ,{field: 'modiTime$', align: 'center',title: '修改时间'}
@@ -224,7 +224,7 @@
                    title: '详情',
                    maxmin: true,
                    area: [top.detailWidth, top.detailHeight],
                    shadeClose: false,
                    shadeClose: true,
                    content: 'staDesc_detail.html',
                    success: function(layero, index){
                        setFormVal(layer.getChildFrame('#detail', index), data, true);
@@ -266,7 +266,7 @@
                       title: '入出库详情',
                       maxmin: true,
                       area: [top.detailWidth, top.detailHeight],
                       shadeClose: false,
                       shadeClose: true,
                       content: '../basWrkIotype/basWrkIotype_detail.html',
                       success: function(layero, index){
                           $.ajax({
@@ -302,7 +302,7 @@
                       title: '作业详情',
                       maxmin: true,
                       area: [top.detailWidth, top.detailHeight],
                       shadeClose: false,
                       shadeClose: true,
                       content: '../basDevp/basDevp_detail.html',
                       success: function(layero, index){
                           $.ajax({
@@ -338,7 +338,7 @@
                       title: '堆垛机详情',
                       maxmin: true,
                       area: [top.detailWidth, top.detailHeight],
                       shadeClose: false,
                       shadeClose: true,
                       content: '../basCrnp/basCrnp_detail.html',
                       success: function(layero, index){
                           $.ajax({
@@ -374,7 +374,7 @@
                       title: '堆垛机站点详情',
                       maxmin: true,
                       area: [top.detailWidth, top.detailHeight],
                       shadeClose: false,
                       shadeClose: true,
                       content: '../basDevp/basDevp_detail.html',
                       success: function(layero, index){
                           $.ajax({
@@ -410,7 +410,7 @@
                       title: '修改详情',
                       maxmin: true,
                       area: [top.detailWidth, top.detailHeight],
                       shadeClose: false,
                       shadeClose: true,
                       content: '../user/user_detail.html',
                       success: function(layero, index){
                           $.ajax({
@@ -436,43 +436,6 @@
                   });
                }
                break;
            case 'appeUser':
                var param = top.reObject(data).appeUser;
                if (param === undefined) {
                    layer.msg("无数据");
                } else {
                   layer.open({
                       type: 2,
                       title: '创详情',
                       maxmin: true,
                       area: [top.detailWidth, top.detailHeight],
                       shadeClose: false,
                       content: '../user/user_detail.html',
                       success: function(layero, index){
                           $.ajax({
                               url: baseUrl+"/user/"+ param +"/auth",
                               headers: {'token': localStorage.getItem('token')},
                               method: 'GET',
                               success: function (res) {
                                   if (res.code === 200){
                                       setFormVal(layer.getChildFrame('#detail', index), res.data, true);
                                       top.convertDisabled(layer.getChildFrame('#data-detail :input', index), true);
                                       layer.getChildFrame('#data-detail-submit-save,#data-detail-submit-edit,#prompt', index).hide();
                                       layer.iframeAuto(index);layer.style(index, {top: (($(window).height()-layer.getChildFrame('#data-detail', index).height())/3)+"px"});
                                       layero.find('iframe')[0].contentWindow.layui.form.render('select');
                                       layero.find('iframe')[0].contentWindow.layui.form.render('checkbox');
                                   } else if (res.code === 403){
                                       parent.location.href = "/";
                                   }else {
                                       layer.msg(res.msg)
                                   }
                               }
                           })
                       }
                   });
                }
                break;
        }
    });
src/main/webapp/views/staDesc/staDesc_detail.html
@@ -48,7 +48,7 @@
            </div>
        </div>
        <div class="layui-inline"  style="width:31%;">
            <label class="layui-form-label"><span class="not-null">*</span>作业站点:</label>
            <label class="layui-form-label"><span class="not-null">*</span>起始站点:</label>
            <div class="layui-input-inline cool-auto-complete">
                <input id="stnNo" class="layui-input" type="text" onkeyup="check(this.id, 'staDesc')" lay-verify="required|number"  style="display: none">
                <input id="stnNo$" class="layui-input cool-auto-complete-div" onclick="autoShow(this.id)" type="text" placeholder="请输入..." onfocus=this.blur()>
@@ -78,7 +78,7 @@
            </div>
        </div>
        <div class="layui-inline"  style="width:31%;">
            <label class="layui-form-label">堆垛机站点:</label>
            <label class="layui-form-label">目标站点:</label>
            <div class="layui-input-inline cool-auto-complete">
                <input id="crnStn" class="layui-input" type="text" lay-verify="number"  style="display: none">
                <input id="crnStn$" class="layui-input cool-auto-complete-div" onclick="autoShow(this.id)" type="text" placeholder="请输入..." onfocus=this.blur()>