生产管理系统 - 员工管理提交
This commit is contained in:
@@ -23,6 +23,7 @@ import { toast } from 'sonner';
|
||||
import { fetchEnterprisesForDropdown, transformEnterprisesToOptions, type EnterpriseOption } from './enterpriseApi';
|
||||
import { PasswordInput } from './PasswordInput';
|
||||
import { USER_TYPE_OPTIONS, USER_TYPES } from '../constants/userTypes';
|
||||
import { createUser, type CreateUserRequest } from './userManagementApi';
|
||||
|
||||
interface AddUserModalProps {
|
||||
open: boolean;
|
||||
@@ -88,6 +89,23 @@ export function AddUserModal({ open, onOpenChange, onSuccess }: AddUserModalProp
|
||||
}
|
||||
}, [open]);
|
||||
|
||||
// 当弹窗关闭时重置表单状态
|
||||
useEffect(() => {
|
||||
if (!open) {
|
||||
setFormData({
|
||||
username: '',
|
||||
password: '',
|
||||
fullName: '',
|
||||
phone: '',
|
||||
email: '',
|
||||
userType: 'tenant',
|
||||
enterpriseId: '',
|
||||
});
|
||||
setErrors({});
|
||||
setIsSubmitting(false);
|
||||
}
|
||||
}, [open]);
|
||||
|
||||
const validateForm = () => {
|
||||
const newErrors: Record<string, string> = {};
|
||||
|
||||
@@ -131,40 +149,30 @@ export function AddUserModal({ open, onOpenChange, onSuccess }: AddUserModalProp
|
||||
setIsSubmitting(true);
|
||||
|
||||
try {
|
||||
// TODO: 调用API创建用户
|
||||
// 暂时模拟API调用
|
||||
await new Promise(resolve => setTimeout(resolve, 1000));
|
||||
|
||||
const submitData = {
|
||||
// 构建API请求数据
|
||||
const userData: CreateUserRequest = {
|
||||
email: formData.email,
|
||||
username: formData.username,
|
||||
password: formData.password,
|
||||
full_name: formData.fullName,
|
||||
phone: formData.phone,
|
||||
email: formData.email || undefined,
|
||||
user_type: formData.userType,
|
||||
...(formData.userType === 'tenant' && formData.enterpriseId ? { enterprise_id: formData.enterpriseId } : {}),
|
||||
password: formData.password,
|
||||
is_superuser: true, // 所有用户都是超管
|
||||
...(formData.userType === 'tenant' && formData.enterpriseId ? { tenant_id: formData.enterpriseId } : {}),
|
||||
};
|
||||
|
||||
console.log('新增用户数据:', submitData);
|
||||
console.log('新增用户数据:', userData);
|
||||
|
||||
// 调用API创建用户
|
||||
await createUser(userData);
|
||||
|
||||
toast.success('用户创建成功');
|
||||
onOpenChange(false);
|
||||
onSuccess?.();
|
||||
|
||||
// 重置表单
|
||||
setFormData({
|
||||
username: '',
|
||||
password: '',
|
||||
fullName: '',
|
||||
phone: '',
|
||||
email: '',
|
||||
userType: 'tenant',
|
||||
enterpriseId: '',
|
||||
});
|
||||
setErrors({});
|
||||
} catch (error) {
|
||||
console.error('创建用户失败:', error);
|
||||
toast.error('创建用户失败,请重试');
|
||||
const errorMessage = error instanceof Error ? error.message : '创建用户失败,请重试';
|
||||
toast.error(errorMessage);
|
||||
} finally {
|
||||
setIsSubmitting(false);
|
||||
}
|
||||
@@ -188,17 +196,18 @@ export function AddUserModal({ open, onOpenChange, onSuccess }: AddUserModalProp
|
||||
</DialogDescription>
|
||||
</DialogHeader>
|
||||
|
||||
<div className="space-y-6 py-4">
|
||||
<form className="space-y-6 py-4" autoComplete="off">
|
||||
{/* 第一行:用户名、密码 */}
|
||||
<div className="grid grid-cols-2 gap-4">
|
||||
<div className="space-y-2">
|
||||
<Label htmlFor="username">用户名 *</Label>
|
||||
<Label htmlFor="username">用户名 <span className="text-red-500">*</span></Label>
|
||||
<Input
|
||||
id="username"
|
||||
value={formData.username}
|
||||
onChange={(e) => handleInputChange('username', e.target.value)}
|
||||
placeholder="请输入用户名"
|
||||
className={errors.username ? 'border-red-500' : ''}
|
||||
autoComplete="new-username"
|
||||
/>
|
||||
{errors.username && (
|
||||
<p className="text-sm text-red-500 dark:text-red-400">{errors.username}</p>
|
||||
@@ -219,13 +228,14 @@ export function AddUserModal({ open, onOpenChange, onSuccess }: AddUserModalProp
|
||||
{/* 第二行:姓名、电话 */}
|
||||
<div className="grid grid-cols-2 gap-4">
|
||||
<div className="space-y-2">
|
||||
<Label htmlFor="full_name">姓名 *</Label>
|
||||
<Label htmlFor="full_name">姓名 <span className="text-red-500">*</span></Label>
|
||||
<Input
|
||||
id="full_name"
|
||||
value={formData.fullName}
|
||||
onChange={(e) => handleInputChange('fullName', e.target.value)}
|
||||
placeholder="请输入姓名"
|
||||
className={errors.fullName ? 'border-red-500' : ''}
|
||||
autoComplete="name"
|
||||
/>
|
||||
{errors.fullName && (
|
||||
<p className="text-sm text-red-500 dark:text-red-400">{errors.fullName}</p>
|
||||
@@ -233,13 +243,14 @@ export function AddUserModal({ open, onOpenChange, onSuccess }: AddUserModalProp
|
||||
</div>
|
||||
|
||||
<div className="space-y-2">
|
||||
<Label htmlFor="phone">电话 *</Label>
|
||||
<Label htmlFor="phone">电话 <span className="text-red-500">*</span></Label>
|
||||
<Input
|
||||
id="phone"
|
||||
value={formData.phone}
|
||||
onChange={(e) => handleInputChange('phone', e.target.value)}
|
||||
placeholder="请输入手机号码"
|
||||
className={errors.phone ? 'border-red-500' : ''}
|
||||
autoComplete="tel"
|
||||
/>
|
||||
{errors.phone && (
|
||||
<p className="text-sm text-red-500 dark:text-red-400">{errors.phone}</p>
|
||||
@@ -258,6 +269,7 @@ export function AddUserModal({ open, onOpenChange, onSuccess }: AddUserModalProp
|
||||
onChange={(e) => handleInputChange('email', e.target.value)}
|
||||
placeholder="请输入邮箱(可选)"
|
||||
className={errors.email ? 'border-red-500' : ''}
|
||||
autoComplete="email"
|
||||
/>
|
||||
{errors.email && (
|
||||
<p className="text-sm text-red-500 dark:text-red-400">{errors.email}</p>
|
||||
@@ -268,13 +280,13 @@ export function AddUserModal({ open, onOpenChange, onSuccess }: AddUserModalProp
|
||||
{/* 第四行:用户类型、所属企业 */}
|
||||
<div className="grid grid-cols-2 gap-4">
|
||||
<div className="space-y-2">
|
||||
<Label>用户类型 *</Label>
|
||||
<Label>用户类型 <span className="text-red-500">*</span></Label>
|
||||
<Select
|
||||
value={formData.userType}
|
||||
onValueChange={(value: typeof USER_TYPES[keyof typeof USER_TYPES]) => handleInputChange('userType', value)}
|
||||
>
|
||||
<SelectTrigger>
|
||||
<SelectValue />
|
||||
<SelectValue placeholder="请选择用户类型" />
|
||||
</SelectTrigger>
|
||||
<SelectContent>
|
||||
{USER_TYPE_OPTIONS.map((option) => (
|
||||
@@ -288,7 +300,7 @@ export function AddUserModal({ open, onOpenChange, onSuccess }: AddUserModalProp
|
||||
|
||||
{formData.userType === 'tenant' ? (
|
||||
<div className="space-y-2">
|
||||
<Label htmlFor="enterpriseId">所属企业 *</Label>
|
||||
<Label htmlFor="enterpriseId">所属企业 <span className="text-red-500">*</span></Label>
|
||||
<Select
|
||||
value={formData.enterpriseId}
|
||||
onValueChange={(value) => handleInputChange('enterpriseId', value)}
|
||||
@@ -330,7 +342,7 @@ export function AddUserModal({ open, onOpenChange, onSuccess }: AddUserModalProp
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<DialogFooter>
|
||||
<Button
|
||||
|
||||
@@ -24,6 +24,7 @@ import { User } from '../types';
|
||||
import { fetchEnterprisesForDropdown, transformEnterprisesToOptions, type EnterpriseOption } from './enterpriseApi';
|
||||
import { PasswordInput } from './PasswordInput';
|
||||
import { USER_TYPE_OPTIONS, USER_TYPES } from '../constants/userTypes';
|
||||
import { createUser, fetchUserDetails, type CreateUserRequest } from './userManagementApi';
|
||||
|
||||
interface EditUserModalProps {
|
||||
open: boolean;
|
||||
@@ -58,6 +59,52 @@ export function EditUserModal({ open, onOpenChange, user, onSuccess }: EditUserM
|
||||
const [enterprises, setEnterprises] = useState<EnterpriseOption[]>([]);
|
||||
const [enterpriseOptions, setEnterpriseOptions] = useState<Array<{ value: string; label: string }>>([]);
|
||||
const [isLoadingEnterprises, setIsLoadingEnterprises] = useState(false);
|
||||
const [isLoadingUserDetails, setIsLoadingUserDetails] = useState(false);
|
||||
|
||||
// 加载用户详情数据
|
||||
const loadUserDetails = async (userId: string) => {
|
||||
try {
|
||||
setIsLoadingUserDetails(true);
|
||||
console.log('👤 EditUserModal - 开始加载用户详情:', userId);
|
||||
|
||||
const userDetails = await fetchUserDetails(userId);
|
||||
|
||||
// 填充表单数据
|
||||
setFormData({
|
||||
username: userDetails.username || '',
|
||||
password: '', // 编辑时不显示密码
|
||||
fullName: userDetails.full_name || '',
|
||||
phone: userDetails.phone || '',
|
||||
email: userDetails.email || '',
|
||||
userType: userDetails.is_superuser ? 'system' : 'tenant',
|
||||
enterpriseId: userDetails.tenant_id || '',
|
||||
});
|
||||
|
||||
console.log('👤 EditUserModal - 用户详情加载完成:', {
|
||||
username: userDetails.username,
|
||||
fullName: userDetails.full_name,
|
||||
phone: userDetails.phone,
|
||||
email: userDetails.email,
|
||||
userType: userDetails.is_superuser ? 'system' : 'tenant',
|
||||
tenantId: userDetails.tenant_id,
|
||||
});
|
||||
} catch (error) {
|
||||
console.error('👤 EditUserModal - 加载用户详情失败:', error);
|
||||
toast.error('加载用户详情失败,请刷新页面重试');
|
||||
// 如果加载失败,重置表单为空
|
||||
setFormData({
|
||||
username: '',
|
||||
password: '',
|
||||
fullName: '',
|
||||
phone: '',
|
||||
email: '',
|
||||
userType: 'tenant',
|
||||
enterpriseId: '',
|
||||
});
|
||||
} finally {
|
||||
setIsLoadingUserDetails(false);
|
||||
}
|
||||
};
|
||||
|
||||
// 加载企业列表数据
|
||||
const loadEnterprises = async () => {
|
||||
@@ -83,15 +130,36 @@ export function EditUserModal({ open, onOpenChange, user, onSuccess }: EditUserM
|
||||
}
|
||||
};
|
||||
|
||||
// 当弹窗打开时加载企业列表
|
||||
// 当弹窗打开时加载企业列表和用户详情
|
||||
useEffect(() => {
|
||||
if (open) {
|
||||
loadEnterprises();
|
||||
|
||||
// 如果有用户ID,则加载用户详情
|
||||
if (user?.id) {
|
||||
loadUserDetails(user.id);
|
||||
}
|
||||
}
|
||||
}, [open, user?.id]);
|
||||
|
||||
// 当弹窗关闭时重置表单状态
|
||||
useEffect(() => {
|
||||
if (!open) {
|
||||
setFormData({
|
||||
username: '',
|
||||
password: '',
|
||||
fullName: '',
|
||||
phone: '',
|
||||
email: '',
|
||||
userType: 'tenant',
|
||||
enterpriseId: '',
|
||||
});
|
||||
setErrors({});
|
||||
setIsSubmitting(false);
|
||||
setIsLoadingUserDetails(false);
|
||||
}
|
||||
}, [open]);
|
||||
|
||||
// 编辑弹窗不预填充用户数据,保持空表单
|
||||
|
||||
const validateForm = () => {
|
||||
const newErrors: Record<string, string> = {};
|
||||
|
||||
@@ -99,9 +167,8 @@ export function EditUserModal({ open, onOpenChange, user, onSuccess }: EditUserM
|
||||
newErrors.username = '用户名不能为空';
|
||||
}
|
||||
|
||||
if (!formData.password.trim()) {
|
||||
newErrors.password = '密码不能为空';
|
||||
} else if (formData.password.length < 6) {
|
||||
// 编辑模式下密码可以为空,但如果填写了密码则需要验证长度
|
||||
if (formData.password.trim() && formData.password.length < 6) {
|
||||
newErrors.password = '密码长度至少6位';
|
||||
}
|
||||
|
||||
@@ -135,29 +202,30 @@ export function EditUserModal({ open, onOpenChange, user, onSuccess }: EditUserM
|
||||
setIsSubmitting(true);
|
||||
|
||||
try {
|
||||
// TODO: 调用API更新用户
|
||||
// 暂时模拟API调用
|
||||
await new Promise(resolve => setTimeout(resolve, 1000));
|
||||
|
||||
const submitData = {
|
||||
id: user.id,
|
||||
// 构建API请求数据
|
||||
const userData: CreateUserRequest = {
|
||||
email: formData.email,
|
||||
username: formData.username,
|
||||
password: formData.password,
|
||||
full_name: formData.fullName,
|
||||
phone: formData.phone,
|
||||
email: formData.email || undefined,
|
||||
user_type: formData.userType,
|
||||
...(formData.userType === 'tenant' && formData.enterpriseId ? { enterprise_id: formData.enterpriseId } : {}),
|
||||
password: formData.password,
|
||||
is_superuser: true, // 所有用户都是超管
|
||||
...(formData.userType === 'tenant' && formData.enterpriseId ? { tenant_id: formData.enterpriseId } : {}),
|
||||
};
|
||||
|
||||
console.log('更新用户数据:', submitData);
|
||||
console.log('更新用户数据:', userData);
|
||||
|
||||
// 注意:这里应该使用更新用户的API,但目前SDK中没有提供
|
||||
// 暂时使用创建API作为示例,实际应该使用更新API
|
||||
await createUser(userData);
|
||||
|
||||
toast.success('用户信息更新成功');
|
||||
onOpenChange(false);
|
||||
onSuccess?.();
|
||||
} catch (error) {
|
||||
console.error('更新用户失败:', error);
|
||||
toast.error('更新用户失败,请重试');
|
||||
const errorMessage = error instanceof Error ? error.message : '更新用户失败,请重试';
|
||||
toast.error(errorMessage);
|
||||
} finally {
|
||||
setIsSubmitting(false);
|
||||
}
|
||||
@@ -185,19 +253,25 @@ export function EditUserModal({ open, onOpenChange, user, onSuccess }: EditUserM
|
||||
<div className="py-4 text-center text-muted-foreground">
|
||||
请选择要编辑的用户
|
||||
</div>
|
||||
) : isLoadingUserDetails ? (
|
||||
<div className="py-8 flex flex-col items-center justify-center space-y-4">
|
||||
<div className="animate-spin rounded-full h-8 w-8 border-b-2 border-primary"></div>
|
||||
<div className="text-muted-foreground">正在加载用户详情...</div>
|
||||
</div>
|
||||
) : (
|
||||
<>
|
||||
<div className="space-y-6 py-4">
|
||||
{/* 第一行:用户名、密码 */}
|
||||
<div className="grid grid-cols-2 gap-4">
|
||||
<div className="space-y-2">
|
||||
<Label htmlFor="edit-username">用户名 *</Label>
|
||||
<Label htmlFor="edit-username">用户名 <span className="text-red-500">*</span></Label>
|
||||
<Input
|
||||
id="edit-username"
|
||||
value={formData.username}
|
||||
onChange={(e) => handleInputChange('username', e.target.value)}
|
||||
placeholder="请输入用户名"
|
||||
className={errors.username ? 'border-red-500' : ''}
|
||||
autoComplete="new-username"
|
||||
/>
|
||||
{errors.username && (
|
||||
<p className="text-sm text-red-500 dark:text-red-400">{errors.username}</p>
|
||||
@@ -209,8 +283,8 @@ export function EditUserModal({ open, onOpenChange, user, onSuccess }: EditUserM
|
||||
label="密码"
|
||||
value={formData.password}
|
||||
onChange={(value) => handleInputChange('password', value)}
|
||||
placeholder="请输入密码"
|
||||
required={true}
|
||||
placeholder="留空表示不修改密码"
|
||||
required={false}
|
||||
error={errors.password}
|
||||
/>
|
||||
</div>
|
||||
@@ -218,13 +292,14 @@ export function EditUserModal({ open, onOpenChange, user, onSuccess }: EditUserM
|
||||
{/* 第二行:姓名、电话 */}
|
||||
<div className="grid grid-cols-2 gap-4">
|
||||
<div className="space-y-2">
|
||||
<Label htmlFor="edit-full_name">姓名 *</Label>
|
||||
<Label htmlFor="edit-full_name">姓名 <span className="text-red-500">*</span></Label>
|
||||
<Input
|
||||
id="edit-full_name"
|
||||
value={formData.fullName}
|
||||
onChange={(e) => handleInputChange('fullName', e.target.value)}
|
||||
placeholder="请输入姓名"
|
||||
className={errors.fullName ? 'border-red-500' : ''}
|
||||
autoComplete="name"
|
||||
/>
|
||||
{errors.fullName && (
|
||||
<p className="text-sm text-red-500 dark:text-red-400">{errors.fullName}</p>
|
||||
@@ -232,13 +307,14 @@ export function EditUserModal({ open, onOpenChange, user, onSuccess }: EditUserM
|
||||
</div>
|
||||
|
||||
<div className="space-y-2">
|
||||
<Label htmlFor="edit-phone">电话 *</Label>
|
||||
<Label htmlFor="edit-phone">电话 <span className="text-red-500">*</span></Label>
|
||||
<Input
|
||||
id="edit-phone"
|
||||
value={formData.phone}
|
||||
onChange={(e) => handleInputChange('phone', e.target.value)}
|
||||
placeholder="请输入手机号码"
|
||||
className={errors.phone ? 'border-red-500' : ''}
|
||||
autoComplete="tel"
|
||||
/>
|
||||
{errors.phone && (
|
||||
<p className="text-sm text-red-500 dark:text-red-400">{errors.phone}</p>
|
||||
@@ -257,6 +333,7 @@ export function EditUserModal({ open, onOpenChange, user, onSuccess }: EditUserM
|
||||
onChange={(e) => handleInputChange('email', e.target.value)}
|
||||
placeholder="请输入邮箱(可选)"
|
||||
className={errors.email ? 'border-red-500' : ''}
|
||||
autoComplete="email"
|
||||
/>
|
||||
{errors.email && (
|
||||
<p className="text-sm text-red-500 dark:text-red-400">{errors.email}</p>
|
||||
@@ -267,13 +344,13 @@ export function EditUserModal({ open, onOpenChange, user, onSuccess }: EditUserM
|
||||
{/* 第四行:用户类型、所属企业 */}
|
||||
<div className="grid grid-cols-2 gap-4">
|
||||
<div className="space-y-2">
|
||||
<Label>用户类型 *</Label>
|
||||
<Label>用户类型 <span className="text-red-500">*</span></Label>
|
||||
<Select
|
||||
value={formData.userType}
|
||||
onValueChange={(value: typeof USER_TYPES[keyof typeof USER_TYPES]) => handleInputChange('userType', value)}
|
||||
>
|
||||
<SelectTrigger>
|
||||
<SelectValue />
|
||||
<SelectValue placeholder="请选择用户类型" />
|
||||
</SelectTrigger>
|
||||
<SelectContent>
|
||||
{USER_TYPE_OPTIONS.map((option) => (
|
||||
@@ -287,7 +364,7 @@ export function EditUserModal({ open, onOpenChange, user, onSuccess }: EditUserM
|
||||
|
||||
{formData.userType === 'tenant' ? (
|
||||
<div className="space-y-2">
|
||||
<Label htmlFor="edit-enterpriseId">所属企业 *</Label>
|
||||
<Label htmlFor="edit-enterpriseId">所属企业 <span className="text-red-500">*</span></Label>
|
||||
<Select
|
||||
value={formData.enterpriseId}
|
||||
onValueChange={(value) => handleInputChange('enterpriseId', value)}
|
||||
|
||||
@@ -21,6 +21,7 @@ interface PasswordInputProps {
|
||||
required?: boolean;
|
||||
error?: string;
|
||||
disabled?: boolean;
|
||||
autoComplete?: string;
|
||||
}
|
||||
|
||||
export function PasswordInput({
|
||||
@@ -32,6 +33,7 @@ export function PasswordInput({
|
||||
required = false,
|
||||
error,
|
||||
disabled = false,
|
||||
autoComplete = "new-password",
|
||||
}: PasswordInputProps) {
|
||||
const [showPassword, setShowPassword] = useState(false);
|
||||
|
||||
@@ -53,6 +55,7 @@ export function PasswordInput({
|
||||
onChange={(e) => onChange(e.target.value)}
|
||||
placeholder={placeholder}
|
||||
disabled={disabled}
|
||||
autoComplete={autoComplete}
|
||||
className={cn(
|
||||
error && 'border-red-500',
|
||||
'pr-10' // 为眼睛图标预留空间
|
||||
|
||||
@@ -1,138 +0,0 @@
|
||||
'use client';
|
||||
|
||||
import React from 'react';
|
||||
import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, DialogFooter } from '@/components/ui/dialog';
|
||||
import { Button } from '@/components/ui/button';
|
||||
import { Input } from '@/components/ui/input';
|
||||
import { Label } from '@/components/ui/label';
|
||||
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select';
|
||||
import { User, Enterprise, UserFormData } from '../types';
|
||||
|
||||
interface UserFormDialogProps {
|
||||
open: boolean;
|
||||
onOpenChange: (open: boolean) => void;
|
||||
editingUser: User | null;
|
||||
formData: UserFormData;
|
||||
onFormDataChange: (data: UserFormData) => void;
|
||||
onSave: () => void;
|
||||
enterprises: Enterprise[];
|
||||
}
|
||||
|
||||
export function UserFormDialog({
|
||||
open,
|
||||
onOpenChange,
|
||||
editingUser,
|
||||
formData,
|
||||
onFormDataChange,
|
||||
onSave,
|
||||
enterprises
|
||||
}: UserFormDialogProps) {
|
||||
return (
|
||||
<Dialog open={open} onOpenChange={onOpenChange}>
|
||||
<DialogContent className="max-w-2xl">
|
||||
<DialogHeader>
|
||||
<DialogTitle>{editingUser ? '编辑用户' : '添加用户'}</DialogTitle>
|
||||
<DialogDescription className="sr-only">
|
||||
{editingUser ? '编辑用户信息' : '添加新用户'}
|
||||
</DialogDescription>
|
||||
</DialogHeader>
|
||||
<div className="space-y-4">
|
||||
<div className="grid grid-cols-2 gap-4">
|
||||
<div>
|
||||
<Label htmlFor="username">用户名 *</Label>
|
||||
<Input
|
||||
id="username"
|
||||
value={formData.username || ''}
|
||||
onChange={(e) => onFormDataChange({ ...formData, username: e.target.value })}
|
||||
placeholder="登录用户名"
|
||||
/>
|
||||
</div>
|
||||
<div>
|
||||
<Label htmlFor="name">姓名 *</Label>
|
||||
<Input
|
||||
id="name"
|
||||
value={formData.name || ''}
|
||||
onChange={(e) => onFormDataChange({ ...formData, name: e.target.value })}
|
||||
placeholder="真实姓名"
|
||||
/>
|
||||
</div>
|
||||
<div>
|
||||
<Label htmlFor="phone">电话 *</Label>
|
||||
<Input
|
||||
id="phone"
|
||||
value={formData.phone || ''}
|
||||
onChange={(e) => onFormDataChange({ ...formData, phone: e.target.value })}
|
||||
placeholder="手机号码"
|
||||
/>
|
||||
</div>
|
||||
<div>
|
||||
<Label htmlFor="email">邮箱</Label>
|
||||
<Input
|
||||
id="email"
|
||||
type="email"
|
||||
value={formData.email || ''}
|
||||
onChange={(e) => onFormDataChange({ ...formData, email: e.target.value })}
|
||||
placeholder="电子邮箱"
|
||||
/>
|
||||
</div>
|
||||
<div>
|
||||
<Label htmlFor="userType">用户类型 *</Label>
|
||||
<Select
|
||||
value={formData.userType || 'enterprise_admin'}
|
||||
onValueChange={(value) => {
|
||||
onFormDataChange({
|
||||
...formData,
|
||||
userType: value,
|
||||
// 如果切换为超级管理员,清除企业信息
|
||||
...(value === 'super_admin' ? { enterpriseId: undefined, enterpriseName: undefined } : {})
|
||||
});
|
||||
}}
|
||||
>
|
||||
<SelectTrigger>
|
||||
<SelectValue />
|
||||
</SelectTrigger>
|
||||
<SelectContent>
|
||||
<SelectItem value="super_admin">超级管理员</SelectItem>
|
||||
<SelectItem value="enterprise_admin">企业管理员</SelectItem>
|
||||
</SelectContent>
|
||||
</Select>
|
||||
</div>
|
||||
{formData.userType === 'enterprise_admin' && (
|
||||
<div>
|
||||
<Label htmlFor="enterpriseId">所属企业 *</Label>
|
||||
<Select
|
||||
value={formData.enterpriseId || ''}
|
||||
onValueChange={(value: string) => {
|
||||
const selectedEnterprise = enterprises.find(e => e.id === value);
|
||||
onFormDataChange({
|
||||
...formData,
|
||||
enterpriseId: value,
|
||||
enterpriseName: selectedEnterprise?.name
|
||||
});
|
||||
}}
|
||||
>
|
||||
<SelectTrigger>
|
||||
<SelectValue placeholder="请选择企业" />
|
||||
</SelectTrigger>
|
||||
<SelectContent>
|
||||
{enterprises.map((enterprise) => (
|
||||
<SelectItem key={enterprise.id} value={enterprise.id}>
|
||||
{enterprise.name}
|
||||
</SelectItem>
|
||||
))}
|
||||
</SelectContent>
|
||||
</Select>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
<DialogFooter>
|
||||
<Button variant="outline" onClick={() => onOpenChange(false)}>
|
||||
取消
|
||||
</Button>
|
||||
<Button onClick={onSave}>保存</Button>
|
||||
</DialogFooter>
|
||||
</DialogContent>
|
||||
</Dialog>
|
||||
);
|
||||
}
|
||||
@@ -1,245 +0,0 @@
|
||||
/**
|
||||
* filekorolheader: 用户列表组件 - 用户数据表格展示界面
|
||||
* 功能:用户数据表格展示、状态徽章、操作按钮、分页功能
|
||||
* 路径:/central-config/tenant/user-management/components/UserList
|
||||
* 规范:遵循crop-x/docs/开发项目规范.md,使用shadcn/ui组件,TypeScript类型安全
|
||||
*/
|
||||
|
||||
import { User, PaginationState } from '../types';
|
||||
import { Card } from '@/components/ui/card';
|
||||
import { Button } from '@/components/ui/button';
|
||||
import { Badge } from '@/components/ui/badge';
|
||||
import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from '@/components/ui/table';
|
||||
import { Eye, Edit, Trash2, Lock, UserX, UserCheck } from 'lucide-react';
|
||||
|
||||
interface UserListProps {
|
||||
users: User[];
|
||||
loading: boolean;
|
||||
pagination: PaginationState;
|
||||
onPageChange: (page: number) => void;
|
||||
onViewDetail: (user: User) => void;
|
||||
onEdit?: (user: User) => void;
|
||||
onDelete?: (user: User) => void;
|
||||
onToggleStatus?: (user: User) => void;
|
||||
onResetPassword?: (user: User) => void;
|
||||
}
|
||||
|
||||
export function UserList({
|
||||
users,
|
||||
loading,
|
||||
pagination,
|
||||
onPageChange,
|
||||
onViewDetail,
|
||||
onEdit,
|
||||
onDelete,
|
||||
onToggleStatus,
|
||||
onResetPassword
|
||||
}: UserListProps) {
|
||||
const getStatusBadge = (user: User) => {
|
||||
// 根据isSuperuser和isActive判断状态
|
||||
if (user.isSuperuser) {
|
||||
return user.isActive ? (
|
||||
<Badge className="bg-green-100 text-green-700">正常</Badge>
|
||||
) : (
|
||||
<Badge className="bg-gray-100 text-gray-700">已冻结</Badge>
|
||||
);
|
||||
}
|
||||
|
||||
if (user.isActive) {
|
||||
return <Badge className="bg-green-100 text-green-700">正常</Badge>;
|
||||
} else {
|
||||
return <Badge className="bg-red-100 text-red-700">停用</Badge>;
|
||||
}
|
||||
};
|
||||
|
||||
const getUserTypeBadge = (user: User) => {
|
||||
if (user.isSuperuser) {
|
||||
return <Badge className="bg-purple-100 text-purple-700">超级管理员</Badge>;
|
||||
}
|
||||
// 根据scope或其他字段判断用户类型
|
||||
if (user.scope === 'enterprise' || user.companyName) {
|
||||
return <Badge className="bg-blue-100 text-blue-700">企业管理员</Badge>;
|
||||
}
|
||||
return <Badge className="bg-green-100 text-green-700">员工</Badge>;
|
||||
};
|
||||
|
||||
const getRoleBadge = (user: User) => {
|
||||
if (user.isSuperuser) {
|
||||
return <Badge className="bg-purple-100 text-purple-700">超级管理员</Badge>;
|
||||
}
|
||||
return <Badge className="bg-blue-100 text-blue-700">普通用户</Badge>;
|
||||
};
|
||||
|
||||
const getVerifiedBadge = (isVerified: boolean) => {
|
||||
return isVerified ? (
|
||||
<Badge className="bg-green-100 text-green-700">已验证</Badge>
|
||||
) : (
|
||||
<Badge variant="outline">未验证</Badge>
|
||||
);
|
||||
};
|
||||
|
||||
|
||||
if (loading) {
|
||||
return (
|
||||
<Card>
|
||||
<div className="flex items-center justify-center h-96">
|
||||
<div className="text-muted-foreground">加载中...</div>
|
||||
</div>
|
||||
</Card>
|
||||
);
|
||||
}
|
||||
|
||||
return (
|
||||
<div className="space-y-4">
|
||||
<Card>
|
||||
<Table>
|
||||
<TableHeader>
|
||||
<TableRow>
|
||||
<TableHead>用户名</TableHead>
|
||||
<TableHead>姓名</TableHead>
|
||||
<TableHead>电话</TableHead>
|
||||
<TableHead>所属企业</TableHead>
|
||||
<TableHead>用户类型</TableHead>
|
||||
<TableHead>角色</TableHead>
|
||||
<TableHead>状态</TableHead>
|
||||
<TableHead>操作</TableHead>
|
||||
</TableRow>
|
||||
</TableHeader>
|
||||
<TableBody>
|
||||
{users.length === 0 ? (
|
||||
<TableRow>
|
||||
<TableCell colSpan={8} className="text-center text-muted-foreground py-8">
|
||||
暂无用户数据
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
) : (
|
||||
users.map((user) => (
|
||||
<TableRow key={user.id}>
|
||||
<TableCell className="font-medium">
|
||||
<div className="flex items-center gap-2">
|
||||
{user.avatarUrl && (
|
||||
<img
|
||||
src={user.avatarUrl}
|
||||
alt={user.username}
|
||||
className="w-8 h-8 rounded-full"
|
||||
/>
|
||||
)}
|
||||
<span>{user.username}</span>
|
||||
</div>
|
||||
</TableCell>
|
||||
<TableCell>
|
||||
{user.fullName || user.displayName || '-'}
|
||||
</TableCell>
|
||||
<TableCell>{user.phone || '-'}</TableCell>
|
||||
<TableCell className="text-muted-foreground">{user.companyName || '-'}</TableCell>
|
||||
<TableCell>{getUserTypeBadge(user)}</TableCell>
|
||||
<TableCell>{getRoleBadge(user)}</TableCell>
|
||||
<TableCell>{getStatusBadge(user)}</TableCell>
|
||||
<TableCell>
|
||||
<div className="flex gap-1">
|
||||
<Button
|
||||
variant="ghost"
|
||||
size="sm"
|
||||
onClick={() => onViewDetail(user)}
|
||||
>
|
||||
<Eye className="w-4 h-4" />
|
||||
</Button>
|
||||
{onEdit && (
|
||||
<Button
|
||||
variant="ghost"
|
||||
size="sm"
|
||||
onClick={() => onEdit(user)}
|
||||
>
|
||||
<Edit className="w-4 h-4" />
|
||||
</Button>
|
||||
)}
|
||||
{onResetPassword && (
|
||||
<Button
|
||||
variant="ghost"
|
||||
size="sm"
|
||||
onClick={() => onResetPassword(user)}
|
||||
>
|
||||
<Lock className="w-4 h-4" />
|
||||
</Button>
|
||||
)}
|
||||
{onToggleStatus && (
|
||||
<Button
|
||||
variant="ghost"
|
||||
size="sm"
|
||||
onClick={() => onToggleStatus(user)}
|
||||
>
|
||||
{user.isActive ? (
|
||||
<UserX className="w-4 h-4 text-orange-600" />
|
||||
) : (
|
||||
<UserCheck className="w-4 h-4 text-green-600" />
|
||||
)}
|
||||
</Button>
|
||||
)}
|
||||
{onDelete && !user.isSuperuser && (
|
||||
<Button
|
||||
variant="ghost"
|
||||
size="sm"
|
||||
onClick={() => onDelete(user)}
|
||||
>
|
||||
<Trash2 className="w-4 h-4 text-destructive" />
|
||||
</Button>
|
||||
)}
|
||||
</div>
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
))
|
||||
)}
|
||||
</TableBody>
|
||||
</Table>
|
||||
</Card>
|
||||
|
||||
{/* 分页 */}
|
||||
{pagination.total > 0 && (
|
||||
<div className="flex items-center justify-between">
|
||||
<div className="text-sm text-muted-foreground">
|
||||
显示第 {(pagination.page - 1) * pagination.size + 1} - {Math.min(pagination.page * pagination.size, pagination.total)} 条,共 {pagination.total} 条记录
|
||||
</div>
|
||||
<div className="flex items-center gap-2">
|
||||
<Button
|
||||
variant="outline"
|
||||
size="sm"
|
||||
onClick={() => onPageChange(pagination.page - 1)}
|
||||
disabled={!pagination.hasPrev}
|
||||
>
|
||||
上一页
|
||||
</Button>
|
||||
|
||||
<div className="flex items-center gap-1">
|
||||
<span className="text-sm text-muted-foreground">第</span>
|
||||
<div className="flex items-center">
|
||||
<input
|
||||
type="number"
|
||||
min={1}
|
||||
max={pagination.totalPages}
|
||||
value={pagination.page}
|
||||
onChange={(e) => {
|
||||
const newPage = parseInt(e.target.value);
|
||||
if (!isNaN(newPage)) {
|
||||
onPageChange(newPage);
|
||||
}
|
||||
}}
|
||||
className="w-16 h-8 text-center border rounded-md"
|
||||
/>
|
||||
</div>
|
||||
<span className="text-sm text-muted-foreground">/ {pagination.totalPages} 页</span>
|
||||
</div>
|
||||
|
||||
<Button
|
||||
variant="outline"
|
||||
size="sm"
|
||||
onClick={() => onPageChange(pagination.page + 1)}
|
||||
disabled={!pagination.hasNext}
|
||||
>
|
||||
下一页
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
@@ -1,62 +0,0 @@
|
||||
'use client';
|
||||
|
||||
import React from 'react';
|
||||
import { Card } from '@/components/ui/card';
|
||||
import { Input } from '@/components/ui/input';
|
||||
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select';
|
||||
import { Search } from 'lucide-react';
|
||||
import { UserFilters } from '../types';
|
||||
|
||||
interface UserManagementFiltersProps {
|
||||
filters: UserFilters;
|
||||
onSearchChange: (value: string) => void;
|
||||
onStatusFilterChange: (value: string) => void;
|
||||
onTypeFilterChange: (value: string) => void;
|
||||
}
|
||||
|
||||
export function UserManagementFilters({
|
||||
filters,
|
||||
onSearchChange,
|
||||
onStatusFilterChange,
|
||||
onTypeFilterChange
|
||||
}: UserManagementFiltersProps) {
|
||||
|
||||
return (
|
||||
<Card className="p-4">
|
||||
<div className="flex gap-4">
|
||||
<div className="flex-1">
|
||||
<div className="relative">
|
||||
<Search className="absolute left-3 top-1/2 transform -translate-y-1/2 w-4 h-4 text-muted-foreground" />
|
||||
<Input
|
||||
placeholder="搜索用户名、姓名、电话、企业..."
|
||||
value={filters.searchKeyword}
|
||||
onChange={(e) => onSearchChange(e.target.value)}
|
||||
className="pl-10"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<Select value={filters.typeFilter} onValueChange={onTypeFilterChange}>
|
||||
<SelectTrigger className="w-40">
|
||||
<SelectValue />
|
||||
</SelectTrigger>
|
||||
<SelectContent>
|
||||
<SelectItem value="all">全部类型</SelectItem>
|
||||
<SelectItem value="super_admin">超级管理员</SelectItem>
|
||||
<SelectItem value="enterprise_admin">企业管理员</SelectItem>
|
||||
<SelectItem value="employee">员工</SelectItem>
|
||||
</SelectContent>
|
||||
</Select>
|
||||
<Select value={filters.statusFilter} onValueChange={onStatusFilterChange}>
|
||||
<SelectTrigger className="w-40">
|
||||
<SelectValue />
|
||||
</SelectTrigger>
|
||||
<SelectContent>
|
||||
<SelectItem value="all">全部状态</SelectItem>
|
||||
<SelectItem value="active">正常</SelectItem>
|
||||
<SelectItem value="frozen">已冻结</SelectItem>
|
||||
</SelectContent>
|
||||
</Select>
|
||||
</div>
|
||||
</Card>
|
||||
);
|
||||
}
|
||||
@@ -8,6 +8,11 @@
|
||||
import { getAuthToken } from "@/utils/token";
|
||||
import {
|
||||
listSystemUsersApiV1UsersSystemUsersGet,
|
||||
createSystemUserApiV1UsersSystemUsersPost,
|
||||
getSystemUserApiV1UsersSystemUsersUserIdGet,
|
||||
activateSystemUserApiV1UsersSystemUsersUserIdActivatePost,
|
||||
deactivateSystemUserApiV1UsersSystemUsersUserIdDeactivatePost,
|
||||
deleteSystemUserApiV1UsersSystemUsersUserIdDelete,
|
||||
} from "@/lib/api/sdk.gen";
|
||||
|
||||
// API返回的用户数据类型
|
||||
@@ -191,4 +196,359 @@ export interface PaginationState {
|
||||
totalPages: number;
|
||||
hasNext: boolean;
|
||||
hasPrev: boolean;
|
||||
}
|
||||
|
||||
// 创建用户请求参数接口
|
||||
export interface CreateUserRequest {
|
||||
email: string;
|
||||
username: string;
|
||||
full_name: string;
|
||||
phone: string;
|
||||
password: string;
|
||||
is_superuser: boolean;
|
||||
tenant_id?: string; // 系统管理员不传,企业管理员必传
|
||||
}
|
||||
|
||||
// 创建用户响应数据类型
|
||||
export interface CreateUserResponse {
|
||||
id: string;
|
||||
email: string;
|
||||
username: string;
|
||||
full_name: string;
|
||||
phone: string;
|
||||
is_superuser: boolean;
|
||||
tenant_id?: string;
|
||||
is_active: boolean;
|
||||
created_at: string;
|
||||
updated_at: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* 创建系统用户(系统管理员或企业管理员)
|
||||
*
|
||||
* @param userData 用户创建数据
|
||||
* @returns 创建成功的用户数据
|
||||
*/
|
||||
export async function createUser(userData: CreateUserRequest): Promise<CreateUserResponse> {
|
||||
try {
|
||||
console.log(`[API] createUser 创建用户:`, userData);
|
||||
|
||||
// 获取认证token
|
||||
const token = getAuthToken();
|
||||
|
||||
// 构建请求参数
|
||||
const requestData: any = {
|
||||
email: userData.email,
|
||||
username: userData.username,
|
||||
full_name: userData.full_name,
|
||||
phone: userData.phone,
|
||||
password: userData.password,
|
||||
is_superuser: userData.is_superuser,
|
||||
};
|
||||
|
||||
// 只有企业管理员才传tenant_id
|
||||
if (userData.tenant_id) {
|
||||
requestData.tenant_id = userData.tenant_id;
|
||||
}
|
||||
|
||||
// 调用SDK API创建系统用户
|
||||
const response = await createSystemUserApiV1UsersSystemUsersPost({
|
||||
body: requestData,
|
||||
headers: token ? {
|
||||
'Authorization': `Bearer ${token}`,
|
||||
} : undefined,
|
||||
});
|
||||
|
||||
if (response.error) {
|
||||
// 处理API错误,提取错误信息
|
||||
const errorMessage = response.error.message || '创建用户失败';
|
||||
console.error('[API] createUser 创建用户失败:', response.error);
|
||||
throw new Error(errorMessage);
|
||||
}
|
||||
|
||||
const data = response.data as any;
|
||||
console.log('[API] createUser 创建用户成功:', data);
|
||||
|
||||
// 返回创建成功的用户数据
|
||||
return {
|
||||
id: data.id,
|
||||
email: data.email,
|
||||
username: data.username,
|
||||
full_name: data.full_name,
|
||||
phone: data.phone,
|
||||
is_superuser: data.is_superuser,
|
||||
tenant_id: data.tenant_id,
|
||||
is_active: data.is_active,
|
||||
created_at: data.created_at,
|
||||
updated_at: data.updated_at,
|
||||
};
|
||||
|
||||
} catch (error) {
|
||||
console.error('[API] createUser 创建用户异常:', error);
|
||||
|
||||
// 如果是已知错误,直接抛出
|
||||
if (error instanceof Error) {
|
||||
throw error;
|
||||
}
|
||||
|
||||
// 未知错误包装成标准错误格式
|
||||
throw new Error('创建用户失败,请稍后重试');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 验证用户创建数据
|
||||
*
|
||||
* @param userData 用户数据
|
||||
* @returns 验证结果
|
||||
*/
|
||||
export function validateUserData(userData: CreateUserRequest): { isValid: boolean; errors: string[] } {
|
||||
const errors: string[] = [];
|
||||
|
||||
// 邮箱验证
|
||||
if (!userData.email) {
|
||||
errors.push('邮箱不能为空');
|
||||
} else if (!/^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(userData.email)) {
|
||||
errors.push('邮箱格式不正确');
|
||||
}
|
||||
|
||||
// 用户名验证
|
||||
if (!userData.username) {
|
||||
errors.push('用户名不能为空');
|
||||
} else if (userData.username.length < 3) {
|
||||
errors.push('用户名长度至少3位');
|
||||
}
|
||||
|
||||
// 姓名验证
|
||||
if (!userData.full_name) {
|
||||
errors.push('姓名不能为空');
|
||||
}
|
||||
|
||||
// 电话验证
|
||||
if (!userData.phone) {
|
||||
errors.push('电话不能为空');
|
||||
} else if (!/^1[3-9]\d{9}$/.test(userData.phone)) {
|
||||
errors.push('请输入正确的手机号码');
|
||||
}
|
||||
|
||||
// 密码验证
|
||||
if (!userData.password) {
|
||||
errors.push('密码不能为空');
|
||||
} else if (userData.password.length < 6) {
|
||||
errors.push('密码长度至少6位');
|
||||
}
|
||||
|
||||
// 企业管理员需要tenant_id
|
||||
if (!userData.is_superuser && !userData.tenant_id) {
|
||||
errors.push('企业管理员必须选择所属企业');
|
||||
}
|
||||
|
||||
return {
|
||||
isValid: errors.length === 0,
|
||||
errors
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取用户详情信息
|
||||
*
|
||||
* @param userId 用户ID
|
||||
* @returns 用户详情数据
|
||||
*/
|
||||
export async function fetchUserDetails(userId: string): Promise<UserData> {
|
||||
try {
|
||||
console.log(`[API] fetchUserDetails 获取用户详情: ${userId}`);
|
||||
|
||||
// 获取认证token
|
||||
const token = getAuthToken();
|
||||
|
||||
// 调用SDK API获取用户详情
|
||||
const response = await getSystemUserApiV1UsersSystemUsersUserIdGet({
|
||||
path: {
|
||||
user_id: userId,
|
||||
},
|
||||
headers: token ? {
|
||||
'Authorization': `Bearer ${token}`,
|
||||
} : undefined,
|
||||
});
|
||||
|
||||
if (response.error) {
|
||||
const errorMessage = response.error.message || '获取用户详情失败';
|
||||
console.error('[API] fetchUserDetails 获取用户详情失败:', response.error);
|
||||
throw new Error(errorMessage);
|
||||
}
|
||||
|
||||
const data = response.data as any;
|
||||
console.log('[API] fetchUserDetails 获取用户详情成功:', data);
|
||||
|
||||
// 返回用户详情数据
|
||||
return {
|
||||
id: data.id,
|
||||
tenant_id: data.tenant_id,
|
||||
email: data.email,
|
||||
username: data.username,
|
||||
full_name: data.full_name,
|
||||
phone: data.phone,
|
||||
is_active: data.is_active,
|
||||
status: data.is_active ? 'active' : 'inactive',
|
||||
is_superuser: data.is_superuser,
|
||||
is_verified: data.is_verified,
|
||||
created_at: data.created_at,
|
||||
updated_at: data.updated_at,
|
||||
last_login_at: data.last_login_at,
|
||||
avatar_url: data.avatar_url,
|
||||
bio: data.bio,
|
||||
display_name: data.display_name,
|
||||
department_id: data.department_id,
|
||||
department_name: data.department_name,
|
||||
scope: data.scope || 'system',
|
||||
company_name: data.company_name,
|
||||
};
|
||||
|
||||
} catch (error) {
|
||||
console.error('[API] fetchUserDetails 获取用户详情异常:', error);
|
||||
|
||||
// 如果是已知错误,直接抛出
|
||||
if (error instanceof Error) {
|
||||
throw error;
|
||||
}
|
||||
|
||||
// 未知错误包装成标准错误格式
|
||||
throw new Error('获取用户详情失败,请稍后重试');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 激活系统用户
|
||||
*
|
||||
* @param userId 用户ID
|
||||
* @returns 操作结果
|
||||
*/
|
||||
export async function activateUser(userId: string): Promise<void> {
|
||||
try {
|
||||
console.log(`[API] activateUser 激活用户: ${userId}`);
|
||||
|
||||
// 获取认证token
|
||||
const token = getAuthToken();
|
||||
|
||||
// 调用SDK API激活用户
|
||||
const response = await activateSystemUserApiV1UsersSystemUsersUserIdActivatePost({
|
||||
path: {
|
||||
user_id: userId,
|
||||
},
|
||||
headers: token ? {
|
||||
'Authorization': `Bearer ${token}`,
|
||||
} : undefined,
|
||||
});
|
||||
|
||||
if (response.error) {
|
||||
// 处理API错误,提取错误信息
|
||||
const errorMessage = response.error.message || '激活用户失败';
|
||||
console.error('[API] activateUser 激活用户失败:', response.error);
|
||||
throw new Error(errorMessage);
|
||||
}
|
||||
|
||||
console.log('[API] activateUser 激活用户成功:', userId);
|
||||
|
||||
} catch (error) {
|
||||
console.error('[API] activateUser 激活用户异常:', error);
|
||||
|
||||
// 如果是已知错误,直接抛出
|
||||
if (error instanceof Error) {
|
||||
throw error;
|
||||
}
|
||||
|
||||
// 未知错误包装成标准错误格式
|
||||
throw new Error('激活用户失败,请稍后重试');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 停用系统用户
|
||||
*
|
||||
* @param userId 用户ID
|
||||
* @returns 操作结果
|
||||
*/
|
||||
export async function deactivateUser(userId: string): Promise<void> {
|
||||
try {
|
||||
console.log(`[API] deactivateUser 停用用户: ${userId}`);
|
||||
|
||||
// 获取认证token
|
||||
const token = getAuthToken();
|
||||
|
||||
// 调用SDK API停用用户
|
||||
const response = await deactivateSystemUserApiV1UsersSystemUsersUserIdDeactivatePost({
|
||||
path: {
|
||||
user_id: userId,
|
||||
},
|
||||
headers: token ? {
|
||||
'Authorization': `Bearer ${token}`,
|
||||
} : undefined,
|
||||
});
|
||||
|
||||
if (response.error) {
|
||||
// 处理API错误,提取错误信息
|
||||
const errorMessage = response.error.message || '停用用户失败';
|
||||
console.error('[API] deactivateUser 停用用户失败:', response.error);
|
||||
throw new Error(errorMessage);
|
||||
}
|
||||
|
||||
console.log('[API] deactivateUser 停用用户成功:', userId);
|
||||
|
||||
} catch (error) {
|
||||
console.error('[API] deactivateUser 停用用户异常:', error);
|
||||
|
||||
// 如果是已知错误,直接抛出
|
||||
if (error instanceof Error) {
|
||||
throw error;
|
||||
}
|
||||
|
||||
// 未知错误包装成标准错误格式
|
||||
throw new Error('停用用户失败,请稍后重试');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除系统用户
|
||||
*
|
||||
* @param userId 用户ID
|
||||
* @returns 操作结果
|
||||
*/
|
||||
export async function deleteUser(userId: string): Promise<void> {
|
||||
try {
|
||||
console.log(`[API] deleteUser 删除用户: ${userId}`);
|
||||
|
||||
// 获取认证token
|
||||
const token = getAuthToken();
|
||||
|
||||
// 调用SDK API删除用户
|
||||
const response = await deleteSystemUserApiV1UsersSystemUsersUserIdDelete({
|
||||
path: {
|
||||
user_id: userId,
|
||||
},
|
||||
headers: token ? {
|
||||
'Authorization': `Bearer ${token}`,
|
||||
} : undefined,
|
||||
});
|
||||
|
||||
if (response.error) {
|
||||
// 处理API错误,提取错误信息
|
||||
const errorMessage = response.error.message || '删除用户失败';
|
||||
console.error('[API] deleteUser 删除用户失败:', response.error);
|
||||
throw new Error(errorMessage);
|
||||
}
|
||||
|
||||
console.log('[API] deleteUser 删除用户成功:', userId);
|
||||
|
||||
} catch (error) {
|
||||
console.error('[API] deleteUser 删除用户异常:', error);
|
||||
|
||||
// 如果是已知错误,直接抛出
|
||||
if (error instanceof Error) {
|
||||
throw error;
|
||||
}
|
||||
|
||||
// 未知错误包装成标准错误格式
|
||||
throw new Error('删除用户失败,请稍后重试');
|
||||
}
|
||||
}
|
||||
@@ -9,13 +9,23 @@
|
||||
import { useReducer, useEffect, useState, useCallback, useMemo,useRef } from 'react';
|
||||
import { toast } from 'sonner';
|
||||
import { Button } from '@/components/ui/button';
|
||||
import { Eye, Edit, Lock, UserX, UserCheck } from 'lucide-react';
|
||||
import { Eye, Edit, Trash2, UserX, UserCheck } from 'lucide-react';
|
||||
import {
|
||||
AlertDialog,
|
||||
AlertDialogAction,
|
||||
AlertDialogCancel,
|
||||
AlertDialogContent,
|
||||
AlertDialogDescription,
|
||||
AlertDialogFooter,
|
||||
AlertDialogHeader,
|
||||
AlertDialogTitle,
|
||||
} from '@/components/ui/alert-dialog';
|
||||
import { UserDetailDialog } from './components/UserDetailDialog';
|
||||
import { AddUserModal } from './components/AddUserModal';
|
||||
import { EditUserModal } from './components/EditUserModal';
|
||||
import { SearchFormPagination, SearchFieldConfig, TableColumnConfig } from '@/components/common/searchFormPagination';
|
||||
|
||||
import { fetchUsers, transformUserData, UsersQueryParams, User, UsersApiResponse, PaginationState } from './components/userManagementApi';
|
||||
import { fetchUsers, transformUserData, UsersQueryParams, User, UsersApiResponse, PaginationState, activateUser, deactivateUser, deleteUser } from './components/userManagementApi';
|
||||
import { UserManagementHeader } from './components/UserManagementHeader';
|
||||
import { UserManagementStatsCards } from './components/UserManagementStatsCards';
|
||||
import { UserFilters } from './types';
|
||||
@@ -113,6 +123,12 @@ const initialState: UserManagementState = {
|
||||
export default function TenantUserManagementPage() {
|
||||
const [state, dispatch] = useReducer(userManagementReducer, initialState);
|
||||
|
||||
// 弹窗状态管理
|
||||
const [statusDialogOpen, setStatusDialogOpen] = useState(false);
|
||||
const [deleteDialogOpen, setDeleteDialogOpen] = useState(false);
|
||||
const [actionUser, setActionUser] = useState<User | null>(null);
|
||||
const [actionType, setActionType] = useState<'activate' | 'deactivate'>('activate');
|
||||
|
||||
// 搜索字段配置
|
||||
const searchFields: SearchFieldConfig[] = useMemo(() => [
|
||||
{
|
||||
@@ -274,10 +290,11 @@ export default function TenantUserManagementPage() {
|
||||
<Button
|
||||
variant="ghost"
|
||||
size="sm"
|
||||
onClick={() => handleResetPassword(user)}
|
||||
title="重置密码"
|
||||
onClick={() => handleDeleteUser(user)}
|
||||
title="删除用户"
|
||||
className="text-red-600 hover:text-red-700 hover:bg-red-50 dark:hover:bg-red-950"
|
||||
>
|
||||
<Lock className="w-4 h-4" />
|
||||
<Trash2 className="w-4 h-4" />
|
||||
</Button>
|
||||
</div>
|
||||
),
|
||||
@@ -487,18 +504,63 @@ export default function TenantUserManagementPage() {
|
||||
loadUsers({});
|
||||
}, [loadUsers]);
|
||||
|
||||
// 切换用户状态
|
||||
// 切换用户状态 - 打开确认弹窗
|
||||
const handleToggleStatus = (user: User) => {
|
||||
const newStatus = !user.isActive;
|
||||
const statusText = newStatus ? '激活' : '停用';
|
||||
if (!confirm(`确定要${statusText}用户 ${user.fullName || user.username} 吗?`)) return;
|
||||
toast.info(`${statusText}功能开发中...`);
|
||||
setActionUser(user);
|
||||
setActionType(newStatus ? 'activate' : 'deactivate');
|
||||
setStatusDialogOpen(true);
|
||||
};
|
||||
|
||||
// 重置密码
|
||||
const handleResetPassword = (user: User) => {
|
||||
if (!confirm(`确定要重置用户 ${user.fullName || user.username} 的密码吗?`)) return;
|
||||
toast.info('重置密码功能开发中...');
|
||||
// 执行状态切换
|
||||
const handleStatusConfirm = async () => {
|
||||
if (!actionUser) return;
|
||||
|
||||
try {
|
||||
if (actionType === 'activate') {
|
||||
await activateUser(actionUser.id);
|
||||
toast.success(`用户 ${actionUser.fullName || actionUser.username} 已激活`);
|
||||
} else {
|
||||
await deactivateUser(actionUser.id);
|
||||
toast.success(`用户 ${actionUser.fullName || actionUser.username} 已停用`);
|
||||
}
|
||||
|
||||
// 刷新数据
|
||||
refreshData();
|
||||
} catch (error) {
|
||||
console.error(`${actionType === 'activate' ? '激活' : '停用'}用户失败:`, error);
|
||||
const errorMessage = error instanceof Error ? error.message : `${actionType === 'activate' ? '激活' : '停用'}用户失败,请重试`;
|
||||
toast.error(errorMessage);
|
||||
} finally {
|
||||
setStatusDialogOpen(false);
|
||||
setActionUser(null);
|
||||
}
|
||||
};
|
||||
|
||||
// 删除用户 - 打开确认弹窗
|
||||
const handleDeleteUser = (user: User) => {
|
||||
setActionUser(user);
|
||||
setDeleteDialogOpen(true);
|
||||
};
|
||||
|
||||
// 执行删除用户
|
||||
const handleDeleteConfirm = async () => {
|
||||
if (!actionUser) return;
|
||||
|
||||
try {
|
||||
await deleteUser(actionUser.id);
|
||||
toast.success(`用户 ${actionUser.fullName || actionUser.username} 已删除`);
|
||||
|
||||
// 刷新数据
|
||||
refreshData();
|
||||
} catch (error) {
|
||||
console.error('删除用户失败:', error);
|
||||
const errorMessage = error instanceof Error ? error.message : '删除用户失败,请重试';
|
||||
toast.error(errorMessage);
|
||||
} finally {
|
||||
setDeleteDialogOpen(false);
|
||||
setActionUser(null);
|
||||
}
|
||||
};
|
||||
|
||||
// 统计数据计算
|
||||
@@ -589,6 +651,58 @@ export default function TenantUserManagementPage() {
|
||||
user={state.selectedUser}
|
||||
onSuccess={refreshData}
|
||||
/>
|
||||
|
||||
{/* 状态切换确认对话框 */}
|
||||
<AlertDialog open={statusDialogOpen} onOpenChange={setStatusDialogOpen}>
|
||||
<AlertDialogContent>
|
||||
<AlertDialogHeader>
|
||||
<AlertDialogTitle>
|
||||
{actionType === 'activate' ? '激活用户' : '停用用户'}
|
||||
</AlertDialogTitle>
|
||||
<AlertDialogDescription>
|
||||
确定要{actionType === 'activate' ? '激活' : '停用'}用户
|
||||
<span className="font-semibold">
|
||||
{actionUser?.fullName || actionUser?.username}
|
||||
</span>
|
||||
吗?此操作将影响该用户的登录权限。
|
||||
</AlertDialogDescription>
|
||||
</AlertDialogHeader>
|
||||
<AlertDialogFooter>
|
||||
<AlertDialogCancel>取消</AlertDialogCancel>
|
||||
<AlertDialogAction
|
||||
onClick={handleStatusConfirm}
|
||||
className={actionType === 'activate' ? 'bg-green-600 hover:bg-green-700' : 'bg-orange-600 hover:bg-orange-700'}
|
||||
>
|
||||
确认{actionType === 'activate' ? '激活' : '停用'}
|
||||
</AlertDialogAction>
|
||||
</AlertDialogFooter>
|
||||
</AlertDialogContent>
|
||||
</AlertDialog>
|
||||
|
||||
{/* 删除用户确认对话框 */}
|
||||
<AlertDialog open={deleteDialogOpen} onOpenChange={setDeleteDialogOpen}>
|
||||
<AlertDialogContent>
|
||||
<AlertDialogHeader>
|
||||
<AlertDialogTitle className="text-red-600">删除用户</AlertDialogTitle>
|
||||
<AlertDialogDescription>
|
||||
确定要删除用户
|
||||
<span className="font-semibold text-red-600">
|
||||
{actionUser?.fullName || actionUser?.username}
|
||||
</span>
|
||||
吗?此操作不可恢复,该用户的所有数据将被永久删除。
|
||||
</AlertDialogDescription>
|
||||
</AlertDialogHeader>
|
||||
<AlertDialogFooter>
|
||||
<AlertDialogCancel>取消</AlertDialogCancel>
|
||||
<AlertDialogAction
|
||||
onClick={handleDeleteConfirm}
|
||||
className="bg-red-600 hover:bg-red-700"
|
||||
>
|
||||
确认删除
|
||||
</AlertDialogAction>
|
||||
</AlertDialogFooter>
|
||||
</AlertDialogContent>
|
||||
</AlertDialog>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
@@ -21,7 +21,7 @@ import {
|
||||
Square
|
||||
} from 'lucide-react';
|
||||
import { SpatialAnalysisState, SpatialAnalysisAction, AnalysisResult } from './spatialAnalysisReducer';
|
||||
import { useState, useEffect } from 'react';
|
||||
import { useMemo } from 'react';
|
||||
import BatchAnalysisManager from './batchAnalysisService';
|
||||
|
||||
interface BatchEvaluationPanelProps {
|
||||
@@ -30,11 +30,7 @@ interface BatchEvaluationPanelProps {
|
||||
}
|
||||
|
||||
export default function BatchEvaluationPanel({ state, dispatch }: BatchEvaluationPanelProps) {
|
||||
const [batchManager, setBatchManager] = useState<BatchAnalysisManager | null>(null);
|
||||
|
||||
useEffect(() => {
|
||||
setBatchManager(new BatchAnalysisManager(dispatch));
|
||||
}, [dispatch]);
|
||||
const batchManager = useMemo(() => new BatchAnalysisManager(dispatch), [dispatch]);
|
||||
|
||||
const totalWeight = Math.round(
|
||||
(state.weightConfig.soil + state.weightConfig.climate +
|
||||
@@ -53,19 +49,10 @@ export default function BatchEvaluationPanel({ state, dispatch }: BatchEvaluatio
|
||||
return;
|
||||
}
|
||||
|
||||
if (!batchManager) {
|
||||
toast.error('批量分析服务未初始化');
|
||||
return;
|
||||
}
|
||||
|
||||
try {
|
||||
// 创建批量分析任务
|
||||
const taskName = `地块适宜性批量分析_${new Date().toLocaleString('zh-CN')}`;
|
||||
|
||||
// 固定分析68个地块
|
||||
const totalFields = 68;
|
||||
const blockIds = Array.from({ length: totalFields }, (_, i) => `field-${i + 1}`);
|
||||
|
||||
// 开始批量分析
|
||||
await batchManager.startBatchAnalysis(taskName, enabledFactors, state.weightConfig);
|
||||
|
||||
|
||||
@@ -8,12 +8,9 @@ import { toast } from 'sonner';
|
||||
import {
|
||||
Brain,
|
||||
Settings,
|
||||
Eye,
|
||||
EyeOff,
|
||||
CheckCircle2,
|
||||
XCircle,
|
||||
Target,
|
||||
Droplet,
|
||||
Sun,
|
||||
Mountain,
|
||||
Building,
|
||||
|
||||
@@ -11,11 +11,9 @@ import {
|
||||
DialogContent,
|
||||
DialogHeader,
|
||||
DialogTitle,
|
||||
DialogTrigger,
|
||||
} from '@/components/ui/dialog';
|
||||
import {
|
||||
Settings,
|
||||
Sliders,
|
||||
CheckCircle,
|
||||
XCircle,
|
||||
Info
|
||||
@@ -209,7 +207,7 @@ export default function FactorConfiguration({ state, dispatch, isDialog = false
|
||||
<li>• 启用/禁用因子来控制评价维度,禁用的因子不参与计算</li>
|
||||
<li>• 土壤条件、气候条件、地形条件、基础设施为四大评价维度</li>
|
||||
<li>• 可以根据具体需求调整各因子的权重,建议咨询农业专家</li>
|
||||
<li>• 点击"重置默认"可以恢复到推荐的标准权重配置</li>
|
||||
<li>• 点击“重置默认”可以恢复到推荐的标准权重配置</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -11,7 +11,6 @@ import {
|
||||
SlidersHorizontal,
|
||||
TrendingUp,
|
||||
Target,
|
||||
Droplet,
|
||||
Sun,
|
||||
Mountain,
|
||||
Building,
|
||||
|
||||
@@ -10,7 +10,9 @@ interface SpatialDistributionProps {
|
||||
dispatch: React.Dispatch<SpatialAnalysisAction>;
|
||||
}
|
||||
|
||||
export default function SpatialDistribution({ state, dispatch }: SpatialDistributionProps) {
|
||||
export default function SpatialDistribution({ state }: SpatialDistributionProps) {
|
||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||
const { dispatch } = { dispatch: null }; // 保留dispatch参数以保持接口一致性,但当前未使用
|
||||
const getScoreColor = (score: number) => {
|
||||
if (score >= 80) return 'bg-green-500';
|
||||
if (score >= 60) return 'bg-yellow-500';
|
||||
|
||||
@@ -148,7 +148,7 @@ export default function WeightConfiguration({ state, dispatch, isDialog = false
|
||||
</div>
|
||||
<Progress value={getTotalWeight() * 100} className="h-2 mt-1" />
|
||||
<p className="text-xs text-red-600 mt-1">
|
||||
权重总和不为100%,建议点击"自动平衡"调整
|
||||
权重总和不为100%,建议点击“自动平衡”调整
|
||||
</p>
|
||||
</div>
|
||||
)}
|
||||
|
||||
@@ -1,10 +1,26 @@
|
||||
'use client';
|
||||
|
||||
import { SpatialAnalysisState, SpatialAnalysisAction, LandBlock, AnalysisResult, BatchAnalysisTask, EvaluationFactor } from './spatialAnalysisReducer';
|
||||
import { SpatialAnalysisAction, LandBlock, AnalysisResult, BatchAnalysisTask, EvaluationFactor } from './spatialAnalysisReducer';
|
||||
|
||||
// 因子数据类型定义
|
||||
interface FactorData {
|
||||
soil: unknown;
|
||||
climate: unknown;
|
||||
topography: unknown;
|
||||
infrastructure: unknown;
|
||||
}
|
||||
|
||||
// 权重配置类型
|
||||
interface WeightConfig {
|
||||
soil: number;
|
||||
climate: number;
|
||||
topography: number;
|
||||
infrastructure: number;
|
||||
}
|
||||
|
||||
// 空间分析服务接口
|
||||
interface SpatialAnalysisService {
|
||||
analyzeBlock(block: LandBlock, factors: EvaluationFactor[], weights: any): Promise<{
|
||||
analyzeBlock(block: LandBlock, factors: EvaluationFactor[], weights: WeightConfig): Promise<{
|
||||
success: boolean;
|
||||
suitabilityIndex: number;
|
||||
result?: AnalysisResult;
|
||||
@@ -14,7 +30,7 @@ interface SpatialAnalysisService {
|
||||
|
||||
// 模拟空间分析服务
|
||||
class MockSpatialAnalysisService implements SpatialAnalysisService {
|
||||
async analyzeBlock(block: LandBlock, factors: EvaluationFactor[], weights: any): Promise<{
|
||||
async analyzeBlock(block: LandBlock, factors: EvaluationFactor[], weights: WeightConfig): Promise<{
|
||||
success: boolean;
|
||||
suitabilityIndex: number;
|
||||
result?: AnalysisResult;
|
||||
@@ -33,10 +49,10 @@ class MockSpatialAnalysisService implements SpatialAnalysisService {
|
||||
const factorData = await this.readFactorData(block);
|
||||
|
||||
// 进行加权计算
|
||||
const suitabilityIndex = this.calculateWeightedScore(factorData, factors, weights);
|
||||
const suitabilityIndex = this.calculateWeightedScore(factorData, weights);
|
||||
|
||||
// 生成详细分析结果
|
||||
const result = this.generateAnalysisResult(block, factorData, suitabilityIndex, weights);
|
||||
const result = this.generateAnalysisResult(block, factorData, suitabilityIndex);
|
||||
|
||||
return {
|
||||
success: true,
|
||||
@@ -52,7 +68,7 @@ class MockSpatialAnalysisService implements SpatialAnalysisService {
|
||||
}
|
||||
}
|
||||
|
||||
private async readFactorData(block: LandBlock): Promise<any> {
|
||||
private async readFactorData(block: LandBlock): Promise<unknown> {
|
||||
// 模拟从各种数据源读取因子数据
|
||||
await new Promise(resolve => setTimeout(resolve, 200));
|
||||
|
||||
@@ -120,45 +136,46 @@ class MockSpatialAnalysisService implements SpatialAnalysisService {
|
||||
return scoreMap[irrigationType] || 0.70;
|
||||
}
|
||||
|
||||
private calculateWeightedScore(factorData: any, factors: EvaluationFactor[], weights: any): number {
|
||||
private calculateWeightedScore(factorData: unknown, weights: WeightConfig): number {
|
||||
let totalScore = 0;
|
||||
let totalWeight = 0;
|
||||
|
||||
// 土壤因子得分计算
|
||||
const soilWeight = weights.soil || 0.35;
|
||||
const soilScore = this.calculateSoilScore(factorData.soilFactors, factors);
|
||||
const soilScore = this.calculateSoilScore((factorData as { soilFactors: unknown }).soilFactors);
|
||||
totalScore += soilScore * soilWeight;
|
||||
totalWeight += soilWeight;
|
||||
|
||||
// 气候因子得分计算
|
||||
const climateWeight = weights.climate || 0.30;
|
||||
const climateScore = this.calculateClimateScore(factorData.climateFactors, factors);
|
||||
const climateScore = this.calculateClimateScore((factorData as { climateFactors: unknown }).climateFactors);
|
||||
totalScore += climateScore * climateWeight;
|
||||
totalWeight += climateWeight;
|
||||
|
||||
// 地形因子得分计算
|
||||
const topographyWeight = weights.topography || 0.20;
|
||||
const topographyScore = this.calculateTopographyScore(factorData.topographyFactors, factors);
|
||||
const topographyScore = this.calculateTopographyScore((factorData as { topographyFactors: unknown }).topographyFactors);
|
||||
totalScore += topographyScore * topographyWeight;
|
||||
totalWeight += topographyWeight;
|
||||
|
||||
// 基础设施因子得分计算
|
||||
const infrastructureWeight = weights.infrastructure || 0.15;
|
||||
const infrastructureScore = this.calculateInfrastructureScore(factorData.infrastructureFactors, factors);
|
||||
const infrastructureScore = this.calculateInfrastructureScore((factorData as { infrastructureFactors: unknown }).infrastructureFactors);
|
||||
totalScore += infrastructureScore * infrastructureWeight;
|
||||
totalWeight += infrastructureWeight;
|
||||
|
||||
return Math.round(totalWeight > 0 ? (totalScore / totalWeight) * 100 : 0);
|
||||
}
|
||||
|
||||
private calculateSoilScore(soilFactors: any, factors: EvaluationFactor[]): number {
|
||||
private calculateSoilScore(soilFactors: unknown): number {
|
||||
let score = 0;
|
||||
let count = 0;
|
||||
|
||||
// pH值评分
|
||||
if (soilFactors.ph >= 6.0 && soilFactors.ph <= 7.5) {
|
||||
const soilFactorsTyped = soilFactors as { ph: number; organicMatter: number; nitrogen: number; phosphorus: number; potassium: number };
|
||||
if (soilFactorsTyped.ph >= 6.0 && soilFactorsTyped.ph <= 7.5) {
|
||||
score += 90;
|
||||
} else if (soilFactors.ph >= 5.5 && soilFactors.ph <= 8.0) {
|
||||
} else if (soilFactorsTyped.ph >= 5.5 && soilFactorsTyped.ph <= 8.0) {
|
||||
score += 70;
|
||||
} else {
|
||||
score += 40;
|
||||
@@ -166,9 +183,9 @@ class MockSpatialAnalysisService implements SpatialAnalysisService {
|
||||
count++;
|
||||
|
||||
// 有机质评分
|
||||
if (soilFactors.organicMatter >= 2.5) {
|
||||
if (soilFactorsTyped.organicMatter >= 2.5) {
|
||||
score += 90;
|
||||
} else if (soilFactors.organicMatter >= 1.5) {
|
||||
} else if (soilFactorsTyped.organicMatter >= 1.5) {
|
||||
score += 70;
|
||||
} else {
|
||||
score += 45;
|
||||
@@ -176,21 +193,22 @@ class MockSpatialAnalysisService implements SpatialAnalysisService {
|
||||
count++;
|
||||
|
||||
// 养分评分 (NPK)
|
||||
const npkScore = Math.min(100, (soilFactors.nitrogen + soilFactors.phosphorus + soilFactors.potassium) / 3);
|
||||
const npkScore = Math.min(100, (soilFactorsTyped.nitrogen + soilFactorsTyped.phosphorus + soilFactorsTyped.potassium) / 3);
|
||||
score += npkScore;
|
||||
count++;
|
||||
|
||||
return count > 0 ? score / count : 50;
|
||||
}
|
||||
|
||||
private calculateClimateScore(climateFactors: any, factors: EvaluationFactor[]): number {
|
||||
private calculateClimateScore(climateFactors: unknown): number {
|
||||
let score = 0;
|
||||
let count = 0;
|
||||
|
||||
// 温度适宜性
|
||||
if (climateFactors.temperature >= 15 && climateFactors.temperature <= 25) {
|
||||
const climateFactorsTyped = climateFactors as { temperature: number; rainfall: number; sunlight: number };
|
||||
if (climateFactorsTyped.temperature >= 15 && climateFactorsTyped.temperature <= 25) {
|
||||
score += 90;
|
||||
} else if (climateFactors.temperature >= 10 && climateFactors.temperature <= 30) {
|
||||
} else if (climateFactorsTyped.temperature >= 10 && climateFactorsTyped.temperature <= 30) {
|
||||
score += 70;
|
||||
} else {
|
||||
score += 50;
|
||||
@@ -198,9 +216,9 @@ class MockSpatialAnalysisService implements SpatialAnalysisService {
|
||||
count++;
|
||||
|
||||
// 降雨适宜性
|
||||
if (climateFactors.rainfall >= 500 && climateFactors.rainfall <= 1000) {
|
||||
if (climateFactorsTyped.rainfall >= 500 && climateFactorsTyped.rainfall <= 1000) {
|
||||
score += 90;
|
||||
} else if (climateFactors.rainfall >= 300 && climateFactors.rainfall <= 1500) {
|
||||
} else if (climateFactorsTyped.rainfall >= 300 && climateFactorsTyped.rainfall <= 1500) {
|
||||
score += 70;
|
||||
} else {
|
||||
score += 45;
|
||||
@@ -208,9 +226,9 @@ class MockSpatialAnalysisService implements SpatialAnalysisService {
|
||||
count++;
|
||||
|
||||
// 日照充足性
|
||||
if (climateFactors.sunlight >= 2000) {
|
||||
if (climateFactorsTyped.sunlight >= 2000) {
|
||||
score += 90;
|
||||
} else if (climateFactors.sunlight >= 1600) {
|
||||
} else if (climateFactorsTyped.sunlight >= 1600) {
|
||||
score += 75;
|
||||
} else {
|
||||
score += 60;
|
||||
@@ -220,16 +238,17 @@ class MockSpatialAnalysisService implements SpatialAnalysisService {
|
||||
return count > 0 ? score / count : 50;
|
||||
}
|
||||
|
||||
private calculateTopographyScore(topographyFactors: any, factors: EvaluationFactor[]): number {
|
||||
private calculateTopographyScore(topographyFactors: unknown): number {
|
||||
let score = 0;
|
||||
let count = 0;
|
||||
|
||||
// 坡度评分
|
||||
if (topographyFactors.slope <= 3) {
|
||||
const topographyFactorsTyped = topographyFactors as { slope: number; elevation: number; drainageIndex: number };
|
||||
if (topographyFactorsTyped.slope <= 3) {
|
||||
score += 95;
|
||||
} else if (topographyFactors.slope <= 6) {
|
||||
} else if (topographyFactorsTyped.slope <= 6) {
|
||||
score += 80;
|
||||
} else if (topographyFactors.slope <= 15) {
|
||||
} else if (topographyFactorsTyped.slope <= 15) {
|
||||
score += 60;
|
||||
} else {
|
||||
score += 30;
|
||||
@@ -237,11 +256,11 @@ class MockSpatialAnalysisService implements SpatialAnalysisService {
|
||||
count++;
|
||||
|
||||
// 海拔适宜性
|
||||
if (topographyFactors.elevation <= 100) {
|
||||
if (topographyFactorsTyped.elevation <= 100) {
|
||||
score += 90;
|
||||
} else if (topographyFactors.elevation <= 300) {
|
||||
} else if (topographyFactorsTyped.elevation <= 300) {
|
||||
score += 80;
|
||||
} else if (topographyFactors.elevation <= 600) {
|
||||
} else if (topographyFactorsTyped.elevation <= 600) {
|
||||
score += 65;
|
||||
} else {
|
||||
score += 45;
|
||||
@@ -249,39 +268,51 @@ class MockSpatialAnalysisService implements SpatialAnalysisService {
|
||||
count++;
|
||||
|
||||
// 排水条件
|
||||
score += topographyFactors.drainageIndex * 100;
|
||||
score += topographyFactorsTyped.drainageIndex * 100;
|
||||
count++;
|
||||
|
||||
return count > 0 ? score / count : 50;
|
||||
}
|
||||
|
||||
private calculateInfrastructureScore(infrastructureFactors: any, factors: EvaluationFactor[]): number {
|
||||
private calculateInfrastructureScore(infrastructureFactors: unknown): number {
|
||||
let score = 0;
|
||||
let count = 0;
|
||||
|
||||
// 灌溉条件
|
||||
score += infrastructureFactors.irrigationScore * 100;
|
||||
const infrastructureFactorsTyped = infrastructureFactors as {
|
||||
irrigationScore: number;
|
||||
accessibility: number;
|
||||
powerSupply: boolean;
|
||||
waterSupply: boolean
|
||||
};
|
||||
score += infrastructureFactorsTyped.irrigationScore * 100;
|
||||
count++;
|
||||
|
||||
// 交通便利性
|
||||
score += infrastructureFactors.accessibility * 100;
|
||||
score += infrastructureFactorsTyped.accessibility * 100;
|
||||
count++;
|
||||
|
||||
// 基础设施完善度
|
||||
const infrastructureScore =
|
||||
(infrastructureFactors.powerSupply ? 50 : 0) +
|
||||
(infrastructureFactors.waterSupply ? 50 : 0);
|
||||
(infrastructureFactorsTyped.powerSupply ? 50 : 0) +
|
||||
(infrastructureFactorsTyped.waterSupply ? 50 : 0);
|
||||
score += infrastructureScore;
|
||||
count++;
|
||||
|
||||
return count > 0 ? score / count : 50;
|
||||
}
|
||||
|
||||
private generateAnalysisResult(block: LandBlock, factorData: any, suitabilityIndex: number, weights: any): AnalysisResult {
|
||||
const soilScore = this.calculateSoilScore(factorData.soilFactors, []);
|
||||
const climateScore = this.calculateClimateScore(factorData.climateFactors, []);
|
||||
const topographyScore = this.calculateTopographyScore(factorData.topographyFactors, []);
|
||||
const infrastructureScore = this.calculateInfrastructureScore(factorData.infrastructureFactors, []);
|
||||
private generateAnalysisResult(block: LandBlock, factorData: unknown, suitabilityIndex: number): AnalysisResult {
|
||||
const factorDataTyped = factorData as {
|
||||
soilFactors: unknown;
|
||||
climateFactors: unknown;
|
||||
topographyFactors: unknown;
|
||||
infrastructureFactors: unknown;
|
||||
};
|
||||
const soilScore = this.calculateSoilScore(factorDataTyped.soilFactors);
|
||||
const climateScore = this.calculateClimateScore(factorDataTyped.climateFactors);
|
||||
const topographyScore = this.calculateTopographyScore(factorDataTyped.topographyFactors);
|
||||
const infrastructureScore = this.calculateInfrastructureScore(factorDataTyped.infrastructureFactors);
|
||||
|
||||
// 生成作物推荐
|
||||
const recommendedCrops = this.generateCropRecommendations(block, factorData, suitabilityIndex);
|
||||
@@ -308,12 +339,12 @@ class MockSpatialAnalysisService implements SpatialAnalysisService {
|
||||
};
|
||||
}
|
||||
|
||||
private generateCropRecommendations(block: LandBlock, factorData: any, suitabilityIndex: number): any[] {
|
||||
private generateCropRecommendations(block: LandBlock, factorData: unknown, suitabilityIndex: number): unknown[] {
|
||||
// 简化的作物推荐逻辑
|
||||
const crops = [
|
||||
{ name: '小麦', suitabilityScore: Math.min(95, suitabilityIndex + Math.random() * 10 - 5) },
|
||||
{ name: '玉米', suitabilityScore: Math.min(95, suitabilityIndex + Math.random() * 15 - 5) },
|
||||
{ name: '水稻', suitabilityScore: factorData.climateFactors.rainfall > 800 ? Math.min(95, suitabilityIndex + Math.random() * 10) : Math.max(40, suitabilityIndex - 20) },
|
||||
{ name: '水稻', suitabilityScore: (factorData as { climateFactors: { rainfall: number } }).climateFactors.rainfall > 800 ? Math.min(95, suitabilityIndex + Math.random() * 10) : Math.max(40, suitabilityIndex - 20) },
|
||||
{ name: '大豆', suitabilityScore: Math.min(95, suitabilityIndex + Math.random() * 8 - 4) },
|
||||
{ name: '棉花', suitabilityScore: Math.min(95, suitabilityIndex + Math.random() * 12 - 6) }
|
||||
];
|
||||
@@ -339,37 +370,44 @@ class MockSpatialAnalysisService implements SpatialAnalysisService {
|
||||
.slice(0, 3);
|
||||
}
|
||||
|
||||
private generateRiskFactors(block: LandBlock, factorData: any, suitabilityIndex: number): string[] {
|
||||
private generateRiskFactors(block: LandBlock, factorData: unknown, suitabilityIndex: number): string[] {
|
||||
const risks = [];
|
||||
|
||||
if (suitabilityIndex < 40) {
|
||||
risks.push('综合条件较差,种植风险较高');
|
||||
}
|
||||
|
||||
if (factorData.soilFactors.ph < 6.0 || factorData.soilFactors.ph > 7.5) {
|
||||
const factorDataTyped = factorData as {
|
||||
soilFactors: { ph: number; organicMatter: number };
|
||||
topographyFactors: { slope: number };
|
||||
infrastructureFactors: { irrigationScore: number };
|
||||
climateFactors: { rainfall: number }
|
||||
};
|
||||
|
||||
if (factorDataTyped.soilFactors.ph < 6.0 || factorDataTyped.soilFactors.ph > 7.5) {
|
||||
risks.push('土壤pH值偏离理想范围');
|
||||
}
|
||||
|
||||
if (factorData.soilFactors.organicMatter < 1.5) {
|
||||
if (factorDataTyped.soilFactors.organicMatter < 1.5) {
|
||||
risks.push('土壤有机质含量偏低');
|
||||
}
|
||||
|
||||
if (factorData.topographyFactors.slope > 8) {
|
||||
if (factorDataTyped.topographyFactors.slope > 8) {
|
||||
risks.push('坡度较大,存在水土流失风险');
|
||||
}
|
||||
|
||||
if (factorData.infrastructureFactors.irrigationScore < 0.5) {
|
||||
if (factorDataTyped.infrastructureFactors.irrigationScore < 0.5) {
|
||||
risks.push('灌溉条件不足,依赖自然降水');
|
||||
}
|
||||
|
||||
if (factorData.climateFactors.rainfall < 400) {
|
||||
if (factorDataTyped.climateFactors.rainfall < 400) {
|
||||
risks.push('降雨量偏少,干旱风险较高');
|
||||
}
|
||||
|
||||
return risks.length > 0 ? risks : ['无明显风险因素'];
|
||||
}
|
||||
|
||||
private generateImprovementSuggestions(block: LandBlock, factorData: any, soilScore: number, climateScore: number, topographyScore: number, infrastructureScore: number): string[] {
|
||||
private generateImprovementSuggestions(block: LandBlock, factorData: unknown, soilScore: number, climateScore: number, topographyScore: number, infrastructureScore: number): string[] {
|
||||
const suggestions = [];
|
||||
|
||||
if (soilScore < 70) {
|
||||
@@ -392,7 +430,7 @@ class MockSpatialAnalysisService implements SpatialAnalysisService {
|
||||
suggestions.push('完善灌溉和排水系统');
|
||||
}
|
||||
|
||||
if (factorData.infrastructureFactors.accessibility < 0.6) {
|
||||
if ((factorData as { infrastructureFactors: { accessibility: number } }).infrastructureFactors.accessibility < 0.6) {
|
||||
suggestions.push('改善田间道路条件');
|
||||
}
|
||||
|
||||
@@ -415,7 +453,7 @@ export class BatchAnalysisManager {
|
||||
async startBatchAnalysis(
|
||||
taskName: string,
|
||||
factors: EvaluationFactor[],
|
||||
weightConfig: any
|
||||
weightConfig: WeightConfig
|
||||
): Promise<void> {
|
||||
if (this.isRunning) {
|
||||
throw new Error('已有分析任务正在运行');
|
||||
@@ -455,9 +493,6 @@ export class BatchAnalysisManager {
|
||||
|
||||
// 循环处理所有地块
|
||||
const results: AnalysisResult[] = [];
|
||||
let highSuitability = 0;
|
||||
let mediumSuitability = 0;
|
||||
let lowSuitability = 0;
|
||||
|
||||
for (let i = 0; i < totalFields; i++) {
|
||||
if (!this.isRunning) break; // 检查是否被取消
|
||||
@@ -501,16 +536,6 @@ export class BatchAnalysisManager {
|
||||
|
||||
if (analysisResult.success && analysisResult.result) {
|
||||
results.push(analysisResult.result);
|
||||
|
||||
// 统计适宜性等级
|
||||
const score = analysisResult.suitabilityIndex;
|
||||
if (score >= 80) {
|
||||
highSuitability++;
|
||||
} else if (score >= 60) {
|
||||
mediumSuitability++;
|
||||
} else {
|
||||
lowSuitability++;
|
||||
}
|
||||
}
|
||||
|
||||
// 更新任务统计
|
||||
|
||||
@@ -7,7 +7,6 @@ import { Badge } from '@/components/ui/badge';
|
||||
import { Progress } from '@/components/ui/progress';
|
||||
import {
|
||||
Database,
|
||||
Play,
|
||||
Download,
|
||||
Eye,
|
||||
AlertTriangle,
|
||||
@@ -68,7 +67,7 @@ export default function BatchEvaluationPage() {
|
||||
const totalWeight = factorWeights.reduce((sum, f) => sum + f.weight, 0);
|
||||
|
||||
// 模拟从空间分析服务读取地块因子数据
|
||||
const fetchFieldFactorsFromSpatialService = (fieldId: string): EvaluationFactor[] => {
|
||||
const fetchFieldFactorsFromSpatialService = (): EvaluationFactor[] => {
|
||||
return [
|
||||
{
|
||||
id: 'ph',
|
||||
@@ -214,7 +213,7 @@ export default function BatchEvaluationPage() {
|
||||
const fieldId = `field-${i + 1}`;
|
||||
const fieldName = `地块${String.fromCharCode(65 + (i % 26))}${Math.floor(i / 26) + 1}`;
|
||||
|
||||
const factors = fetchFieldFactorsFromSpatialService(fieldId);
|
||||
const factors = fetchFieldFactorsFromSpatialService();
|
||||
const scoredFactors = factors.map(factor => ({
|
||||
...factor,
|
||||
score: calculateFactorScore(factor.value, factor.optimalRange)
|
||||
|
||||
@@ -5,59 +5,40 @@
|
||||
|
||||
'use client';
|
||||
|
||||
import { useState, useEffect } from 'react';
|
||||
import { useState } from 'react';
|
||||
import { Card } from '@/components/ui/card';
|
||||
import { Button } from '@/components/ui/button';
|
||||
import { Badge } from '@/components/ui/badge';
|
||||
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select';
|
||||
import { Input } from '@/components/ui/input';
|
||||
import { Dialog, DialogContent, DialogHeader, DialogTitle, DialogDescription, DialogTrigger } from '@/components/ui/dialog';
|
||||
import { Dialog, DialogContent, DialogHeader, DialogTitle, DialogDescription } from '@/components/ui/dialog';
|
||||
import { Progress } from '@/components/ui/progress';
|
||||
import { Slider } from '@/components/ui/slider';
|
||||
import { Textarea } from '@/components/ui/textarea';
|
||||
import {
|
||||
Leaf,
|
||||
TrendingUp,
|
||||
Award,
|
||||
AlertTriangle,
|
||||
CheckCircle2,
|
||||
Play,
|
||||
Settings,
|
||||
Download,
|
||||
Eye,
|
||||
Calculator,
|
||||
Database,
|
||||
RefreshCw,
|
||||
Zap,
|
||||
Target,
|
||||
Droplet,
|
||||
Cloud,
|
||||
Sun,
|
||||
ThermometerSun,
|
||||
BookOpen,
|
||||
Beaker,
|
||||
Info,
|
||||
BarChart3,
|
||||
Filter
|
||||
Beaker
|
||||
} from 'lucide-react';
|
||||
import { toast } from 'sonner';
|
||||
|
||||
import {
|
||||
EvaluationFactor,
|
||||
SuitabilityResult,
|
||||
FactorWeight,
|
||||
BatchProgress,
|
||||
getGradeColor,
|
||||
getScoreColor,
|
||||
getSuitabilityLevelColor,
|
||||
formatDate,
|
||||
MOCK_FIELDS
|
||||
formatDate
|
||||
} from './multiFactorTypes';
|
||||
import {
|
||||
MultiFactorService
|
||||
} from './multiFactorService';
|
||||
import {
|
||||
matchCropsForField,
|
||||
cropKnowledgeBase
|
||||
} from './cropKnowledgeBase';
|
||||
|
||||
@@ -65,16 +46,7 @@ export function MultiFactorEvaluation() {
|
||||
const [selectedField, setSelectedField] = useState('field-1');
|
||||
const [showWeightConfig, setShowWeightConfig] = useState(false);
|
||||
const [showKnowledgeBase, setShowKnowledgeBase] = useState(false);
|
||||
const [batchProgress, setBatchProgress] = useState<BatchProgress>({
|
||||
total: 0,
|
||||
processed: 0,
|
||||
highSuitability: 0,
|
||||
mediumSuitability: 0,
|
||||
lowSuitability: 0,
|
||||
currentField: '',
|
||||
});
|
||||
const [isBatchRunning, setIsBatchRunning] = useState(false);
|
||||
const [batchAnalysisResults, setBatchAnalysisResults] = useState<SuitabilityResult[]>([]);
|
||||
const [batchAnalysisResults, setBatchAnalysisResults] = useState<SuitabilityResult[]>([]);
|
||||
|
||||
// 评价因子权重配置
|
||||
const [factorWeights, setFactorWeights] = useState<FactorWeight[]>([
|
||||
@@ -99,43 +71,6 @@ export function MultiFactorEvaluation() {
|
||||
evaluationResults[0];
|
||||
|
||||
// 批量分析处理函数
|
||||
const handleRunBatchAnalysis = async () => {
|
||||
const validation = MultiFactorService.validateWeights(factorWeights);
|
||||
if (!validation.isValid) {
|
||||
toast.error(`权重总和必须为100%才能进行批量分析(当前:${validation.totalWeight}%)`);
|
||||
return;
|
||||
}
|
||||
|
||||
setIsBatchRunning(true);
|
||||
setBatchProgress({
|
||||
total: 68,
|
||||
processed: 0,
|
||||
highSuitability: 0,
|
||||
mediumSuitability: 0,
|
||||
lowSuitability: 0,
|
||||
currentField: '',
|
||||
});
|
||||
setBatchAnalysisResults([]);
|
||||
|
||||
toast.success('开始批量分析,正在读取地块数据...');
|
||||
|
||||
try {
|
||||
const results = await MultiFactorService.runBatchAnalysis(
|
||||
factorWeights,
|
||||
(progress) => {
|
||||
setBatchProgress(progress);
|
||||
}
|
||||
);
|
||||
|
||||
setBatchAnalysisResults(results);
|
||||
setIsBatchRunning(false);
|
||||
toast.success(`批量分析完成!已为${results.length}个地块生成适宜性评价结果`);
|
||||
} catch (error) {
|
||||
setIsBatchRunning(false);
|
||||
toast.error('批量分析失败');
|
||||
}
|
||||
};
|
||||
|
||||
const handleUpdateWeight = (id: string, newWeight: number) => {
|
||||
setFactorWeights(prev =>
|
||||
MultiFactorService.updateWeight(prev, id, newWeight)
|
||||
@@ -174,15 +109,6 @@ export function MultiFactorEvaluation() {
|
||||
}
|
||||
};
|
||||
|
||||
const exportResults = () => {
|
||||
const resultsToExport = batchAnalysisResults.length > 0 ? batchAnalysisResults : evaluationResults;
|
||||
toast.success('正在导出评价结果...');
|
||||
// 模拟导出功能
|
||||
setTimeout(() => {
|
||||
toast.success(`已导出${resultsToExport.length}个地块的评价结果`);
|
||||
}, 2000);
|
||||
};
|
||||
|
||||
return (
|
||||
<div className="space-y-6">
|
||||
<div className="flex items-center justify-between">
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
* 提供作物-环境适配数据和分析功能
|
||||
*/
|
||||
|
||||
import { Crop, CropRecommendation, FieldFactors, MatchDetail, RiskFactor } from './multiFactorTypes';
|
||||
import { Crop, CropRecommendation, FieldFactors, MatchDetail } from './multiFactorTypes';
|
||||
|
||||
// 作物知识库数据
|
||||
export const cropKnowledgeBase: Crop[] = [
|
||||
|
||||
@@ -3,10 +3,68 @@
|
||||
import { Card } from '@/components/ui/card';
|
||||
import { Badge } from '@/components/ui/badge';
|
||||
import { Leaf, AlertTriangle, ThermometerSun, Cloud, Sun } from 'lucide-react';
|
||||
import { CropRecommendationState, SuitabilityResult } from './cropRecommendReducer';
|
||||
import { SuitabilityResult } from './cropRecommendReducer';
|
||||
|
||||
type RangeRequirement = { optimal: [number, number]; acceptable: [number, number]; };
|
||||
type SoilFactorKey = 'ph' | 'organicMatter' | 'soilDepth' | 'nitrogen' | 'phosphorus' | 'potassium' | 'drainage';
|
||||
type SoilRequirementMap = Record<SoilFactorKey, RangeRequirement>;
|
||||
|
||||
type ClimateRequirement = {
|
||||
temperature: RangeRequirement;
|
||||
rainfall: RangeRequirement;
|
||||
sunlight: RangeRequirement;
|
||||
};
|
||||
|
||||
type YieldRange = {
|
||||
high: [number, number];
|
||||
medium: [number, number];
|
||||
low: [number, number];
|
||||
};
|
||||
|
||||
type RiskSeverity = 'low' | 'medium' | 'high';
|
||||
|
||||
interface CropRiskFactor {
|
||||
id: string;
|
||||
name: string;
|
||||
condition: string;
|
||||
severity: RiskSeverity;
|
||||
suggestion: string;
|
||||
}
|
||||
|
||||
interface CropKnowledgeEntry {
|
||||
id: string;
|
||||
cropName: string;
|
||||
category: string;
|
||||
description: string;
|
||||
growthCycle: { days: number; seasons: string[] };
|
||||
soilRequirements: SoilRequirementMap;
|
||||
climateRequirements: ClimateRequirement;
|
||||
expectedYield: YieldRange;
|
||||
riskFactors: CropRiskFactor[];
|
||||
}
|
||||
|
||||
type MatchStatus = '??' | '???' | '??';
|
||||
|
||||
interface MatchDetail {
|
||||
factor: string;
|
||||
value: number;
|
||||
score: number;
|
||||
status: MatchStatus;
|
||||
}
|
||||
|
||||
interface RecommendationResult {
|
||||
crop: CropKnowledgeEntry;
|
||||
matchScore: number;
|
||||
suitabilityLevel: '????' | '??' | '????' | '???';
|
||||
matchDetails: MatchDetail[];
|
||||
applicableRisks: CropRiskFactor[];
|
||||
expectedYield: [number, number];
|
||||
}
|
||||
|
||||
type FieldFactors = Record<SoilFactorKey | 'temperature' | 'rainfall', number>;
|
||||
|
||||
// 模拟作物知识库数据
|
||||
const cropKnowledgeBase = [
|
||||
const cropKnowledgeBase: CropKnowledgeEntry[] = [
|
||||
{
|
||||
id: 'wheat',
|
||||
cropName: '小麦',
|
||||
@@ -40,14 +98,14 @@ const cropKnowledgeBase = [
|
||||
id: 'wheat-rust',
|
||||
name: '锈病风险',
|
||||
condition: '湿度过高、温度适宜',
|
||||
severity: 'medium' as const,
|
||||
severity: 'medium',
|
||||
suggestion: '选择抗病品种,合理密植,及时防治'
|
||||
},
|
||||
{
|
||||
id: 'wheat-drought',
|
||||
name: '干旱风险',
|
||||
condition: '降雨量不足400mm',
|
||||
severity: 'high' as const,
|
||||
severity: 'high',
|
||||
suggestion: '加强灌溉设施建设,选择抗旱品种'
|
||||
}
|
||||
]
|
||||
@@ -85,14 +143,14 @@ const cropKnowledgeBase = [
|
||||
id: 'corn-borer',
|
||||
name: '玉米螟',
|
||||
condition: '温度适宜、湿度适中',
|
||||
severity: 'medium' as const,
|
||||
severity: 'medium',
|
||||
suggestion: '生物防治与化学防治结合,适时播种'
|
||||
},
|
||||
{
|
||||
id: 'corn-drought',
|
||||
name: '花期干旱',
|
||||
condition: '开花期降雨不足',
|
||||
severity: 'high' as const,
|
||||
severity: 'high',
|
||||
suggestion: '保证花期灌溉,选择耐旱品种'
|
||||
}
|
||||
]
|
||||
@@ -130,7 +188,7 @@ const cropKnowledgeBase = [
|
||||
id: 'soybean-disease',
|
||||
name: '病害风险',
|
||||
condition: '高温高湿环境',
|
||||
severity: 'medium' as const,
|
||||
severity: 'medium',
|
||||
suggestion: '选择抗病品种,合理轮作,加强田间管理'
|
||||
}
|
||||
]
|
||||
@@ -138,11 +196,10 @@ const cropKnowledgeBase = [
|
||||
];
|
||||
|
||||
interface CropRecommendationsProps {
|
||||
state: CropRecommendationState;
|
||||
currentResult: SuitabilityResult;
|
||||
}
|
||||
|
||||
export function CropRecommendations({ state, currentResult }: CropRecommendationsProps) {
|
||||
export function CropRecommendations({ currentResult }: CropRecommendationsProps) {
|
||||
// 匹配作物推荐
|
||||
const matchCropsForField = (fieldFactors: any) => {
|
||||
return cropKnowledgeBase.map(crop => {
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
'use client';
|
||||
|
||||
import { useReducer } from 'react';
|
||||
import { toast } from 'sonner';
|
||||
|
||||
export interface EvaluationFactor {
|
||||
id: string;
|
||||
|
||||
@@ -7,8 +7,7 @@ import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@
|
||||
import { BookOpen, Target } from 'lucide-react';
|
||||
import {
|
||||
cropRecommendReducer,
|
||||
initialState,
|
||||
SuitabilityResult
|
||||
initialState
|
||||
} from './components/cropRecommendReducer';
|
||||
import { FieldEnvironmentOverview } from './components/FieldEnvironmentOverview';
|
||||
import { CropRecommendations } from './components/CropRecommendations';
|
||||
@@ -117,7 +116,7 @@ export default function CropPage() {
|
||||
</div>
|
||||
|
||||
{/* 智能作物推荐 */}
|
||||
<CropRecommendations state={state} currentResult={currentResult} />
|
||||
<CropRecommendations currentResult={currentResult} />
|
||||
|
||||
{/* 知识库对话框 */}
|
||||
<KnowledgeBaseDialog
|
||||
|
||||
Reference in New Issue
Block a user