LoginPage.vue 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  1. <template>
  2. <div class="login-wrapper">
  3. <div class="content">
  4. <span class="sys-type animate__animated animate__bounceIn">企业端</span>
  5. <img src="@/assets/imgs/login/logo-ent.png" alt="" class="logo" />
  6. <div class="main">
  7. <span class="main-title">浦东航务云平台</span>
  8. <el-form :model="formData" class="main-form" :rules="formRules" ref="form">
  9. <el-form-item prop="userName">
  10. <el-input v-model="formData.userName" placeholder="账号">
  11. <template #prefix>
  12. <i class="input-prefix icon-username"></i>
  13. </template>
  14. </el-input>
  15. </el-form-item>
  16. <el-form-item prop="password">
  17. <el-input v-model="formData.password" type="password" placeholder="密码">
  18. <template #prefix>
  19. <i class="input-prefix icon-password"></i>
  20. </template>
  21. </el-input>
  22. </el-form-item>
  23. <el-form-item prop="vCode">
  24. <el-input v-model="formData.vCode" placeholder="验证码">
  25. <template #prefix>
  26. <i class="input-prefix icon-vcode"></i>
  27. </template>
  28. <template #suffix>
  29. <canvas @click="changeValidCode" id="validCode" class="valid-code"></canvas>
  30. </template>
  31. </el-input>
  32. </el-form-item>
  33. </el-form>
  34. <el-button
  35. class="main-btn animate__animated"
  36. :class="{ animate__headShake: loginDeny }"
  37. :loading="isLoading"
  38. @click="handleLogin"
  39. >登录
  40. </el-button>
  41. </div>
  42. </div>
  43. </div>
  44. </template>
  45. <script setup lang="ts">
  46. import { reactive, onMounted, ref } from 'vue'
  47. // @ts-ignore
  48. import { drawPic } from '@/utils/valid-code'
  49. import { ElMessage } from 'element-plus'
  50. import 'element-plus/es/components/message/style/css'
  51. import type { FormInstance, FormRules } from 'element-plus'
  52. onMounted(() => {
  53. changeValidCode()
  54. })
  55. interface IForm {
  56. userName: string
  57. password: string
  58. vCode: string
  59. vCodeReal: string
  60. }
  61. const formData = reactive<IForm>({
  62. userName: '',
  63. password: '',
  64. vCode: '',
  65. vCodeReal: ''
  66. })
  67. const formRules = reactive<FormRules<IForm>>({
  68. userName: [{ required: true, message: '请输入账号', trigger: 'blur' }],
  69. password: [{ required: true, message: '请输入密码', trigger: 'blur' }],
  70. vCode: [
  71. {
  72. required: true,
  73. trigger: 'blur',
  74. validator: (rule: any, value: string, callback: any) => {
  75. if (value === '') {
  76. callback(new Error('请输入验证码'))
  77. } else {
  78. let reg = new RegExp(`^${formData.vCodeReal}$`, 'i')
  79. if (!reg.test(value)) {
  80. callback(new Error('验证码错误'))
  81. changeValidCode()
  82. setTimeout(() => {
  83. formData.vCode = ''
  84. }, 200)
  85. } else {
  86. callback()
  87. }
  88. }
  89. }
  90. }
  91. ]
  92. })
  93. function changeValidCode() {
  94. formData.vCodeReal = drawPic()
  95. }
  96. const isLoading = ref<boolean>(false)
  97. const form = ref<FormInstance>()
  98. const loginDeny = ref<boolean>(false)
  99. function handleLogin() {
  100. form.value?.validate((valid: boolean) => {
  101. if (valid) {
  102. isLoading.value = true
  103. // 登录处理
  104. ElMessage({ type: 'success', message: '验证通过' })
  105. // let Base64 = require("js-base64").Base64
  106. /* Login(
  107. this.formData.userName,
  108. // Base64.encode(this.formData.password),
  109. this.formData.password
  110. ).then(res => {
  111. }) */
  112. setTimeout(() => {
  113. isLoading.value = false
  114. }, 2000)
  115. } else {
  116. loginDeny.value = true
  117. setTimeout(() => {
  118. loginDeny.value = false
  119. }, 1000)
  120. }
  121. })
  122. }
  123. </script>
  124. <style lang="scss" scoped>
  125. .login-wrapper {
  126. position: relative;
  127. width: 100vw;
  128. height: 100vh;
  129. min-width: 1366px;
  130. min-height: 768px;
  131. background: url('@/assets/imgs/login/bg.jpg') no-repeat;
  132. background-size: cover;
  133. background-position: center;
  134. user-select: none;
  135. .content {
  136. position: absolute;
  137. left: 50%;
  138. top: 50%;
  139. transform: translateY(-50%) translateX(-50%);
  140. width: 1230px;
  141. height: 747px;
  142. background: #fff;
  143. border-radius: 10px;
  144. display: flex;
  145. align-items: center;
  146. justify-content: space-around;
  147. .sys-type {
  148. position: absolute;
  149. color: #404040;
  150. top: 27px;
  151. left: 39px;
  152. font-size: 18px;
  153. }
  154. .logo {
  155. width: 567px;
  156. height: 536px;
  157. }
  158. .main {
  159. height: 460px;
  160. display: flex;
  161. flex-direction: column;
  162. align-items: center;
  163. justify-content: space-between;
  164. .main-title {
  165. font-size: 30px;
  166. font-weight: bold;
  167. color: #404040;
  168. }
  169. .main-form {
  170. height: 220px;
  171. display: flex;
  172. flex-direction: column;
  173. justify-content: space-between;
  174. :deep(.el-form-item) {
  175. .el-input {
  176. width: 348px;
  177. height: 42px;
  178. .el-input__wrapper {
  179. box-shadow: none !important;
  180. border: none;
  181. border-bottom: 1px solid #d3d3d3;
  182. border-radius: 0;
  183. display: flex;
  184. align-items: center;
  185. }
  186. .el-input__inner {
  187. font-size: 20px;
  188. color: #999999;
  189. // padding: 0 0 0 10px;
  190. height: 100%;
  191. }
  192. }
  193. .el-form-item__error {
  194. font-size: 14px;
  195. margin: 6px 0 0 55px;
  196. }
  197. }
  198. .input-prefix {
  199. display: block;
  200. width: 32px;
  201. height: 32px;
  202. &.icon-username {
  203. background: url('@/assets/imgs/login/icon-account.png');
  204. background-size: contain;
  205. }
  206. &.icon-password {
  207. background: url('@/assets/imgs/login/icon-pwd.png');
  208. background-size: contain;
  209. }
  210. &.icon-vcode {
  211. background: url('@/assets/imgs/login/icon-code.png');
  212. background-size: contain;
  213. }
  214. }
  215. .valid-code {
  216. width: 90px;
  217. height: 36px;
  218. cursor: pointer;
  219. }
  220. }
  221. .main-btn {
  222. width: 348px;
  223. height: 60px;
  224. background: #1966ff;
  225. border-radius: 30px;
  226. font-size: 22px;
  227. color: #fefefe;
  228. &:hover {
  229. filter: brightness(1.2);
  230. }
  231. }
  232. }
  233. }
  234. }
  235. </style>