1. checkpassStrong.js

export function checkStrong(sValue) {
  var modes = 0;
  //正则表达式验证符合要求的
  if (sValue.length < 1) return modes;
  if (/\d/.test(sValue)) modes++; //数字
  if (/[a-z]/.test(sValue)) modes++; //小写
  if (/[A-Z]/.test(sValue)) modes++; //大写  
  if (/\W/.test(sValue)) modes++; //特殊字符

  //逻辑处理
  switch (modes) {
    case 1:
      return 1;
      break;
    case 2:
      return 2;
      break;
    case 3:
    case 4:
      return sValue.length < 12 ? 3 : 4
      break;
  }
  return modes;
}

2. massage.vue

<template>
<div class="Password">
    <el-input v-model="input" placeholder="请输入内容" type="password"></el-input>
    <el-button type="info" v-text="msgText"></el-button>
</div>
</template>

<script>
import {
    checkStrong
} from '../../utils/checkpassStrong.js';
export default {
    name: 'password',
    data() {
        return {
            input: null,
            msgText: null
        }
    },
    methods: {
    },

    computed: {},

    watch: {
      input(newValue,oldValue){
        this.msgText = checkStrong(newValue)
      }
    }
}
</script>

<style lang="less">

</style>

 

 

Logo

前往低代码交流专区

更多推荐