后端

login.vue 4.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. <template>
  2. <div class="site-wrapper site-page--login">
  3. <div class="site-content__wrapper">
  4. <div class="site-content">
  5. <div class="brand-info">
  6. <h2 class="brand-info__text">科袖会议管理系统</h2>
  7. <p class="brand-info__intro">提供一套更优的会议管理解决方案。</p>
  8. </div>
  9. <div class="login-main">
  10. <h3 class="login-title">管理员登录</h3>
  11. <el-form :model="dataForm" :rules="dataRule" ref="dataForm" @keyup.enter.native="dataFormSubmit()" status-icon>
  12. <el-form-item prop="userName">
  13. <el-input v-model="dataForm.userName" placeholder="帐号"></el-input>
  14. </el-form-item>
  15. <el-form-item prop="password">
  16. <el-input v-model="dataForm.password" type="password" placeholder="密码"></el-input>
  17. </el-form-item>
  18. <el-form-item prop="captcha">
  19. <el-row :gutter="20">
  20. <el-col :span="14">
  21. <el-input v-model="dataForm.captcha" placeholder="验证码">
  22. </el-input>
  23. </el-col>
  24. <el-col :span="10" class="login-captcha">
  25. <img :src="captchaPath" @click="getCaptcha()" alt="">
  26. </el-col>
  27. </el-row>
  28. </el-form-item>
  29. <el-form-item>
  30. <el-button class="login-btn-submit" type="primary" @click="dataFormSubmit()">登录</el-button>
  31. </el-form-item>
  32. </el-form>
  33. </div>
  34. </div>
  35. </div>
  36. </div>
  37. </template>
  38. <script>
  39. import { getUUID } from '@/utils'
  40. export default {
  41. data () {
  42. return {
  43. dataForm: {
  44. userName: '',
  45. password: '',
  46. uuid: '',
  47. captcha: ''
  48. },
  49. dataRule: {
  50. userName: [
  51. { required: true, message: '帐号不能为空', trigger: 'blur' }
  52. ],
  53. password: [
  54. { required: true, message: '密码不能为空', trigger: 'blur' }
  55. ],
  56. captcha: [
  57. { required: true, message: '验证码不能为空', trigger: 'blur' }
  58. ]
  59. },
  60. captchaPath: ''
  61. }
  62. },
  63. created () {
  64. this.getCaptcha()
  65. },
  66. methods: {
  67. // 提交表单
  68. dataFormSubmit () {
  69. this.$refs['dataForm'].validate((valid) => {
  70. if (valid) {
  71. this.$http({
  72. url: this.$http.adornUrl('/sys/login'),
  73. method: 'post',
  74. data: this.$http.adornData({
  75. 'username': this.dataForm.userName,
  76. 'password': this.dataForm.password,
  77. 'uuid': this.dataForm.uuid,
  78. 'captcha': this.dataForm.captcha
  79. })
  80. }).then(({data}) => {
  81. if (data && data.code === 0) {
  82. this.$cookie.set('token', data.token)
  83. this.$router.replace({ name: 'home' })
  84. } else {
  85. this.getCaptcha()
  86. this.$message.error(data.msg)
  87. }
  88. })
  89. }
  90. })
  91. },
  92. // 获取验证码
  93. getCaptcha () {
  94. this.dataForm.uuid = getUUID()
  95. this.captchaPath = this.$http.adornUrl(`/captcha.jpg?uuid=${this.dataForm.uuid}`)
  96. }
  97. }
  98. }
  99. </script>
  100. <style lang="scss">
  101. .site-wrapper.site-page--login {
  102. position: absolute;
  103. top: 0;
  104. right: 0;
  105. bottom: 0;
  106. left: 0;
  107. background-color: rgba(38, 50, 56, .6);
  108. overflow: hidden;
  109. &:before {
  110. position: fixed;
  111. top: 0;
  112. left: 0;
  113. z-index: -1;
  114. width: 100%;
  115. height: 100%;
  116. content: "";
  117. background-image: url(~@/assets/img/login_bg.jpg);
  118. background-size: cover;
  119. }
  120. .site-content__wrapper {
  121. position: absolute;
  122. top: 0;
  123. right: 0;
  124. bottom: 0;
  125. left: 0;
  126. padding: 0;
  127. margin: 0;
  128. overflow-x: hidden;
  129. overflow-y: auto;
  130. background-color: transparent;
  131. }
  132. .site-content {
  133. min-height: 100%;
  134. padding: 30px 500px 30px 30px;
  135. }
  136. .brand-info {
  137. margin: 220px 100px 0 90px;
  138. color: #fff;
  139. }
  140. .brand-info__text {
  141. margin: 0 0 22px 0;
  142. font-size: 48px;
  143. font-weight: 400;
  144. text-transform : uppercase;
  145. }
  146. .brand-info__intro {
  147. margin: 10px 0;
  148. font-size: 16px;
  149. line-height: 1.58;
  150. opacity: .6;
  151. }
  152. .login-main {
  153. position: absolute;
  154. top: 0;
  155. right: 0;
  156. padding: 150px 60px 180px;
  157. width: 470px;
  158. min-height: 100%;
  159. background-color: #fff;
  160. }
  161. .login-title {
  162. font-size: 16px;
  163. }
  164. .login-captcha {
  165. overflow: hidden;
  166. > img {
  167. width: 100%;
  168. cursor: pointer;
  169. }
  170. }
  171. .login-btn-submit {
  172. width: 100%;
  173. margin-top: 38px;
  174. }
  175. }
  176. </style>