Commit 3bf666bf authored by 皮倩雯's avatar 皮倩雯

fix: '事件名称修改为事件类型,表字段形态选择富文本默认长度为6'

parent fa4afd77
Pipeline #61432 passed with stages
...@@ -1111,6 +1111,7 @@ const AddModal = props => { ...@@ -1111,6 +1111,7 @@ const AddModal = props => {
if ( if (
value == '多行文本' || value == '多行文本' ||
value == '富文本' ||
value == '附件' || value == '附件' ||
value == '可预览附件' || value == '可预览附件' ||
value == '图片' || value == '图片' ||
......
...@@ -1351,19 +1351,19 @@ const AddModal = props => { ...@@ -1351,19 +1351,19 @@ const AddModal = props => {
<Row> <Row>
<Col span={15}> <Col span={15}>
<Item <Item
label="事件名称" label="事件类型"
labelCol={{ span: 8 }} labelCol={{ span: 8 }}
name="Name" name="Name"
rules={[ rules={[
{ {
required: true, required: true,
message: '请输入事件名称', message: '请输入事件类型',
}, },
]} ]}
> >
<Input <Input
onChange={prefix} onChange={prefix}
placeholder="请输入事件名称" placeholder="请输入事件类型"
style={{ marginLeft: '-3px' }} style={{ marginLeft: '-3px' }}
/> />
</Item> </Item>
......
...@@ -74,7 +74,7 @@ const incident = () => { ...@@ -74,7 +74,7 @@ const incident = () => {
const columns = [ const columns = [
{ {
title: '事件名称', title: '事件类型',
dataIndex: 'name', dataIndex: 'name',
key: 'name', key: 'name',
width: 150, width: 150,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment