疯狂的狮子li
2022-05-12 af6a08398e2bc22f3c8a3a615cbd9e23190be906
ruoyi-ui/src/views/register.vue
@@ -86,7 +86,8 @@
        password: "",
        confirmPassword: "",
        code: "",
        uuid: ""
        uuid: "",
        user_type: "sys_user"
      },
      registerRules: {
        username: [
@@ -124,7 +125,9 @@
      this.$refs.registerForm.validate(valid => {
        if (valid) {
          this.loading = true;
          register(this.registerForm).then(res => {
          let registerForm = this.registerForm;
          registerForm.userType = "sys_user"
          register(registerForm).then(res => {
            const username = this.registerForm.username;
            this.$alert("<font color='red'>恭喜你,您的账号 " + username + " 注册成功!</font>", '系统提示', {
              dangerouslyUseHTMLString: true,