Commit 11b9cb9f authored by 皮倩雯's avatar 皮倩雯

fix: '修复消息中心是否启用显示bug'

parent 53182d38
Pipeline #84511 failed with stages
......@@ -186,6 +186,10 @@ const ProjectManage = props => {
render: record => {
if (record === '1') {
return <Tag color="success"></Tag>;
} else if (record === '是') {
return <Tag color="success"></Tag>;
} else if (record === '否') {
return <Tag color="processing"></Tag>;
}
return <Tag color="processing"></Tag>;
},
......
......@@ -241,7 +241,7 @@ const AddModal = props => {
<Item label="模板参数(仅针对2.0规则)" labelCol={{ span: 6 }} name="params">
<TextArea rows={2} style={{ width: '95%' }} placeholder="first|Second|Third|Four" />
</Item>
<Item label="解析参数(仅针对2.0规则)" labelCol={{ span: 6 }} name="param1">
<Item label="API解析参数(仅针对2.0规则)" labelCol={{ span: 6 }} name="param1">
<TextArea rows={2} style={{ width: '95%' }} placeholder="first|Second|Third|Four" />
</Item>
<Item label="参数说明" name="desc" labelCol={{ span: 6 }}>
......
......@@ -251,7 +251,7 @@ const EditModal = props => {
<Item label="模板参数(仅针对2.0规则)" labelCol={{ span: 6 }} name="params">
<TextArea rows={2} style={{ width: '95%' }} placeholder="first|Second|Third|Four" />
</Item>
<Item label="解析参数(仅针对2.0规则)" labelCol={{ span: 6 }} name="param1">
<Item label="API解析参数(仅针对2.0规则)" labelCol={{ span: 6 }} name="param1">
<TextArea rows={2} style={{ width: '95%' }} placeholder="first|Second|Third|Four" />
</Item>
<Item label="参数说明" labelCol={{ span: 6 }} name="desc">
......
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