vue+element-ui 통합 랜 덤 인증 코드+사용자 이름+비밀번호 form 폼 인증 기능

10029 단어 vueelementui
페이지 에 로그 인하 면 인증 코드 를 입력 해 야 로그 인 할 수 있 습 니 다.vue 프로젝트 에서 element-ui 와 어떻게 결합 하여 이 기능 을 실현 하 는 지 자세히 말씀 드 리 겠 습 니 다.
첫 번 째 단계:랜 덤 인증 코드 를 생산 하 는 구성 요 소 를 사용자 정의 합 니 다.그 본질은 canvas 로 그립 니 다.상세 한 코드 는 다음 과 같 습 니 다.

<template>
 <div class="s-canvas">
 <canvas id="s-canvas" :width="contentWidth" :height="contentHeight"></canvas>
 </div>
</template>
<script>
export default {
 name: 'SIdentify',
 props: {
 identifyCode: {
  type: String,
  default: '1234'
 },
 fontSizeMin: {
  type: Number,
  default: 16
 },
 fontSizeMax: {
  type: Number,
  default: 40
 },
 backgroundColorMin: {
  type: Number,
  default: 180
 },
 backgroundColorMax: {
  type: Number,
  default: 240
 },
 colorMin: {
  type: Number,
  default: 50
 },
 colorMax: {
  type: Number,
  default: 160
 },
 lineColorMin: {
  type: Number,
  default: 40
 },
 lineColorMax: {
  type: Number,
  default: 180
 },
 dotColorMin: {
  type: Number,
  default: 0
 },
 dotColorMax: {
  type: Number,
  default: 255
 },
 contentWidth: {
  type: Number,
  default: 112
 },
 contentHeight: {
  type: Number,
  default: 38
 }
 },
 methods: {
 //        
 randomNum(min, max) {
  return Math.floor(Math.random() * (max - min) + min)
 },
 //          
 randomColor(min, max) {
  var r = this.randomNum(min, max)
  var g = this.randomNum(min, max)
  var b = this.randomNum(min, max)
  return 'rgb(' + r + ',' + g + ',' + b + ')'
 },
 drawPic() {
  var canvas = document.getElementById('s-canvas')
  var ctx = canvas.getContext('2d')
  ctx.textBaseline = 'bottom'
  //     
  ctx.fillStyle = this.randomColor(
  this.backgroundColorMin,
  this.backgroundColorMax
  )
  ctx.fillRect(0, 0, this.contentWidth, this.contentHeight)
  //     
  for (let i = 0; i < this.identifyCode.length; i++) {
  this.drawText(ctx, this.identifyCode[i], i)
  }
  this.drawLine(ctx)
  this.drawDot(ctx)
 },
 drawText(ctx, txt, i) {
  ctx.fillStyle = this.randomColor(this.colorMin, this.colorMax)
  ctx.font =
  this.randomNum(this.fontSizeMin, this.fontSizeMax) + 'px SimHei'
  var x = (i + 1) * (this.contentWidth / (this.identifyCode.length + 1))
  var y = this.randomNum(this.fontSizeMax, this.contentHeight - 5)
  var deg = this.randomNum(-45, 45)
  //            
  ctx.translate(x, y)
  ctx.rotate(deg * Math.PI / 180)
  ctx.fillText(txt, 0, 0)
  //            
  ctx.rotate(-deg * Math.PI / 180)
  ctx.translate(-x, -y)
 },
 drawLine(ctx) {
  //      
  for (let i = 0; i < 8; i++) {
  ctx.strokeStyle = this.randomColor(
   this.lineColorMin,
   this.lineColorMax
  )
  ctx.beginPath()
  ctx.moveTo(
   this.randomNum(0, this.contentWidth),
   this.randomNum(0, this.contentHeight)
  )
  ctx.lineTo(
   this.randomNum(0, this.contentWidth),
   this.randomNum(0, this.contentHeight)
  )
  ctx.stroke()
  }
 },
 drawDot(ctx) {
  //      
  for (let i = 0; i < 100; i++) {
  ctx.fillStyle = this.randomColor(0, 255)
  ctx.beginPath()
  ctx.arc(
   this.randomNum(0, this.contentWidth),
   this.randomNum(0, this.contentHeight),
   1,
   0,
   2 * Math.PI
  )
  ctx.fill()
  }
 }
 },
 watch: {
 identifyCode() {
  this.drawPic()
 }
 },
 mounted() {
 this.drawPic()
 }
}
</script>
두 번 째 단계:이 구성 요 소 를 사용 합 니 다:
우선 vue 구성 요 소 를 새로 만 듭 니 다.이 구성 요소 에서 레이아웃 을 진행 합 니 다.사용자 이름과 비밀번호 검증 도 포함 되 어 있 습 니 다.(이것 은 전단 의 간단 한 검증 일 뿐 실제 항목 에 서 는 인터페이스 에 로그 인하 여 백 엔 드 인증 을 요청 해 야 합 니 다)

<template>
 <el-form class="login-form" status-icon :rules="loginRules" ref="loginForm" :model="loginForm" label-width="0">
 <el-form-item prop="username">
  <el-input size="small" @keyup.enter.native="handleLogin" v-model="loginForm.username" auto-complete="off" placeholder="      ">
  <i slot="prefix" class="icon-yonghu"></i>
  </el-input>
 </el-form-item>
 <el-form-item prop="password">
  <el-input size="small" @keyup.enter.native="handleLogin" :type="passwordType" v-model="loginForm.password" auto-complete="off" placeholder="     ">
  <i class="el-icon-view el-input__icon" :style="fontstyle" slot="suffix" @click="showPassword"></i>
  <i slot="prefix" class="icon-mima"></i>
  </el-input>
 </el-form-item>
 <el-form-item prop="verifycode">
  <!--   :prop input         ,        value  undefined,  value     input    -->
  <el-input v-model="loginForm.verifycode" placeholder="      " class="identifyinput"></el-input>
 </el-form-item>
 <el-form-item>
  <div class="identifybox">
  <div @click="refreshCode">
   <s-identify :identifyCode="identifyCode"></s-identify>
  </div>
  <el-button @click="refreshCode" type='text' class="textbtn">   ,   </el-button>
  </div>
 </el-form-item>
 <el-checkbox v-model="checked">    </el-checkbox>
 <el-form-item>
  <el-button type="primary" size="small" @click.native.prevent="handleLogin" class="login-submit">  </el-button>
 </el-form-item>
 </el-form>
</template>
 STEP 3:랜 덤 코드 생산 및 로그 인 검증

<script>
import { isvalidUsername } from '@/utils/validate'
import SIdentify from '@/components/identify/identify.vue'
export default {
 name: 'userlogin',
 data() {
 //           
 const validateUsername = (rule, value, callback) => {
  if (!isvalidUsername(value)) {
  callback(new Error('         '))
  } else {
  console.log('user', value)
  callback()
  }
 }
 //           
 const validateVerifycode = (rule, value, callback) => {
  if (value === '') {
  callback(new Error('      '))
  } else if (value !== this.identifyCode) {
  console.log('validateVerifycode:', value)
  callback(new Error('      !'))
  } else {
  callback()
  }
 }
 return {
  fontstyle: {
  },
  loginForm: {
  username: 'admin',
  password: '123456',
  verifycode: ''
  },
  checked: false,
  identifyCodes: '1234567890',
  identifyCode: '',
  loginRules: { //    form        
  username: [
   { required: true, trigger: 'blur', validator: validateUsername }
  ],
  password: [
   { required: true, message: '     ', trigger: 'blur' },
   { min: 6, message: '       6 ', trigger: 'blur' }
  ],
  verifycode: [
   { required: true, trigger: 'blur', validator: validateVerifycode }
  ]
  },
  passwordType: 'password'
 }
 },
 components: {
 SIdentify
 },
 created() {
 },
 mounted() {
 //       
 this.identifyCode = ''
 this.makeCode(this.identifyCodes, 4)
 },
 computed: {
 },
 props: [],
 methods: {
 //     input type     
 showPassword() {
  this.fontstyle === '' ? (this.fontstyle = 'color: red') : (this.fontstyle = '') //           
  this.passwordType === ''
  ? (this.passwordType = 'password')
  : (this.passwordType = '')
 },
 //       
 handleLogin() {
  this.$refs.loginForm.validate(valid => {
  if (valid) {
   this.$store.dispatch('Login', this.loginForm).then(res => {
   this.$router.push({ path: '/dashboard/dashboard' })
   })
  }
  })
 },
 //      
 randomNum(min, max) {
  return Math.floor(Math.random() * (max - min) + min)
 },
 //      
 refreshCode() {
  this.identifyCode = ''
  this.makeCode(this.identifyCodes, 4)
 },
 //          
 makeCode(o, l) {
  for (let i = 0; i < l; i++) {
  this.identifyCode += this.identifyCodes[
   this.randomNum(0, this.identifyCodes.length)
  ]
  }
  console.log(this.identifyCode)
 }
 }
}
</script>
<style scoped>
.identifybox{
 display: flex;
 justify-content: space-between;
 margin-top:7px;
}
.iconstyle{
 color:#409EFF;
}
</style>
마지막 효 과 는 다음 과 같 습 니 다.입력 하면 마우스 가 초점 을 잃 으 면 검 증 됩 니 다.

총결산
위 에서 말 한 것 은 소 편 이 소개 한 vue+element-ui 통합 랜 덤 인증 코드+사용자 이름+비밀번호 의 form 폼 인증 기능 입 니 다.여러분 에 게 도움 이 되 기 를 바 랍 니 다.궁금 한 점 이 있 으 시 면 저 에 게 메 시 지 를 남 겨 주세요.소 편 은 제때에 답 해 드 리 겠 습 니 다!

좋은 웹페이지 즐겨찾기