自动化立体仓库 - WMS系统
zjj
2023-06-14 f34da12c558d57d156529e23c04e2388e60b94e5
src/main/webapp/views/report/locDetl.html
@@ -42,8 +42,13 @@
        table = layui.table;
        var $ = layui.jquery;
        var form = layui.form;
        const urlParams = new URLSearchParams(window.location.search);
        const locNo = urlParams.get('locNo');
        console.log(locNo); // 输出获取到的 locNo 参数值
        $('#locNo').val(parent.locNo);
        $('#locNo').val(locNo);
        // 数据渲染
        tableIns = table.render({
@@ -51,9 +56,9 @@
            headers: {token: localStorage.getItem('token')},
            url: baseUrl+'/locDetl/list/auth',
            page: true,
            limit: 10,
            limit: 20,
            skin: 'line',
            where: {loc_no: parent.locNo},
            where: {loc_no: locNo},
            even: true,
            cellMinWidth: 50,
            cols: [getCol()],