自动化立体仓库 - WMS系统
*
lsh
7 小时以前 f0a7fa09eeef7fd9dc97173b5ef8e319d17c7f28
src/main/webapp/views/orderCargoGrouping/orderCargoGroupingOperate.html
@@ -372,13 +372,13 @@
         },
         // 获取子表B数据(根据实际业务调整)
         getTableDataB(orderNo) {
         getTableDataB(itemName) {
            let that = this;
            that.detailLoading = true;
            // 构建请求参数
            let params = {
               order_no: orderNo,
               item_name: itemName,
               curr: that.detailCurrentPage,
               limit: that.detailPageSize
            };
@@ -539,7 +539,7 @@
            this.currentRow = row;
            this.detailDialogVisible = true;
            this.detailCurrentPage = 1;
            this.getTableDataB(row.orderNo);
            this.getTableDataB(row.itemName);
         },
         // 关闭详情弹窗
@@ -568,7 +568,7 @@
            this.detailPageSize = val;
            this.detailCurrentPage = 1;
            if (this.currentRow) {
               this.getTableDataB(this.currentRow.orderNo);
               this.getTableDataB(this.currentRow.itemName);
            }
         },
@@ -576,7 +576,7 @@
         handleDetailCurrentChange(val) {
            this.detailCurrentPage = val;
            if (this.currentRow) {
               this.getTableDataB(this.currentRow.orderNo);
               this.getTableDataB(this.currentRow.itemName);
            }
         },