layer - Maixbxp/salt-ui GitHub Wiki
模态对话框的基础,但NB的是提供了9宫格定位功能,使用top,left,bottom,right等来定位任意你想要定位的位置
<Layer width="auto" bottom="0" right="0" zIndex={888} show={show && index == 9} onClick={this.handleClick.bind(this)}>
<div style={{width: 100, height: 100, backgroundColor: 'red'}}></div>
</Layer>
配置项 | 必填 | 默认值 | 功能/备注 |
---|---|---|---|
onClick | optional | SaltUI.noop | 点击之后的响应事件 |
onHide | optional | SaltUI.noop | 关闭时的响应事件 |
zIndex | optional | 无,使用自动生成机制,但用户也可以自定义传入 | zIndex |
mask | optional | true | 是有遮罩层 |
show | optional | false | 是否直接展示 |
-暂无