tangjie 2026-08-27 14:39:13 +08:00
commit e2d84479dd
1 changed files with 3 additions and 3 deletions

View File

@ -1521,7 +1521,7 @@ function StaffImportModal({ open, onCancel, onSuccess }) {
<Modal <Modal
open={open} open={open}
title="导入人员" title="导入人员"
width={680} width={800}
onCancel={onCancel} onCancel={onCancel}
footer={<Button onClick={onCancel}>关闭</Button>} footer={<Button onClick={onCancel}>关闭</Button>}
> >
@ -1584,8 +1584,8 @@ function StaffImportModal({ open, onCancel, onSuccess }) {
dataSource={errorList} dataSource={errorList}
columns={[ columns={[
{ title: "行号", dataIndex: "rowIndex", width: 70 }, { title: "行号", dataIndex: "rowIndex", width: 70 },
{ title: "账号", dataIndex: "account", ellipsis: true }, { title: "账号", dataIndex: "account", width: 150 },
{ title: "姓名", dataIndex: "userName", ellipsis: true }, { title: "姓名", dataIndex: "userName", width: 80 },
{ title: "异常原因", dataIndex: "errorMessage", ellipsis: true }, { title: "异常原因", dataIndex: "errorMessage", ellipsis: true },
]} ]}
/> />