取消被动启用的IO的已配置状态高亮显示
ChipPinOutView.jsx
删除代码
if (configuredFunction !== null && disabled && !isConfigured && funItem.FunctionName === "OUTPUT"){
return '#87A25E';
}
取消显示“输出高阻”
ChipPinOutView.jsx
extra={
checkConfigured() ? (
<Button type="primary" size="small" danger onClick={() => handleResetFunction()}>
Reset
</Button>
) : (
disabled ? (<label>输出高阻</label>): null
)
}
改为
extra={
checkConfigured() ? (
<Button type="primary" size="small" danger onClick={() => handleResetFunction()}>
Reset
</Button>
) : null
}