Fix: create - can not upgrade tool bug

This commit is contained in:
2024-03-21 16:01:23 +08:00
parent 16ab0c7889
commit 3e34ae7616

View File

@@ -278,7 +278,9 @@ const ToolCard = ({ tools, onDelete, onUpgrade, onSubmit, onCancel }: ToolCardPr
onChange={handleOnVersionChange} onChange={handleOnVersionChange}
options={toolsGroupByPlatform(tools)} options={toolsGroupByPlatform(tools)}
/> />
{tools.every((value) => value.review === 'PASS') && ( {tools
.filter((value) => value.platform === selectedTool.platform)
.every((value) => value.review === 'PASS') && (
<AntdTooltip title={'更新'}> <AntdTooltip title={'更新'}>
<Icon <Icon
component={IconOxygenUpgrade} component={IconOxygenUpgrade}
@@ -349,6 +351,7 @@ const Tools = () => {
ref?.getFieldInstance('toolId').focus() ref?.getFieldInstance('toolId').focus()
}, 50) }, 50)
}} }}
labelCol={{ span: 4 }}
> >
<AntdForm.Item <AntdForm.Item
initialValue={tool.toolId} initialValue={tool.toolId}
@@ -358,6 +361,17 @@ const Tools = () => {
> >
<AntdInput disabled /> <AntdInput disabled />
</AntdForm.Item> </AntdForm.Item>
<AntdForm.Item
initialValue={tool.platform}
label={'平台'}
name={'platform'}
>
<AntdSelect disabled>
<AntdSelect.Option key={'WEB'}>Web</AntdSelect.Option>
<AntdSelect.Option key={'DESKTOP'}>Desktop</AntdSelect.Option>
<AntdSelect.Option key={'ANDROID'}>Android</AntdSelect.Option>
</AntdSelect>
</AntdForm.Item>
<AntdForm.Item <AntdForm.Item
name={'ver'} name={'ver'}
label={'版本'} label={'版本'}