更新Company页面的UI为FUI风格

This commit is contained in:
2025-12-18 00:24:11 +08:00
parent 9623b08183
commit 028869aa0c
4 changed files with 21 additions and 18 deletions

View File

@@ -14,7 +14,6 @@ import {
VStack,
HStack,
Spinner,
useColorModeValue,
Tag,
Center,
List,
@@ -29,15 +28,15 @@ export function SearchBar(props) {
const navigate = useNavigate();
const containerRef = useRef(null);
// 颜色配置
const searchIconColor = useColorModeValue("gray.500", "gray.400");
const inputBg = useColorModeValue("white", "whiteAlpha.100");
const dropdownBg = useColorModeValue("white", "#1a1a2e");
const borderColor = useColorModeValue("gray.200", "whiteAlpha.200");
const hoverBg = useColorModeValue("gray.50", "whiteAlpha.100");
const textColor = useColorModeValue("gray.800", "white");
const subTextColor = useColorModeValue("gray.500", "whiteAlpha.600");
const accentColor = useColorModeValue("blue.500", "#D4AF37");
// 颜色配置 - 固定使用深色主题
const searchIconColor = "gray.400";
const inputBg = "whiteAlpha.100";
const dropdownBg = "#1a1a2e";
const borderColor = "rgba(212, 175, 55, 0.3)";
const hoverBg = "whiteAlpha.100";
const textColor = "white";
const subTextColor = "whiteAlpha.600";
const accentColor = "#D4AF37";
// 使用搜索 Hook
const {