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

Y
yma16 已提交
25 26 27 28 29 30 31
          <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 已提交
32 33 34 35 36
          class="icon"
          aria-hidden="true"
        >
          <use xlink:href="#iconshejitouxiangai"></use>
        </svg> -->
Y
yma16 已提交
37
        </el-form-item>
yma16's avatar
yma16 已提交
38

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

Y
yma16 已提交
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
        <el-form-item label="密码" prop="pass">
          <el-input
            type="password"
            v-model="ruleForm.pass"
            autocomplete="off"
          ></el-input>
        </el-form-item>
        <el-form-item label="确认" prop="checkPass">
          <el-input
            type="password"
            v-model="ruleForm.checkPass"
            autocomplete="off"
          ></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' })"
            >已有账号?</el-link
          >
          <el-link type="primary" @click="$router.push({ path: '/login' })"
            >去登录</el-link
          >
        </el-form-item>
      </el-form>
yma16's avatar
yma16 已提交
72
    </el-card>
Y
yma16 已提交
73
  </div>
yma16's avatar
yma16 已提交
74 75 76
</template>

<script>
Y
yma16 已提交
77
import axios from "axios";
yma16's avatar
yma16 已提交
78
export default {
Y
yma16 已提交
79 80 81
  name: "Register",
  data() {
    const checkName = (rule, value, callback) => {
yma16's avatar
yma16 已提交
82
      if (!value) {
Y
yma16 已提交
83
        return callback(new Error("账号不能为空"));
yma16's avatar
yma16 已提交
84 85 86 87 88 89
      }
      setTimeout(() => {
        // if (!Number.isInteger(value)) {
        //   callback(new Error('请输入密码'));
        // } if {
        if (value.length < 2) {
Y
yma16 已提交
90
          callback(new Error("名字至少两位"));
yma16's avatar
yma16 已提交
91
        } else {
Y
yma16 已提交
92
          callback();
yma16's avatar
yma16 已提交
93
        }
Y
yma16 已提交
94 95 96 97 98
      }, 1000);
    };
    const validatePass = (rule, value, callback) => {
      if (value === "") {
        callback(new Error("请输入密码"));
yma16's avatar
yma16 已提交
99
      } else {
Y
yma16 已提交
100 101
        if (this.ruleForm.checkPass !== "") {
          this.$refs.ruleForm.validateField("checkPass");
yma16's avatar
yma16 已提交
102
        }
Y
yma16 已提交
103
        callback();
yma16's avatar
yma16 已提交
104
      }
Y
yma16 已提交
105 106 107 108
    };
    const validatePass2 = (rule, value, callback) => {
      if (value === "") {
        callback(new Error("请再次输入密码"));
yma16's avatar
yma16 已提交
109
      } else if (value !== this.ruleForm.pass) {
Y
yma16 已提交
110
        callback(new Error("两次输入密码不一致!"));
yma16's avatar
yma16 已提交
111
      } else {
Y
yma16 已提交
112
        callback();
yma16's avatar
yma16 已提交
113
      }
Y
yma16 已提交
114
    };
yma16's avatar
yma16 已提交
115 116 117 118
    return {
      register_success: false,
      register_error: false,
      // baseurl: "http://127.0.0.1/",
Y
yma16 已提交
119 120
      baseurl: "http://114.116.52.53/",
      // baseurl: 'http://yongma16.xyz/',
yma16's avatar
yma16 已提交
121
      ruleForm: {
Y
yma16 已提交
122 123 124
        pass: "",
        checkPass: "",
        name: "",
yma16's avatar
yma16 已提交
125 126
      },
      rules: {
Y
yma16 已提交
127 128 129 130 131
        pass: [{ validator: validatePass, trigger: "blur" }],
        checkPass: [{ validator: validatePass2, trigger: "blur" }],
        name: [{ validator: checkName, trigger: "blur" }],
      },
    };
yma16's avatar
yma16 已提交
132 133
  },
  methods: {
Y
yma16 已提交
134
    submitForm(formName) {
yma16's avatar
yma16 已提交
135
      this.$refs[formName].validate((valid) => {
Y
yma16 已提交
136
        const that = this;
yma16's avatar
yma16 已提交
137 138
        if (valid) {
          // 提交数据
Y
yma16 已提交
139
          console.log(this.ruleForm.name, this.ruleForm.pass);
yma16's avatar
yma16 已提交
140
          // alert("yes submit!");
Y
yma16 已提交
141 142
          that.register_success = false; // 初始化register的状态
          that.register_error = false;
yma16's avatar
yma16 已提交
143
          axios
Y
yma16 已提交
144
            .post(that.baseurl + "user/register/", {
yma16's avatar
yma16 已提交
145
              // 传递的名字和密码
Y
yma16 已提交
146 147 148
              name: that.ruleForm.name,
              password: that.ruleForm.pass,
            })
yma16's avatar
yma16 已提交
149
            .then(function (res) {
Y
yma16 已提交
150 151
              console.log("成功post", res);
              console.log(res.data.code);
yma16's avatar
yma16 已提交
152
              if (res.data.code === 0) {
Y
yma16 已提交
153 154 155 156 157 158 159 160 161
                console.log("重名");
                console.log(that.$cookies.get("user_session")); // 取出cookies的user_session
                console.log(that.$cookies); // 存在
                document.cookie = `user=${that.ruleForm.name}`;
                that.register_error = true;
                that.$message({
                  message: "名称重复" + that.ruleForm.name + "!",
                  type: "error",
                });
yma16's avatar
yma16 已提交
162 163
                // console.log(this.$cookies)
              } else {
Y
yma16 已提交
164 165 166 167 168 169
                that.register_success = true;
                console.log("时间节点");
                that.$message({
                  message: "注册成功,欢迎您," + that.ruleForm.name + "!",
                  type: "success",
                });
yma16's avatar
yma16 已提交
170 171 172 173 174 175 176 177 178 179 180 181
                // let token={'user':res.data.name};//传递主码用户名即可
                // this.$cookie.set('token',token,1);//设置token

                // console.log('token设置');
                // let token=this.$cookie.get('token');
                // console.log(token);

                // console.log('设置token成功!');
              }
            })
            .catch(function (res) {
              // 获取res中的name
Y
yma16 已提交
182 183 184 185 186 187 188
              that.$message({
                message: "注册失败" + that.ruleForm.name + "!",
                type: "error",
              });
              alert("后端的问题!");
              console.log("失败post", res);
            });
yma16's avatar
yma16 已提交
189 190
        } else {
          // alert("no submit!");
Y
yma16 已提交
191 192 193 194 195
          console.log("前端的问题!");
          that.$message({
            message: "注册失败" + that.ruleForm.name + "!",
            type: "error",
          });
yma16's avatar
yma16 已提交
196
          // console.log(this.$cookies);
Y
yma16 已提交
197
          return false;
yma16's avatar
yma16 已提交
198
        }
Y
yma16 已提交
199
      });
yma16's avatar
yma16 已提交
200
    },
Y
yma16 已提交
201 202 203 204 205
    resetForm(formName) {
      this.$refs[formName].resetFields();
    },
  },
};
yma16's avatar
yma16 已提交
206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233
</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>