From bb69d7a4bdfbb90cde19b3d828f490ab10f2bb43 Mon Sep 17 00:00:00 2001
From: chen.lin <1442464845@qq.com>
Date: 星期一, 02 二月 2026 15:44:33 +0800
Subject: [PATCH] 库区增加序号
---
rsf-admin/src/page/components/DictionarySelect.jsx | 32 ++++++++++++++++++++++++++++++--
1 files changed, 30 insertions(+), 2 deletions(-)
diff --git a/rsf-admin/src/page/components/DictionarySelect.jsx b/rsf-admin/src/page/components/DictionarySelect.jsx
index 0825280..41101ee 100644
--- a/rsf-admin/src/page/components/DictionarySelect.jsx
+++ b/rsf-admin/src/page/components/DictionarySelect.jsx
@@ -1,16 +1,18 @@
import EditIcon from '@mui/icons-material/Edit';
-import { useState, useEffect } from 'react';
+import { useState, useEffect, useMemo } from 'react';
import {
Button, useListContext, SelectInput,
required, SelectArrayInput,
useTranslate, useNotify
} from 'react-admin';
+import { useFormContext } from 'react-hook-form';
import request from '@/utils/request';
const DictionarySelect = (props) => {
const {
dictTypeCode,
name,
+ group,
multiple = false,
perPage = 100, // 榛樿姣忛〉鏄剧ず100鏉℃暟鎹�
page = 1, // 榛樿绗竴椤�
@@ -18,8 +20,12 @@
} = props;
const translate = useTranslate();
const notify = useNotify();
+ const { watch } = useFormContext();
const [list, setList] = useState([]);
const [loading, setLoading] = useState(false);
+
+ // 鑾峰彇褰撳墠琛ㄥ崟鍊�
+ const currentValue = watch(name);
useEffect(() => {
http();
@@ -30,6 +36,7 @@
try {
const res = await request.post('/dictData/page', {
dictTypeCode,
+ group,
current: page,
pageSize: perPage
});
@@ -52,12 +59,33 @@
}
};
+ // 纭繚褰撳墠鍊煎湪閫夐」涓紝濡傛灉涓嶅湪涓旀鍦ㄥ姞杞斤紝娣诲姞鍗犱綅閫夐」
+ const choices = useMemo(() => {
+ if (!list || list.length === 0) {
+ // 濡傛灉鍒楄〃涓虹┖浣嗗綋鍓嶆湁鍊硷紝娣诲姞鍗犱綅閫夐」浠ラ伩鍏嶈鍛�
+ if (currentValue !== undefined && currentValue !== null && currentValue !== '') {
+ return [{ id: currentValue, name: String(currentValue) }];
+ }
+ return [];
+ }
+
+ // 妫�鏌ュ綋鍓嶅�兼槸鍚﹀湪閫夐」涓�
+ const valueExists = list.some(item => String(item.id) === String(currentValue));
+
+ // 濡傛灉褰撳墠鍊间笉鍦ㄩ�夐」涓紝娣诲姞瀹冿紙鍙兘鏄姞杞藉欢杩熷鑷寸殑锛�
+ if (currentValue !== undefined && currentValue !== null && currentValue !== '' && !valueExists) {
+ return [...list, { id: currentValue, name: String(currentValue) }];
+ }
+
+ return list;
+ }, [list, currentValue]);
+
const InputComponent = multiple ? SelectArrayInput : SelectInput;
return (
<InputComponent
source={name}
- choices={list}
+ choices={choices}
isLoading={loading}
{...parmas}
/>
--
Gitblit v1.9.1