mirror of
https://gitee.com/baidu/amis.git
synced 2024-12-02 20:18:03 +08:00
amis-saas-6892 [Feature] 表达式配置后 输入框的样式调整
Change-Id: I9ae53cdd8f55472a563cb89cef27a173df35a2d7
This commit is contained in:
parent
0040c36815
commit
1ae85da863
@ -532,6 +532,9 @@ export default class FormulaControl extends React.Component<
|
||||
? value
|
||||
: undefined;
|
||||
|
||||
// 值 是表达式或日期快捷
|
||||
const isFx = !simple && (isExpr || this.hasDateShortcutkey(value));
|
||||
|
||||
return (
|
||||
<div
|
||||
className={cx(
|
||||
@ -578,7 +581,7 @@ export default class FormulaControl extends React.Component<
|
||||
</div>
|
||||
)}
|
||||
{/* 非简单模式 &(表达式 或 日期快捷)*/}
|
||||
{!simple && (isExpr || this.hasDateShortcutkey(value)) && (
|
||||
{isFx && (
|
||||
<TooltipWrapper
|
||||
trigger="hover"
|
||||
placement="top"
|
||||
@ -650,7 +653,7 @@ export default class FormulaControl extends React.Component<
|
||||
<Icon
|
||||
icon="function"
|
||||
className={cx('ae-editor-FormulaControl-icon', 'icon', {
|
||||
['is-filled']: !!value
|
||||
['is-filled']: !!isFx
|
||||
})}
|
||||
/>
|
||||
</Button>
|
||||
|
Loading…
Reference in New Issue
Block a user