|
|
@ -187,7 +187,7 @@ function pushModal (props) { |
|
|
|
rules={[{ required: true, message: "请输入人员编号" }]} /> |
|
|
|
<div style={{ marginLeft: 12, color: '#005ABD', cursor: "pointer", fontSize: 14 }} onClick={() => { |
|
|
|
let formList = form.current.getValues() |
|
|
|
if(formList.userCode){ |
|
|
|
if (formList.userCode) { |
|
|
|
memberSeach(formList.userCode) |
|
|
|
} |
|
|
|
}}> |
|
|
@ -549,7 +549,7 @@ function pushModal (props) { |
|
|
|
label='工作经验:' |
|
|
|
maxLength="2" |
|
|
|
style={{ width: 288 }} |
|
|
|
initValue={String(editObj?.experienceYear) || ""} |
|
|
|
initValue={editObj?.experienceYear ? String(editObj?.experienceYear) : ""} |
|
|
|
placeholder="请输入工作经验,不超过2位数字" |
|
|
|
showClear |
|
|
|
rules={[{ pattern: "^[0-9]*[1-9][0-9]*$", message: "请输入工作经验,不超过2位数字" },]} |
|
|
|