Browse Source

feat:是否异常按钮的选中效果修改

dev
zhaobing 1 year ago
parent
commit
60dad3a4d5
  1. 2
      web/client/src/sections/fillion/components/patrolTable.js

2
web/client/src/sections/fillion/components/patrolTable.js

@ -170,7 +170,7 @@ const DetailForm = (props) => {
patrolContent.map(obj => {
return (
obj.skip ? null : <Descriptions.Item label={obj.key}>
{obj.name === 'inspectionNoException' ? <Checkbox checked={data['inspectionNoException']} disabled></Checkbox> : data[obj.name] || ''}
{obj.name === 'inspectionNoException' ? <Checkbox checked={data['inspectionNoException']} ></Checkbox> : data[obj.name] || ''}
</Descriptions.Item>
)
})

Loading…
Cancel
Save