@ubrorg/confirm
v1.2.0
Published
confirm
Downloads
4
Readme
confirm
confirm
使用
在页面的 page.json
中配置:
{
"usingComponents": {
"confirm": "@ubrorg/confirm/lib/index"
}
}
在页面的 page.axml
中直接使用:
<confirm />
给页面中的按钮添加事件如:
<!-- html -->
<button onTap="buttonConfirm">点击按钮</button>
<!-- js -->
import { confirm } from '@ubrorg/toast/lib/confirm';
buttonConfirm() {
confirm({
content: '您本月的账单已出',
buttonText: '我知道了',
input:true,
title:'这里是title'
confirm: (v) => { console.log('点击了确认按钮', v) },
cancel: () => { console.log('点击了取消按钮') },
complete: () => { console.log('调用成功') },
});
}
配置
| 属性 | 是否必传 | 默认值 | 解释 | 类型 | | ------------ | ------------ | ------------ | ------------ | ------------ | | content | N | ' ' | 弹窗的文本,content为提示文字| string | | confirmButtonText | N | '确认' | 确认按钮上的提示文字 |string | | cancelButtonText | N | '取消' | 取消按钮上的提示文字 |string | | complete | N | 无 | 调用结束的回调函数 | function | | confirm | N | value | 点击确认按钮后的回调函数,参数 value 为输入框的内容 | function | | cancel | N | 无 | 点击取消按钮后的回调函数 | function | | input | N | false | input 为 true 时,代表这是个可以输入的 confirm 弹窗 | boolean | | title | N | '' | title 是可以输入弹窗的标题 | string |
开发
更多命令
miapp newbranch
: 新建分支miapp push
: 提交代码miapp prepub
: 预发(发布 beta 版本)miapp publish
: 正式发布