From d086af5559dba52095d23e425be87d8f11f24814 Mon Sep 17 00:00:00 2001 From: zjj <3272660260@qq.com> Date: 星期四, 17 七月 2025 16:32:47 +0800 Subject: [PATCH] #菜单、po单 --- rsf-admin/src/page/work/components/locItemInfoModal.jsx | 12 +++++++++--- 1 files changed, 9 insertions(+), 3 deletions(-) diff --git a/rsf-admin/src/page/work/components/locItemInfoModal.jsx b/rsf-admin/src/page/work/components/locItemInfoModal.jsx index 9061c88..c986926 100644 --- a/rsf-admin/src/page/work/components/locItemInfoModal.jsx +++ b/rsf-admin/src/page/work/components/locItemInfoModal.jsx @@ -114,6 +114,15 @@ <Grid container spacing={2}> <Grid item md={2}> <TextField + label={translate('table.field.locItem.locCode')} + name="locCode" + value={formData.locCode} + onChange={handleChange} + size="small" + /> + </Grid> + <Grid item md={2}> + <TextField label={translate('table.field.locItem.maktx')} name="maktx" value={formData.maktx} @@ -166,15 +175,12 @@ const notify = useNotify(); const [columns, setColumns] = useState([ - // { field: 'id', headerName: 'ID', width: 100 }, { field: 'locCode', headerName: translate('table.field.locItem.locCode'), width: 100 }, { field: 'matnrCode', headerName: translate('table.field.locItem.matnrCode'), width: 200 }, { field: 'maktx', headerName: translate('table.field.locItem.maktx'), width: 300 }, { field: 'batch', headerName: translate('table.field.locItem.batch'), width: 100 }, { field: 'anfme', headerName: translate('table.field.locItem.anfme'), width: 100 }, - // { field: 'workQty', headerName: translate('table.field.locItem.workQty'), width: 100 }, { field: 'unit', headerName: translate('table.field.locItem.unit'), width: 100 }, - ]) -- Gitblit v1.9.1