mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-30 02:58:05 +08:00
fix: issue-6546: spinner icon 属性无效问题
This commit is contained in:
parent
f6c8140f54
commit
151ebfdcb5
@ -201,7 +201,7 @@ body: {
|
||||
## 属性表
|
||||
|
||||
| 属性名 | 类型 | 默认值 | 说明 |
|
||||
| -------------------- | ----------------------------------------- | --------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| -------------------- | ----------------------------------------- | --------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| type | `string` | `spinner` | 指定为 Spinner 渲染器 |
|
||||
| show | `boolean` | `true` | 是否显示 spinner 组件 |
|
||||
| className | `string` | | spinner 图标父级标签的自定义 class |
|
||||
@ -214,4 +214,4 @@ body: {
|
||||
| delay | `number` | `0` | 配置组件显示延迟的时间(毫秒) |
|
||||
| overlay | `boolean` | `true` | 配置组件显示 spinner 时是否显示遮罩层 |
|
||||
| body | [SchemaNode](../../docs/types/schemanode) | | 作为容器使用时,被包裹的内容 |
|
||||
| loadingConfig | `{root?: string}` | | 为 `Spinner` 指定挂载的容器, `root` 是一个selector,在拥有`Spinner`的组件上都可以通过传递`loadingConfig`改变Spinner的挂载位置,开启后,会强制开启属性`overlay=true` |
|
||||
| loadingConfig | `{root?: string}` | | 为 `Spinner` 指定挂载的容器, `root` 是一个 selector,在拥有`Spinner`的组件上都可以通过传递`loadingConfig`改变 Spinner 的挂载位置,开启后,会强制开启属性`overlay=true`,并且`icon`会失效 |
|
||||
|
@ -193,8 +193,8 @@ export class Spinner extends React.Component<
|
||||
tipPlacement = '',
|
||||
loadingConfig
|
||||
} = this.props;
|
||||
// 调整挂载位置时使用默认loading
|
||||
const icon = loadingConfig?.root ? iconConfig : '';
|
||||
// 定义了挂载位置时只能使用默认icon
|
||||
const icon = loadingConfig?.root ? undefined : iconConfig;
|
||||
const isCustomIcon = icon && React.isValidElement(icon);
|
||||
const timeout = {enter: delay, exit: 0};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user