Browse Source

自动化报表项目名称限制字数取消

dev
wenlele 1 year ago
parent
commit
6c078b82d6
  1. 2
      web/client/src/sections/service/components/automatic-Modal.jsx

2
web/client/src/sections/service/components/automatic-Modal.jsx

@ -160,7 +160,7 @@ const AutomaticModal = ({ actions, dispatch, apiRoot, qiniuUrl, visible, eidtDat
</Form.Select> </Form.Select>
<Form.Input field="projectName" label='项目名称' style={{ width: 300 }} placeholder="请输入项目名称" showClear <Form.Input field="projectName" label='项目名称' style={{ width: 300 }} placeholder="请输入项目名称" showClear
initValue={eidtData?.projectName || ""} initValue={eidtData?.projectName || ""}
rules={[{ required: true, message: "请输入项目名称,15字以内", max: 15 }]} rules={[{ required: true, message: "请输入项目名称"}]}
/> />
<Form.Select label="报表类型" field="reportType" placeholder="请选择报表类型" showClear style={{ width: 300 }} <Form.Select label="报表类型" field="reportType" placeholder="请选择报表类型" showClear style={{ width: 300 }}
rules={[{ required: true, message: "请选择报表类型" }]} rules={[{ required: true, message: "请选择报表类型" }]}

Loading…
Cancel
Save