更新记录
1.0.0(2021-10-13)
下载此版本
短信验证 数字验证 算数验证
平台兼容性
uni-app
Vue2 |
Vue3 |
Chrome |
Safari |
app-vue |
app-nvue |
Android |
iOS |
鸿蒙 |
√ |
- |
√ |
√ |
- |
- |
- |
- |
- |
微信小程序 |
支付宝小程序 |
抖音小程序 |
百度小程序 |
快手小程序 |
京东小程序 |
鸿蒙元服务 |
QQ小程序 |
飞书小程序 |
快应用-华为 |
快应用-联盟 |
√ |
√ |
√ |
√ |
- |
- |
- |
√ |
- |
- |
- |
其他
arithmeticMverify for albanjin
短信验证 数字验证 算数验证
实际效果如图所示

示例如下(复制以下即可使用,把script标签套上即可运行),引入参考组件
<template>
<view class="sunui">
<arithmeticMverify @change="mverify"></arithmeticMverify>
</view>
</template>
<script>
import arithmeticMverify from './components/albanjin-arithmeticmverify/albanjin-arithmeticmverify.vue'
export default {
data() {
return {
}
},
components:{
arithmeticMverify
},
methods: {
mverify(e){
console.log('验证结果:',e);
}
}
}
</script>