首页 > 其他分享 >登录注册页面

登录注册页面

时间:2023-06-10 23:55:12浏览次数:62  
标签:注册 登录 -- res trigger background blur message 页面

登录页面

<template>
  <div class="wrapper">
    <div style="height: 60px; line-height: 60px; font-size: 20px; padding-left: 50px; color: white;
      background-color: rgba(0,0,0,0.2)">旧物置换平台
    </div>
    <div
        style="margin: 150px auto; background-color: #ffffff; width: 800px; height: 387px; padding: 20px; border-radius: 20px">
<!--      <div id="myBox">-->

        <div id="myImg" style="margin:0px">

        </div>
          <div id="loadStyle">
            <div style="margin: 20px 0; text-align: center; font-size: 24px; "><b>登 录</b></div>
            <el-form :model="user" :rules="rules" ref="userForm">
              <el-form-item prop="username">
                <el-input size="medium" prefix-icon="el-icon-user" v-model="user.username"></el-input>
              </el-form-item>
              <el-form-item prop="password">
                <el-input size="medium" prefix-icon="el-icon-lock" show-password v-model="user.password"></el-input>
              </el-form-item>
<!--                        <el-form-item>-->
<!--                          <div style="display: flex">-->
<!--                            <el-input size="mid" v-model="code" style="width: 200px"></el-input>-->
<!--                            <span @click="refreshCode" style="cursor: pointer; flex: 1;">-->
<!--                            <Identify :identifyCode="identifyCode"></Identify>-->
<!--                         </span>-->
<!--                          </div>-->
<!--                        </el-form-item>-->

              <el-form-item style="display: flex; margin: 10px 0; text-align: right">
                <el-button id="mybutton" round type="primary" size="small" autocomplete="off" @click="login">登录
                </el-button>
                <hr style="width: 230px; margin: 10px auto 5px;background-color:#d5d5d5; height:1px; border:none;"/>
                <div style="font-size:10px;text-align: center;color: #888888;padding: 10px">其他登录方式</div>


              </el-form-item>
              <el-form-item style="margin: 10px 0; text-align: left">
                <el-button style="margin-left: 30px; color: #6c99d2" type="text" size="mid" autocomplete="off"
                           @click="$router.push('/register')">前往注册
                </el-button>
                <el-button style="float: right;margin-right: 30px;color: #6c99d2" type="text" size="mid"
                           autocomplete="off" @click="handlePass">找回密码
                </el-button>
              </el-form-item>
            </el-form>
          </div>



      </div>


<!--    </div>-->


    <el-dialog title="找回密码" :visible.sync="dialogFormVisible" width="30%">
      <el-form label-width="100px" size="small">
        <el-form-item label="用户名">
          <el-input v-model="pass.username" autocomplete="off"></el-input>
        </el-form-item>
        <el-form-item label="手机号">
          <el-input v-model="pass.phone" autocomplete="off"></el-input>
        </el-form-item>
      </el-form>
      <div slot="footer" class="dialog-footer">
        <el-button @click="dialogFormVisible = false">取 消</el-button>
        <el-button type="primary" @click="passwordBack">重置密码</el-button>
      </div>
    </el-dialog>
  </div>
</template>

<script>
import {resetRouter, setRoutes} from "@/router";
import Identify from "@/components/Identify";

export default {
  name: "Login",
  data() {
    return {
      user: {},
      pass: {},
      code: '',
      dialogFormVisible: false,
      // 图片验证码
      identifyCode: '',
      // 验证码规则
      identifyCodes: '3456789ABCDEFGHGKMNPQRSTUVWXY',
      rules: {
        username: [
          {required: true, message: '请输入用户名', trigger: 'blur'},
          {min: 3, max: 10, message: '长度在 3 到 5 个字符', trigger: 'blur'}
        ],
        password: [
          {required: true, message: '请输入密码', trigger: 'blur'},
          {min: 1, max: 20, message: '长度在 1 到 20 个字符', trigger: 'blur'}
        ],
      }
    }
  },
  components: {Identify},
  mounted() {
    // 重置路由
    resetRouter()
    this.refreshCode()
  },
  methods: {
    login() {
      if (this.code !== this.identifyCode.toLowerCase()) {
        this.$message({
          type: "error",
          message: "验证码错误"
        })
        return;
      }
      this.$refs['userForm'].validate((valid) => {
        if (valid) {  // 表单校验合法
          this.request.post("/user/login", this.user).then(res => {
            if (res.code === '200') {
              localStorage.setItem("user", JSON.stringify(res.data))  // 存储用户信息到浏览器
              localStorage.setItem("menus", JSON.stringify(res.data.menus))  // 存储用户信息到浏览器

              // 动态设置当前用户的路由
              setRoutes()
              if (res.data.role === 'ROLE_USER') {
                this.$router.push("/front/home")
                this.$message.success("登录成功")
              } else {
                this.$router.push("/")
                this.$message.success("登录成功")
              }
            } else {
              this.$message.error(res.msg)
            }
          })
        }
      });
    },
    // // 切换验证码
    // refreshCode() {
    //   this.identifyCode = ''
    //   this.makeCode(this.identifyCodes, 4)
    // },
    // // 生成随机验证码
    // makeCode(o, l) {
    //   for (let i = 0; i < l; i++) {
    //     this.identifyCode += this.identifyCodes[Math.floor(Math.random() * (this.identifyCodes.length))]
    //   }
    // },
    handlePass() {
      this.dialogFormVisible = true
      this.pass = {}
    },
    passwordBack() {
      this.request.put("/user/reset", this.pass).then(res => {
        if (res.code === '200') {
          this.$message.success("重置密码成功,新密码为:123,请尽快修改密码")
          this.dialogFormVisible = false
        } else {
          this.$message.error(res.msg)
        }
      })
    }
  }
}
</script>

<style>
.wrapper {
  height: 100vh;
  /*background-image: url("../assets/bg.jpg");*/
  background-color: #ff8c6b;;
  background-size: cover;
  overflow: hidden;
}

#myBox {
  margin: 0px;
  padding: 0px;
  /*height: 400px;*/
  /*width: 800px;*/
  /*border: #67C23A 1px solid;*/
}

#myImg {

  width: 370px;
  height: 350px;
  /*border: #1E90FF 1px solid;*/
  border-radius: 10px;
  float: left;
  background-color: #ffe0d2 ;
  background-image: url("../assets/loginBg.png");
  background-position: center;
  background-size: 100%;

}

#loadStyle {
  /*border: #1E90FF 1px solid;*/
  width: 350px;
  height: 350px;
  float:right;

  margin-right: 20px;
}

#mybutton {
  width: 280px;
  height: 40px;
  background-color: #69615E;
  margin: 10px 34px;
  border: none;
}

#mybutton:hover {
  background-color: black;
}
</style>
<style scoped lang="scss">
</style>

注册页面

<template>
  <div class="wrapper">
    <div style="height: 60px; line-height: 60px; font-size: 20px; padding-left: 50px; color: white;
      background-color: rgba(0,0,0,0.2)">旧物置换平台</div>
    <div style="margin: 150px auto; background-color: #fff; width: 800px; height: 387px; padding: 20px; border-radius: 20px">


      <div id="myImg" style="margin:0px"></div>
      <div id="registerStyle">
      <div style="margin: 20px 0; text-align: center; font-size: 24px"><b>注 册</b></div>
      <el-form :model="user" :rules="rules" ref="userForm">
        <el-form-item prop="username">
          <el-input placeholder="请输入账号" size="medium" prefix-icon="el-icon-user" v-model="user.username"></el-input>
        </el-form-item>
        <el-form-item prop="password">
          <el-input placeholder="请输入密码" size="medium" prefix-icon="el-icon-lock" show-password v-model="user.password"></el-input>
        </el-form-item>
        <el-form-item prop="confirmPassword">
          <el-input placeholder="请确认密码" size="medium" prefix-icon="el-icon-lock" show-password v-model="user.confirmPassword"></el-input>
        </el-form-item>
        <el-form-item style="margin: 5px 0; text-align: left">
          <el-button id="mybutton" round  type="primary" size="small"  autocomplete="off" @click="login">注册</el-button>
          <el-button  type="text" size="mid"  autocomplete="off" @click="$router.push('/login')">返回登录</el-button>

        </el-form-item>
      </el-form>
      </div>
    </div>
  </div>
</template>

<script>
export default {
  name: "Login",
  data() {
    return {
      user: {},
      rules: {
        username: [
          { required: true, message: '请输入用户名', trigger: 'blur' },
          { min: 3, max: 10, message: '长度在 3 到 5 个字符', trigger: 'blur' }
        ],
        password: [
          { required: true, message: '请输入密码', trigger: 'blur' },
          { min: 1, max: 20, message: '长度在 1 到 20 个字符', trigger: 'blur' }
        ],
        confirmPassword: [
          { required: true, message: '请输入密码', trigger: 'blur' },
          { min: 1, max: 20, message: '长度在 1 到 20 个字符', trigger: 'blur' }
        ],
      }
    }
  },
  methods: {
    login() {
      this.$refs['userForm'].validate((valid) => {
        if (valid) {  // 表单校验合法
          if (this.user.password !== this.user.confirmPassword) {
            this.$message.error("两次输入的密码不一致")
            return false
          }
          this.request.post("/user/register", this.user).then(res => {
            if(res.code === '200') {
              this.$message.success("注册成功")
            } else {
              this.$message.error(res.msg)
            }
          })
        }
      });
    }
  }
}
</script>

<style>
  .wrapper {
    height: 100vh;
    background-color: #ff8c6b;;
    background-size: cover;
    overflow: hidden;
  }

  #registerStyle{
    /*border: #1E90FF 1px solid;*/
    width: 350px;
    height: 350px;
    float:right;

    margin-right: 20px;
  }
  #myImg {

    width: 370px;
    height: 350px;
    /*border: #1E90FF 1px solid;*/
    border-radius: 10px;
    float: left;
    background-color: #ffe0d2 ;
    background-image: url("../assets/loginBg.png");
    background-position: center;
    background-size: 100%;

  }
</style>

标签:注册,登录,--,res,trigger,background,blur,message,页面
From: https://www.cnblogs.com/doublefeng0605/p/17472229.html

相关文章

  • Ubuntu免密登录腾讯云
    生成公钥ssh-keygen-trsa复制这个文件里的公钥在本地计算机上,使用SSH连接到腾讯云服务器:在连接到服务器的SSH会话中,使用以下命令编辑授权文件(如果不存在则创建)vi~/.ssh/authorized_keys将公钥写到里面退出重新登录success......
  • 去掉或修改页面底部的「动力源自 Bravada & WordPress.」字样
    打开:……/wp-content/themes/bravada/includes/core.php定位至位于第400行左右的「bravada_master_footer」处;做相应修改。参考:https://blog.csdn.net/qq_45790384/article/details/127335865......
  • VirtualBox 导入/注册 虚拟机文件 .vbox 失败
    VirtualBox导入/注册虚拟机文件.vbox失败问题情景Error:Failedtoopenvirtualmachinelocatedin<.vbox所在目录>.ErrorinJ:\<.vbox所在目录>(line59)--Invalidvalue'WAS'inAudioAdapter/@driverattribute.F:\tinderbox\win-6.1\src\VBox\Main......
  • vuex使用,Router使用(做两个主页面的跳转),路由守卫(对路由进行权限控制),路由的工作模式
    vuex使用使用的流程文件中的代码前端页面<template><div><h1>使用vuex</h1>购物车商品数量:{{num}}购物车的数量:{{$store.state.num}}<br><button@click="yjx">加数量</button></div></template><sc......
  • Windows 2012 配置远程桌面帐户允许多用户同时登录
    WindowsServer2008之后的操作系统默认只能存在一个用户会话,通过以下设置,可以开启多用户同时登陆服务器。1、启用远程桌面打开任务栏左下角的“服务器管理器”,在左侧列表中选中“本地服务器”或者在"我的电脑“上右键属性---远程设置。然后将右侧“远程桌面”功能的选项修改为“启......
  • 前端vue实现页面加水印文字 单个页面所有页面加水印 水印颜色
    前端vue实现页面加水印文字,可以实现系统所有页面加水印,也可以单个页面加水印,可更改水印颜色, 下载完整代码请访问uni-app插件市场地址: https://ext.dcloud.net.cn/plugin?id=12889效果图如下:   ####使用方法```使用方法/*给系统所有页面加水印*///第一个......
  • Eureka注册中心的使用
    简单介绍:Eureka能够自动注册并发现微服务,然后对服务的状态、信息进行集中管理,这样当我们需要获取其他服务的信息时,我们只需要向Eureka进行查询就可以了。首先在工程中搭建一个Eureka服务器只需要创建一个新的Maven项目即可需要父工程有SpringCloud依赖,如果没有添加依......
  • imessages数据检测,imessages过蓝检测,用applescript检测手机号码是否注册imessage实
    一、检测iMessage发送数据的2种方式:1.人工筛选,将要验证的号码输出到文件中,以逗号分隔。再将文件中的号码粘贴到iMessage客户端的地址栏,iMessage客户端会自动逐个检验该号码是否为iMessage账号,检验速度视网速而定。红色表示不是iMessage账号,蓝色表示iMessage账号。2.编写脚本控制......
  • pc页面改为响应式布局宽度问题
    我们加了如下标签,使pc页面变为响应式布局<metaname="viewport"content="width=device-width,initial-scale=1">在编写pc页面,如果不适用flex布局(伸缩布局),为了让版心居中我们通常添加如下css:.content{box-sizing:content-box;marg......
  • Python 用户登录程序
    用户登录程序任务内容1、输入用户名和密码2、认证成功后显示欢迎信息3、输错3次后锁定流程图代码1、主文件importsyslock="lock.txt"logfile="login.txt"login_info=0i=0whilei<3andlogin_info==0:name=input("Pleaseinputyourname......