dev-tmp1
luotaiqian 2026-08-27 14:07:41 +08:00
parent e55b4eaf80
commit 97b56a5710
1 changed files with 3 additions and 3 deletions

View File

@ -1542,7 +1542,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>}
> >
@ -1605,8 +1605,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 },
]} ]}
/> />