自动化立体仓库 - WMS系统
#
luxiaotao1123
2020-06-08 88f8af7633457c8fc850f1d286c224c53d2c8c1e
src/main/webapp/static/js/config/config.js
@@ -10,7 +10,7 @@
    tableIns = table.render({
        elem: '#config',
        headers: {token: localStorage.getItem('token')},
        url: '/config/list/auth',
        url: baseUrl+'/config/list/auth',
        page: true,
        limit: 16,
        toolbar: '#toolbar',
@@ -43,7 +43,7 @@
        },
        done: function(res, curr, count) {
            if (res.code === 403) {
                top.location.href = "/";
                top.location.href = baseUrl;
            }
            pageCurr=curr;
            limit();
@@ -65,7 +65,7 @@
            },
            done: function (res, curr, count) {
                if (res.code === 403) {
                    top.location.href = "/";
                    top.location.href = baseUrl;
                }
                pageCurr=curr;
                limit();
@@ -110,7 +110,7 @@
                } else {
                    layer.confirm('确定删除'+(ids.length===1?'此':ids.length)+'条数据吗', function(){
                        $.ajax({
                            url: "/config/delete/auth",
                            url: baseUrl+"/config/delete/auth",
                            headers: {'token': localStorage.getItem('token')},
                            data: {ids: ids},
                            method: 'POST',
@@ -120,7 +120,7 @@
                                    layer.closeAll();
                                    tableReload(false);
                                } else if (res.code === 403){
                                    top.location.href = "/";
                                    top.location.href = baseUrl;
                                } else {
                                    layer.msg(res.msg)
                                }
@@ -148,7 +148,7 @@
                        'fields': fields
                    };
                    $.ajax({
                        url: "/config/export/auth",
                        url: baseUrl+"/config/export/auth",
                        headers: {'token': localStorage.getItem('token')},
                        data: JSON.stringify(param),
                        dataType:'json',
@@ -159,7 +159,7 @@
                            if (res.code === 200) {
                                table.exportFile(titles,res.data,'xls');
                            } else if (res.code === 403) {
                                top.location.href = "/";
                                top.location.href = baseUrl;
                            } else {
                                layer.msg(res.msg)
                            }
@@ -228,7 +228,7 @@
        };
        $.ajax({
            url: "/config/edit/auth",
            url: baseUrl+"/config/edit/auth",
            headers: {'token': localStorage.getItem('token')},
            data: top.reObject(data),
            method: 'POST',
@@ -240,7 +240,7 @@
                        $(this).val("");
                    });
                } else if (res.code === 403){
                    top.location.href = "/";
                    top.location.href = baseUrl;
                }else {
                    layer.msg(res.msg)
                }
@@ -283,7 +283,7 @@
        },
        done: function (res, curr, count) {
            if (res.code === 403) {
                top.location.href = "/";
                top.location.href = baseUrl;
            }
            pageCurr=curr;
            if (res.data.length === 0 && count !== 0) {