Commit 7bd3d305 authored by 田翔's avatar 田翔
parents 810ea3f2 11b9cb9f
Pipeline #84512 waiting for manual action with stages
...@@ -186,6 +186,10 @@ const ProjectManage = props => { ...@@ -186,6 +186,10 @@ const ProjectManage = props => {
render: record => { render: record => {
if (record === '1') { if (record === '1') {
return <Tag color="success"></Tag>; 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>; return <Tag color="processing"></Tag>;
}, },
......
...@@ -241,7 +241,7 @@ const AddModal = props => { ...@@ -241,7 +241,7 @@ const AddModal = props => {
<Item label="模板参数(仅针对2.0规则)" labelCol={{ span: 6 }} name="params"> <Item label="模板参数(仅针对2.0规则)" labelCol={{ span: 6 }} name="params">
<TextArea rows={2} style={{ width: '95%' }} placeholder="first|Second|Third|Four" /> <TextArea rows={2} style={{ width: '95%' }} placeholder="first|Second|Third|Four" />
</Item> </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" /> <TextArea rows={2} style={{ width: '95%' }} placeholder="first|Second|Third|Four" />
</Item> </Item>
<Item label="参数说明" name="desc" labelCol={{ span: 6 }}> <Item label="参数说明" name="desc" labelCol={{ span: 6 }}>
......
...@@ -251,7 +251,7 @@ const EditModal = props => { ...@@ -251,7 +251,7 @@ const EditModal = props => {
<Item label="模板参数(仅针对2.0规则)" labelCol={{ span: 6 }} name="params"> <Item label="模板参数(仅针对2.0规则)" labelCol={{ span: 6 }} name="params">
<TextArea rows={2} style={{ width: '95%' }} placeholder="first|Second|Third|Four" /> <TextArea rows={2} style={{ width: '95%' }} placeholder="first|Second|Third|Four" />
</Item> </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" /> <TextArea rows={2} style={{ width: '95%' }} placeholder="first|Second|Third|Four" />
</Item> </Item>
<Item label="参数说明" labelCol={{ span: 6 }} name="desc"> <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