Newer
Older
base_front / src / components / Kaptcha / kaptcha.vue
StephanieGitHub on 11 Oct 2019 1 KB first commit
<template>
  <el-form-item prop="kaptcha" >
    <el-input v-model="kaptcha" class="kaptcha-el" name="kaptcha" type="text" placeholder="验证码" />
    <img :src="kaptcha_src" class="kaptcha" alt="验证码" @click="refreshCode" >
  </el-form-item>
</template>

<script>
import { getKaptcha } from '@/api/login'
export default {
  name: 'Kaptcha',
  // props: {
  //   kaptcha: {// 验证码默认值为空
  //     type: String,
  //     default: () => ''
  //   }
  // },
  data() {
    return {
      kaptcha: '',
      kaptcha_src: '/../../../static/images/kaptcha.png'
    }
  },
  mounted: function() {
    this.refreshCode()
  },
  methods: {
    refreshCode() {
      new Promise((resolve, reject) => {
        getKaptcha().then(response => {
          console.log('kaptcha:' + response.data.kaptcha)
          this.kaptcha_src = response.data.kaptcha
          resolve()
        }).catch(error => {
          reject(error)
        })
      })
    }
  }
}
</script>

<style scoped>
  .kaptcha-el{
    float:left;
    width:65% !important;
  }
  .kaptcha-el input{
    float:left;
    width:65%
  }
  .kaptcha{
    height:40px;
    width:80px;
    float:right;
  }
</style>