diff --git a/weapp/src/packages/patrol/index.jsx b/weapp/src/packages/patrol/index.jsx
index 1cfbe228..aad264a0 100644
--- a/weapp/src/packages/patrol/index.jsx
+++ b/weapp/src/packages/patrol/index.jsx
@@ -1443,53 +1443,36 @@ const Index = () => {
{
isSuperAdmin && (wait === 'wait' || kind === 'handle') &&
{
- handleState === '待处理' ? // 管理员指派
- <>
- {
- setIsAppoint(e.detail.value === '指派' ? true : false)
- }}>
- 指派
- 不处理
-
- {
- isAppoint && <>
-
- 责任人:{appointUser !== null ? userList[appointUser]?.name : ''}
- setAppointUser(Number(e.detail.value))}
- >
-
-
-
-
}
@@ -1510,7 +1493,11 @@ const Index = () => {
{
(isSuperAdmin && (handleState === '已指派' || handleState === '已处理')) && <>
责任人:
- {appointUser !== null ? allDepUsers.find(d => d.depId === userList[appointUser]?.departmentId)?.depName : ''}-{appointUser !== null ? userList[appointUser]?.name : ''}
+
+ {appointUser !== null ? allDepUsers.find(d => d.depId === userList.find(u => u.id === appointUser)?.departmentId)?.depName : ''}
+ -
+ {appointUser !== null ? userList.find(u => u.id === appointUser)?.name : ''}
+
>
}