login.vue 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. <template>
  2. <div>
  3. <div class="box">
  4. <div class="contentBox">
  5. <van-row justify="center">
  6. <van-col>
  7. <van-image
  8. width="100px"
  9. height="100px"
  10. :src="logo"
  11. />
  12. </van-col>
  13. </van-row>
  14. <van-form style="width: 90vw;margin: 30px 0 0 5vw;">
  15. <van-cell-group inset>
  16. <van-field
  17. v-model="loginFormData.username"
  18. label="用户名"
  19. placeholder="请输入用户名"
  20. size="large"
  21. />
  22. <van-field v-model="unencrypted" label="密码" placeholder="请输入密码" size="large"/>
  23. <van-field v-model="loginFormData.captcha" placeholder="请输入验证码" size="large">
  24. <template #button>
  25. <van-image :src="captchaPicture" width="25vw" height="4vh" @click="getCaptcha"/>
  26. </template>
  27. </van-field>
  28. </van-cell-group>
  29. </van-form>
  30. <van-row style="margin-top: 4vh">
  31. <van-col :span="20" :offset="2">
  32. <van-button type="primary" size="large" @click="userLogin">登录</van-button>
  33. </van-col>
  34. </van-row>
  35. </div>
  36. </div>
  37. </div>
  38. </template>
  39. <script setup>
  40. import { captcha, routerPublicKey, register } from '@/api/login.js'
  41. import logo from '@/assets/logo.png'
  42. import { JSEncrypt } from 'jsencrypt'
  43. import { useUserStore } from '@/pinia/modules/user.js'
  44. const router = useRouter()
  45. const userStore = useUserStore()
  46. defineOptions({
  47. name: 'Login',
  48. })
  49. onMounted(() => {
  50. getCaptcha()
  51. getPublicKey()
  52. })
  53. // 未加密密码
  54. const unencrypted = ref('')
  55. // 登录数据
  56. const loginFormData = reactive({
  57. username: '',
  58. password: '',
  59. captcha: '',
  60. captchaId: ''
  61. })
  62. // 验证码图片
  63. const captchaPicture = ref('')
  64. // 获取验证码
  65. const getCaptcha = () => {
  66. captcha().then(res => {
  67. if (res.code === 0) {
  68. captchaPicture.value = res.data.picPath
  69. loginFormData.captchaId = res.data.captchaId
  70. }
  71. })
  72. }
  73. // 公钥
  74. const publicKey = ref('')
  75. // 获取公钥
  76. const getPublicKey = () => {
  77. routerPublicKey().then(res => {
  78. if (res.code === 0) {
  79. publicKey.value = res.data.publicKey
  80. }
  81. })
  82. }
  83. // 登录
  84. const userLogin = () => {
  85. // 密码rsa加密
  86. let encryptor = new JSEncrypt()
  87. encryptor.setPublicKey(publicKey.value)
  88. loginFormData.password = encryptor.encrypt(unencrypted.value)
  89. // 执行登录
  90. register(loginFormData).then(res => {
  91. if (res.code === 0) {
  92. const data = res.data
  93. userStore.updateInfo(res.data)
  94. router.push({path: '/navigation'})
  95. }
  96. })
  97. }
  98. </script>
  99. <style scoped lang="scss">
  100. .box {
  101. width: 100vw;
  102. height: 100vh;
  103. position: fixed;
  104. background-color: #f7f8fa;
  105. display: flex;
  106. align-items: center;
  107. justify-content: center;
  108. .contentBox{
  109. width: 100vw;
  110. height: 50vh;
  111. }
  112. }
  113. </style>