当前位置:   article > 正文

vue2 顶象 安全 验证码的使用

vue2 顶象 安全 验证码的使用

顶象-业务安全引领者,让数字世界无风险

类似与这样的登录之前的验证  滑动一个盒子了 或者是 顺序点击文字了 等

  1. <template>
  2. <a-modal
  3. :closable="false"
  4. :visible="show"
  5. @cancel="handleCancel"
  6. :maskClosable="true"
  7. :width="348"
  8. :footer="null">
  9. <a-spin :spinning="Loading">
  10. <div ref="captcha" style="min-height:150px;"></div>
  11. <remote-js src="https://cdn.dingxiang-inc.com/ctu-group/captcha-ui/index.js"></remote-js>
  12. </a-spin>
  13. </a-modal>
  14. </template>
  15. <script>
  16. export default {
  17. props: {
  18. show: {
  19. type: Boolean,
  20. default: false
  21. }
  22. },
  23. data () {
  24. return {
  25. Loading: false
  26. }
  27. },
  28. created () {},
  29. watch: {
  30. show (newQuestion, oldQuestion) {
  31. if (newQuestion === true) {
  32. this.Loading = true
  33. setTimeout(() => {
  34. this.Loading = false
  35. _dx.Captcha(this.$refs.captcha, {
  36. appId: 'xxxx',
  37. success: token => {
  38. this.$emit('success', { token: token })
  39. }
  40. })
  41. }, 1000)
  42. }
  43. }
  44. },
  45. methods: {
  46. handleCancel () {
  47. this.$emit('cancel')
  48. }
  49. }
  50. }
  51. </script>

这就是一个cdn 

需要注册对应的账号

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/492050
推荐阅读
相关标签
  

闽ICP备14008679号