NConfirm底部菜单
author: 赵婕
定义
弹层按钮提示二次确认操作。
图片展示
代码演示
import Dialog from 'pile/dist/components/dialog'
const {NConfirm } = Dialog
<NConfirm
show={true}
title="同时会将我从对方列表列删除"
hide={...fun}
buttons=[
{
label: '分享',
type: 'default',
onClick: this.hidenConfirm.bind(this)
},
{
type: 'primary',
label: '删除',
onClick: this.hidenConfirm.bind(this,'晚上一起吃饭了')
}
]
/>
属性
参数 | 描述 | 数据类型 | 默认值 |
---|---|---|---|
show | 底部菜单的初始隐藏状态 | bool | |
title | 底部菜单的标题 | string | |
buttons | 底部菜单的两个按钮(名字 样式 已经点击的回调方法) | array | |
hide | 取消按钮的回调 | function |
原文: https://didi.github.io/pile.js/docs/2017/08/develop-components-dialog-nconfirm.html