更新记录
1.0.1(2024-01-30) 下载此版本
修改为uni_modules
平台兼容性
需要帮助可直接联系qq2786885584
啰嗦一下
- 自己做自己用方便引用,后续会增加插件一步一步完善
必看提醒
- 仅支持微信小程序
使用方式
传参
参数 类型 说明 position String 位置center居中,bottom居下 confirmColor String 确认按钮背景颜色 title String 弹窗title slot slot 插槽 confirmText String 确认按钮文字 success Function 确认后的方法 示例
- html
- js
this.$refs.refpopupstyle1.open({
title: "温馨提示",
confirmText: "对的",
success: () => {
console.log("对的")
}
complete: () => {
console.log("通用")
},
})
### 代码逻辑
- js
this.$refs.refpopupstyle1.open({
title: "温馨提示",
confirmText: "对的",
success: () => {
console.log("对的")
}
complete: () => {
console.log("通用")
},
})