From d20c04c88f55e1581bb2054d99483aba95f04fee Mon Sep 17 00:00:00 2001
From: skyouc
Date: 星期四, 13 三月 2025 13:17:51 +0800
Subject: [PATCH] Merge branch 'front' into devlop

---
 rsf-admin/src/page/system/dicts/dictData/DictDataList.jsx |   13 +++++--------
 1 files changed, 5 insertions(+), 8 deletions(-)

diff --git a/rsf-admin/src/page/system/dicts/dictData/DictDataList.jsx b/rsf-admin/src/page/system/dicts/dictData/DictDataList.jsx
index 65ea973..21a3f45 100644
--- a/rsf-admin/src/page/system/dicts/dictData/DictDataList.jsx
+++ b/rsf-admin/src/page/system/dicts/dictData/DictDataList.jsx
@@ -70,7 +70,7 @@
     <TextInput source="value" label="table.field.dictData.value" />,
     <TextInput source="label" label="table.field.dictData.label" />,
     <NumberInput source="sort" label="table.field.dictData.sort" />,
-    <TextInput source="color" label="table.field.dictData.color" />,
+    // <TextInput source="color" label="table.field.dictData.color" />,
 
     <TextInput label="common.field.memo" source="memo" />,
     <SelectInput
@@ -93,11 +93,7 @@
     const location = useLocation();
     const queryParams = new URLSearchParams(location.search);
     const dictTypeId = queryParams.get('dictTypeId');
-    console.log(dictTypeId);
-    if (dictTypeId != null && dictTypeId != undefined) {
-        console.log(dictTypeId);
-        console.log(fit);
-    }
+    const dictTypeCode = queryParams.get('code');
 
     return (
         <>
@@ -111,7 +107,7 @@
                             theme.transitions.create(['all'], {
                                 duration: theme.transitions.duration.enteringScreen,
                             }),
-                        marginRight: !!drawerVal ? `${PAGE_DRAWER_WIDTH}px` : 0,
+                        marginRight: drawerVal ? `${PAGE_DRAWER_WIDTH}px` : 0,
                     }}
                     title={"menu.dictData"}
                     empty={<EmptyData onClick={() => { setCreateDialog(true) }} />}
@@ -142,7 +138,7 @@
                         <TextField source="value" label="table.field.dictData.value" />
                         <TextField source="label" label="table.field.dictData.label" />
                         <NumberField source="sort" label="table.field.dictData.sort" />
-                        <TextField source="color" label="table.field.dictData.color" />
+                        {/* <TextField source="color" label="table.field.dictData.color" /> */}
 
                         <ReferenceField source="updateBy" label="common.field.updateBy" reference="user" link={false} sortable={false}>
                             <TextField source="nickname" />
@@ -163,6 +159,7 @@
                 <DictDataCreate
                     open={createDialog}
                     setOpen={setCreateDialog}
+                    row={{ dictTypeId, dictTypeCode }}
                 />
                 <PageDrawer
                     title='DictData Detail'

--
Gitblit v1.9.1