uni-popup-captcha.uvue 3.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
<template>
  <uni-popup ref="popup" @clickMask="cancel">
    <view class="popup-captcha">
      <view class="content">
        <text class="title">{{title}}</text>
        <uni-captcha ref="captcha" :focus="focus" :scene="scene" v-model="val" :cursorSpacing="150"></uni-captcha>
      </view>
      <view class="button-box">
        <text @click="cancel" class="btn cancel">取消</text>
        <text @click="confirm" class="btn confirm">确认</text>
      </view>
    </view>
  </uni-popup>
</template>

<script>
  import uniPopup from './uni-popup/uni-popup.uvue';
  let confirmCallBack = ():void=>console.log('未传入回调函数')
  export default {
    components: {
      uniPopup
    },
    emits:["modelValue","confirm","cancel"],
    data() {
      return {
        focus: false,
        val:""
      }
    },
    props: {
      modelValue: {
        type: String,
        default: ""
      },
      value: {
        type: String,
        default: ""
      },
      scene: {
        type: String,
        default: ""
      },
      title: {
        type: String,
        default: "默认标题"
      }
    },
    watch: {
      val(val:string) {
        // console.log(val);
        // TODO 兼容 vue2
        // #ifdef VUE2
        this.$emit('input', val);
        // #endif
        
        // TODO 兼容 vue3
        // #ifdef VUE3
        this.$emit('update:modelValue', val)
        // #endif
        
        if(val.length == 4){
          this.confirm()
        }
      }
    },
    mounted() {},
    methods: {
      open(callback: () => void) {
        // console.log('callback',callback);
        confirmCallBack = callback;
        this.focus = true
        this.val = "";
        (this.$refs['popup'] as ComponentPublicInstance).$callMethod("open");
        this.$nextTick(()=>{
          (this.$refs['captcha'] as ComponentPublicInstance).$callMethod("getImageCaptcha",true);
        })
      },
      close() {
        this.focus = false;
        (this.$refs['popup'] as ComponentPublicInstance).$callMethod("close");
      },
      cancel(){
        this.close()
        this.$emit("cancel")
      },
      confirm() {
        if (this.val.length != 4) {
          return uni.showToast({
            title: '请填写验证码',
            icon: 'none'
          });
        }
        this.close()
        this.$emit('confirm')
        confirmCallBack()
      }
    }
  }
</script>

<style lang="scss" scoped>
  .popup-captcha {
    background-color: #fff;
    flex-direction: column;
    width: 600rpx;
    padding:10px 15px;
    border-radius: 10px;
  }
  .popup-captcha .title {
    text-align: center;
    font-weight: 700;
    margin: 5px 0;
  }
  .popup-captcha .button-box {
    flex-direction: row;
    justify-content: space-around;
    margin-top: 5px;
  }
  .popup-captcha .button-box .btn {
    flex: 1;
    height: 35px;
    line-height: 35px;
    text-align: center;
  }
  .popup-captcha .button-box .cancel {
    border: 1px solid #eee;
    color: #666;
  }
  .confirm {
    background-color: #0070ff;
    color: #fff;
    margin-left: 5px;
  }
</style>