bug处理

release/2.19.1.2503.01-业务线个税
lys 6 months ago
parent 0688be7bff
commit 632f42bf07

@ -139,7 +139,7 @@ const index: FunctionComponent<Props> = (props) => {
<span title={text} className={styles.contentTitle} style={{ color: `${record?.[item.dataIndex + "_color"]}` }}> <span title={text} className={styles.contentTitle} style={{ color: `${record?.[item.dataIndex + "_color"]}` }}>
{text} {text}
</span> </span>
{record.lockItems.includes(item.dataIndex) ? <LockOutlined title={item.i18n["锁定的项目值"]} /> : null} {record.lockItems && record.lockItems.includes(item.dataIndex) ? <LockOutlined title={item.i18n["锁定的项目值"]} /> : null}
</span> </span>
</Dropdown> </Dropdown>
); );

Loading…
Cancel
Save