Step1.vue 4.4 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 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
<template>
  <div class="main">

    <a-form  style="max-width: 500px; margin: 40px auto 0;" :form="form">
      <a-form-item>
        <a-input
          v-decorator="['username',validatorRules.username]"
          size="large"
          type="text"
          autocomplete="false"
          placeholder="请输入用户名或手机号">
          <a-icon slot="prefix" type="lock" :style="{ color: 'rgba(0,0,0,.25)' }"/>
        </a-input>
      </a-form-item>
      <a-row :gutter="0">
        <a-col :span="14">
          <a-form-item>
            <a-input
              v-decorator="['inputCode',validatorRules.inputCode]"
              size="large"
              type="text"
              @change="inputCodeChange"
              placeholder="请输入验证码">
              <a-icon slot="prefix" v-if=" inputCodeContent==verifiedCode " type="smile"
                      :style="{ color: 'rgba(0,0,0,.25)' }"/>
              <a-icon slot="prefix" v-else type="frown" :style="{ color: 'rgba(0,0,0,.25)' }"/>
            </a-input>
          </a-form-item>
        </a-col>
        <a-col :span="10">
          <j-graphic-code @success="generateCode" style="float: right"></j-graphic-code>
        </a-col>
      </a-row>
      <a-form-item :wrapperCol="{span: 19, offset: 5}">
        <a-button type="primary" @click="nextStep">下一步</a-button>
      </a-form-item>
    </a-form>
  </div>
</template>

<script>
  import JGraphicCode from '@/components/jeecg/JGraphicCode'
  import { getAction } from  '@/api/manage'
  import {duplicateCheck } from '@/api/api'
  export default {
    name: "Step1",
    components: {
      JGraphicCode
    },
    data () {
      return {
        form: this.$form.createForm(this),
        inputCodeContent: "",
        inputCodeNull:true,
        verifiedCode:"",
        validatorRules: {
          username:{rules: [{ required: false},{validator: this.validateInputUsername}]},
          inputCode:{rules: [{ required: true, message: '请输入验证码!'},{validator: this.validateInputCode}]},
        },

      }
    },
    methods: {
      nextStep () {
        let that = this
        this.form.validateFields((err, values) => {
          if (!err){
          var params={}
          var reg=/^[1-9]\d*$|^0$/;
          var username=values.username;
          if(reg.test(username)==true) {
            params.phone=username;
          }else{
            params.username=username;
          }
            getAction("/sys/user/querySysUser",params).then((res)=>{
              if(res.success){
            var userList={
              username:res.result.username,
              phone:res.result.phone
            };
             setTimeout(function () {
              that.$emit('nextStep',userList)
            })
          }
          });
        }
    })

      },
      validateInputCode(rule, value, callback){
        if (!value || this.verifiedCode == this.inputCodeContent) {
          callback();
        } else {
          callback(new Error("您输入的验证码不正确!"));
        }
      },
      inputCodeChange(e){
        this.inputCodeContent = e.target.value;
        console.log(this.inputCodeContent)
        if(!e.target.value||0==e.target.value){
          this.inputCodeNull=true
        }else{
          this.inputCodeContent = this.inputCodeContent.toLowerCase()
          this.inputCodeNull=false
        }
      },
      generateCode(value){
        this.verifiedCode = value.toLowerCase();
        console.log(this.verifiedCode);
      },
      validateInputUsername(rule, value, callback){
        console.log(value);
        var reg=/^[0-9]+.?[0-9]*/;
        if(!value){
          callback("请输入用户名和手机号!");
        }

        if(reg.test(value)){
          var params = {
            tableName: 'sys_user',
            fieldName: 'phone',
            fieldVal: value,
            dataId: null
          };
          duplicateCheck(params).then((res) => {
            if (res.success) {
            callback("用户名不存在!")
          } else {
            callback()
          }
        })
        }else{
          var params = {
            tableName: 'sys_user',
            fieldName: 'username',
            fieldVal: value,
            dataId: null
          };
          duplicateCheck(params).then((res) => {
            if (res.success) {
            callback("用户名不存在!")
          } else {
            callback()
          }
        })
        }
      },

    }
  }
</script>

<style scoped>

</style>