fix
parent
9ac539967c
commit
dd71d5c0c1
|
|
@ -558,7 +558,7 @@ function DepartmentPositionPage(props) {
|
|||
label="岗位名称"
|
||||
rules={[{ required: true, message: "请输入岗位名称" }]}
|
||||
>
|
||||
<Input placeholder="请输入岗位名称" />
|
||||
<Input placeholder="请输入岗位名称" maxLength={40} />
|
||||
</Form.Item>
|
||||
<Form.Item
|
||||
name="dutyDesc"
|
||||
|
|
@ -569,7 +569,7 @@ function DepartmentPositionPage(props) {
|
|||
rows={3}
|
||||
placeholder="请输入岗位职责"
|
||||
showCount
|
||||
maxLength={500}
|
||||
maxLength={400}
|
||||
/>
|
||||
</Form.Item>
|
||||
<Form.Item name="remark" label="备注">
|
||||
|
|
@ -577,7 +577,7 @@ function DepartmentPositionPage(props) {
|
|||
rows={2}
|
||||
placeholder="请输入备注"
|
||||
showCount
|
||||
maxLength={500}
|
||||
maxLength={400}
|
||||
/>
|
||||
</Form.Item>
|
||||
</Form>
|
||||
|
|
|
|||
|
|
@ -1369,7 +1369,7 @@ function StaffImportModal({ open, onCancel, onSuccess }) {
|
|||
style={{ marginTop: 12 }}
|
||||
type={result.failCount > 0 ? "warning" : "success"}
|
||||
showIcon
|
||||
message={`成功导入 ${result.successCount || 0} 条,失败 ${result.failCount || 0} 条`}
|
||||
message={`成功导入 ${result.successCount || 0} 条,失败 ${result?.errors?.length || 0} 条`}
|
||||
/>
|
||||
)}
|
||||
{errorList.length > 0 && (
|
||||
|
|
|
|||
Loading…
Reference in New Issue