NConfirm底部菜单

author: 赵婕

定义

弹层按钮提示二次确认操作。

图片展示

NConfirm 底部菜单 - 图1

代码演示

  1. import Dialog from 'pile/dist/components/dialog'
  2. const {NConfirm } = Dialog
  3. <NConfirm
  4. show={true}
  5. title="同时会将我从对方列表列删除"
  6. hide={...fun}
  7. buttons=[
  8. {
  9. label: '分享',
  10. type: 'default',
  11. onClick: this.hidenConfirm.bind(this)
  12. },
  13. {
  14. type: 'primary',
  15. label: '删除',
  16. onClick: this.hidenConfirm.bind(this,'晚上一起吃饭了')
  17. }
  18. ]
  19. />

属性

参数 描述 数据类型 默认值
show 底部菜单的初始隐藏状态 bool
title 底部菜单的标题 string
buttons 底部菜单的两个按钮(名字 样式 已经点击的回调方法) array
hide 取消按钮的回调 function

原文: https://didi.github.io/pile.js/docs/2017/08/develop-components-dialog-nconfirm.html