From 9e502880847d2b798d956ba36a92f9cbdec4f823 Mon Sep 17 00:00:00 2001 From: skyouc Date: 星期五, 01 八月 2025 09:08:27 +0800 Subject: [PATCH] 调拔单需要据原库区,筛选出库库存信息 入出库历史单据界面优化 --- rsf-admin/src/page/orders/transfer/CreateBySelectMats.jsx | 10 +++------- 1 files changed, 3 insertions(+), 7 deletions(-) diff --git a/rsf-admin/src/page/orders/transfer/CreateBySelectMats.jsx b/rsf-admin/src/page/orders/transfer/CreateBySelectMats.jsx index 34e824a..6c491bf 100644 --- a/rsf-admin/src/page/orders/transfer/CreateBySelectMats.jsx +++ b/rsf-admin/src/page/orders/transfer/CreateBySelectMats.jsx @@ -49,8 +49,6 @@ const translate = useTranslate(); const notify = useNotify(); const refresh = useRefresh(); - console.log("-----=====>"); - console.log(queryForm); const handleClose = (event, reason) => { if (reason !== "backdropClick") { @@ -134,7 +132,7 @@ aria-labelledby="form-dialog-title" fullWidth disableRestoreFocus - maxWidth="lg" + maxWidth="xl" > <DialogTitle id="form-dialog-title" sx={{ position: 'sticky', @@ -174,7 +172,7 @@ </Grid> </Box> - <Box sx={{ mt: 2, height: 400, width: '100%' }}> + <Box sx={{ mt: 2, height: 600, width: '100%' }}> <SelectMatsTableView tableData={tableData} setTableData={setTableData} @@ -232,8 +230,6 @@ }); if (res?.data?.code === 200) { const { data } = res.data; - console.log('====-->'); - console.log(data); setTableData(data?.records); setRowCount(data?.total); @@ -276,7 +272,7 @@ } return ( - <div style={{ height: 400, width: '100%' }}> + <div style={{ height: 590, width: '100%' }}> <DataGrid rows={tableData} rowCount={rowCount} -- Gitblit v1.9.1