Register.vue 6.0 KB
Newer Older
yma16's avatar
yma16 已提交
1
<template>
Y
yma16 已提交
2
  <div class="register" style="text-align: center; margin: 0 auto">
yma16's avatar
yma16 已提交
3
    <el-card class="box-card" style="text-align: center; margin: 60px auto">
Y
yma16 已提交
4
      <!-- 弹出一个警告框 -->
yma16's avatar
yma16 已提交
5

Y
yma16 已提交
6 7 8 9 10 11 12 13
      <el-form
        :model="ruleForm"
        status-icon
        :rules="rules"
        ref="ruleForm"
        label-width="100px"
        class="demo-ruleForm"
        style="text-align: center; margin: 0 auto"
yma16's avatar
yma16 已提交
14
        v-loading="loading"
Y
yma16 已提交
15 16 17 18 19 20 21 22 23 24
      >
        <el-form-item>
          <!-- 弹出一个警告框 -->
          <el-alert
            title="这个用户名已经被使用!"
            type="warning"
            v-if="register_error"
          >
          </el-alert>
          <!-- 成功注册! -->
yma16's avatar
yma16 已提交
25

Y
yma16 已提交
26 27 28 29 30 31 32
          <el-alert title="欢迎!!!" type="success" v-if="register_success">
          </el-alert>
          <p style="font-size: 30px">注册</p>
          <el-avatar
            src="https://cube.elemecdn.com/0/88/03b0d39583f48206768a7534e55bcpng.png"
          ></el-avatar>
          <!-- <svg
yma16's avatar
yma16 已提交
33 34 35 36 37
          class="icon"
          aria-hidden="true"
        >
          <use xlink:href="#iconshejitouxiangai"></use>
        </svg> -->
Y
yma16 已提交
38
        </el-form-item>
yma16's avatar
yma16 已提交
39

Y
yma16 已提交
40 41 42
        <el-form-item label="账号" prop="name">
          <el-input v-model="ruleForm.name"></el-input>
        </el-form-item>
yma16's avatar
yma16 已提交
43

Y
yma16 已提交
44 45 46 47 48
        <el-form-item label="密码" prop="pass">
          <el-input
            type="password"
            v-model="ruleForm.pass"
            autocomplete="off"
yma16's avatar
yma16 已提交
49
            show-password
Y
yma16 已提交
50 51
          ></el-input>
        </el-form-item>
yma16's avatar
yma16 已提交
52
        <el-form-item label="密码" prop="checkPass">
Y
yma16 已提交
53 54 55 56
          <el-input
            type="password"
            v-model="ruleForm.checkPass"
            autocomplete="off"
yma16's avatar
yma16 已提交
57
            show-password
Y
yma16 已提交
58 59 60 61 62 63 64 65 66 67
          ></el-input>
        </el-form-item>
        <el-form-item>
          <el-button type="primary" @click="submitForm('ruleForm')"
            >注册</el-button
          >
          <el-button @click="resetForm('ruleForm')">清空</el-button>
        </el-form-item>
        <el-form-item>
          <el-link target="_blank" @click="$router.push({ path: '/login' })"
yma16's avatar
yma16 已提交
68
            >已有账号?</el-link
Y
yma16 已提交
69 70 71 72 73 74
          >
          <el-link type="primary" @click="$router.push({ path: '/login' })"
            >去登录</el-link
          >
        </el-form-item>
      </el-form>
yma16's avatar
yma16 已提交
75
    </el-card>
Y
yma16 已提交
76
  </div>
yma16's avatar
yma16 已提交
77 78 79
</template>

<script>
Y
yma16 已提交
80
import axios from "axios";
yma16's avatar
yma16 已提交
81
export default {
Y
yma16 已提交
82 83 84
  name: "Register",
  data() {
    const checkName = (rule, value, callback) => {
yma16's avatar
yma16 已提交
85
      if (!value) {
Y
yma16 已提交
86
        return callback(new Error("账号不能为空"));
yma16's avatar
yma16 已提交
87 88 89 90 91 92
      }
      setTimeout(() => {
        // if (!Number.isInteger(value)) {
        //   callback(new Error('请输入密码'));
        // } if {
        if (value.length < 2) {
Y
yma16 已提交
93
          callback(new Error("名字至少两位"));
yma16's avatar
yma16 已提交
94
        } else {
Y
yma16 已提交
95
          callback();
yma16's avatar
yma16 已提交
96
        }
Y
yma16 已提交
97 98 99 100 101
      }, 1000);
    };
    const validatePass = (rule, value, callback) => {
      if (value === "") {
        callback(new Error("请输入密码"));
yma16's avatar
yma16 已提交
102
      } else {
Y
yma16 已提交
103 104
        if (this.ruleForm.checkPass !== "") {
          this.$refs.ruleForm.validateField("checkPass");
yma16's avatar
yma16 已提交
105
        }
Y
yma16 已提交
106
        callback();
yma16's avatar
yma16 已提交
107
      }
Y
yma16 已提交
108 109 110 111
    };
    const validatePass2 = (rule, value, callback) => {
      if (value === "") {
        callback(new Error("请再次输入密码"));
yma16's avatar
yma16 已提交
112
      } else if (value !== this.ruleForm.pass) {
Y
yma16 已提交
113
        callback(new Error("两次输入密码不一致!"));
yma16's avatar
yma16 已提交
114
      } else {
Y
yma16 已提交
115
        callback();
yma16's avatar
yma16 已提交
116
      }
Y
yma16 已提交
117
    };
yma16's avatar
yma16 已提交
118
    return {
yma16's avatar
yma16 已提交
119
      loading:false,
yma16's avatar
yma16 已提交
120 121 122
      register_success: false,
      register_error: false,
      // baseurl: "http://127.0.0.1/",
Y
yma16 已提交
123
      baseurl: "/api/",
Y
yma16 已提交
124
      // baseurl: 'http://yongma16.xyz/',
yma16's avatar
yma16 已提交
125
      ruleForm: {
Y
yma16 已提交
126 127 128
        pass: "",
        checkPass: "",
        name: "",
yma16's avatar
yma16 已提交
129 130
      },
      rules: {
Y
yma16 已提交
131 132 133 134 135
        pass: [{ validator: validatePass, trigger: "blur" }],
        checkPass: [{ validator: validatePass2, trigger: "blur" }],
        name: [{ validator: checkName, trigger: "blur" }],
      },
    };
yma16's avatar
yma16 已提交
136 137
  },
  methods: {
Y
yma16 已提交
138
    submitForm(formName) {
yma16's avatar
yma16 已提交
139
      this.$refs[formName].validate((valid) => {
Y
yma16 已提交
140
        const that = this;
yma16's avatar
yma16 已提交
141
        if (valid) {
yma16's avatar
yma16 已提交
142
          that.loading=false
yma16's avatar
yma16 已提交
143 144
          // 提交数据
          // alert("yes submit!");
Y
yma16 已提交
145 146
          that.register_success = false; // 初始化register的状态
          that.register_error = false;
yma16's avatar
yma16 已提交
147
          axios
Y
yma16 已提交
148
            .post(that.baseurl + "user/register/", {
yma16's avatar
yma16 已提交
149
              // 传递的名字和密码
Y
yma16 已提交
150 151 152
              name: that.ruleForm.name,
              password: that.ruleForm.pass,
            })
yma16's avatar
yma16 已提交
153 154
            .then(function (res) {
              if (res.data.code === 0) {
Y
yma16 已提交
155 156 157 158 159 160
                document.cookie = `user=${that.ruleForm.name}`;
                that.register_error = true;
                that.$message({
                  message: "名称重复" + that.ruleForm.name + "!",
                  type: "error",
                });
yma16's avatar
yma16 已提交
161
              } else {
Y
yma16 已提交
162 163 164 165 166
                that.register_success = true;
                that.$message({
                  message: "注册成功,欢迎您," + that.ruleForm.name + "!",
                  type: "success",
                });
yma16's avatar
yma16 已提交
167
              }
yma16's avatar
yma16 已提交
168
              that.loading=false
yma16's avatar
yma16 已提交
169 170 171
            })
            .catch(function (res) {
              // 获取res中的name
yma16's avatar
yma16 已提交
172
              that.loading=false
Y
yma16 已提交
173 174 175 176 177
              that.$message({
                message: "注册失败" + that.ruleForm.name + "!",
                type: "error",
              });
            });
yma16's avatar
yma16 已提交
178
        } else {
Y
yma16 已提交
179 180 181 182 183
          that.$message({
            message: "注册失败" + that.ruleForm.name + "!",
            type: "error",
          });
          return false;
yma16's avatar
yma16 已提交
184
        }
Y
yma16 已提交
185
      });
yma16's avatar
yma16 已提交
186
    },
Y
yma16 已提交
187 188 189 190 191
    resetForm(formName) {
      this.$refs[formName].resetFields();
    },
  },
};
yma16's avatar
yma16 已提交
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
</script>

<style scoped>
.text {
  align-content: center;
  display: flex;
  margin: 0 auto;
  font-size: 14px;
}

.item {
  display: flex;
  margin: 0 auto;
  /* width: 50%; */
}

.box-card {
  align-self: center;
  align-content: center;
  display: flex;
  width: 450px;
  /* padding-left:25%; */
  margin: 0 25%;
  opacity: 1;
  margin-top: 80px;
  background-color: #ffffff;
}
</style>