login.vue 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  1. <template>
  2. <view class="zx-page-linear login-page">
  3. <view class="title-wrap">
  4. <view class="title">{{ $t('欢迎来到智寻出行') }}</view>
  5. <view class="sub-title">{{ $t('邮箱密码登录') }}</view>
  6. </view>
  7. <view class="main">
  8. <ZxInput
  9. v-model="form.email"
  10. :hightlight="checkShakeObj.email"
  11. :placeholder="$t('请输入邮箱账号')"
  12. />
  13. <ZxInput
  14. v-model="form.passwd"
  15. :placeholder="$t('请输入密码')"
  16. isPassword
  17. />
  18. <view
  19. :class="['agreement-row', checkShakeObj.agreemen && 'shake']"
  20. @tap="isCheckAgreement = !isCheckAgreement"
  21. >
  22. <view :class="['checkbox', isCheckAgreement && 'is-checked']"/>
  23. {{ $t('已阅读并同意') }}
  24. <text class="text" @tap.stop="handleAgreementLink('270')">《{{$t('用户协议')}}》</text>
  25. {{ $t('和') }}<text class="text" @tap.stop="handleAgreementLink('102')">《{{$t('隐私政策')}}》</text>
  26. </view>
  27. <view
  28. :class="['zx-form-btn', isSubmt && 'is-submit']"
  29. @tap="loginHandle"
  30. >
  31. {{ $t('登录') }}
  32. </view>
  33. <view class="register-row">
  34. <view class="forget" @tap="routerLink('/pages/loginRegister/forgetPassword')">
  35. {{ $t('忘记密码') }}
  36. </view>
  37. <view class="split-line"/>
  38. <view class="register" @tap="routerLink('/pages/loginRegister/register')">
  39. {{ $t('没有账号 立即注册') }}
  40. </view>
  41. </view>
  42. <view class="other-type-login">
  43. <view class="title">{{ $t('其他方式登录') }}</view>
  44. <view class="types">
  45. <image :src="QINIU_URL + 'Fg14B6UDuR6pLD1uR10mBE_y2vbf'" class="icon" />
  46. <image :src="QINIU_URL + 'FlZRWQZ301H8rP2_LwUdjnSUTQop'" class="icon" />
  47. </view>
  48. </view>
  49. </view>
  50. </view>
  51. </template>
  52. <script>
  53. import { QINIU_URL, emailRegex } from '@/common/constant'
  54. import ZxInput from './components/ZxInput.vue'
  55. const config = require('@/common/config.js');
  56. const http = require('@/common/http.js');
  57. const common = require('@/common/common.js');
  58. const storage = require('@/common/storage.js');
  59. export default {
  60. data() {
  61. return {
  62. QINIU_URL,
  63. isCheckAgreement: false,
  64. checkShakeObj: {
  65. email: false,
  66. password: false,
  67. agreemen: false
  68. },
  69. form: {
  70. email: '',
  71. passwd: ''
  72. }
  73. }
  74. },
  75. components: {
  76. ZxInput
  77. },
  78. computed: {
  79. isSubmt({ form }) {
  80. return form.email && form.passwd
  81. }
  82. },
  83. methods: {
  84. clearInput(val) {
  85. this.$set(this.form, val, '')
  86. },
  87. routerLink(url) {
  88. uni.navigateTo({ url })
  89. },
  90. handleAgreementLink(id) {
  91. uni.navigateTo({
  92. url: `/pages/contract/contract?contract_id=${id}`
  93. })
  94. },
  95. _applyCheck(field, message) {
  96. this.checkShakeObj[field] = true;
  97. setTimeout(() => {
  98. this.checkShakeObj[field] = false;
  99. }, 500)
  100. uni.showToast({ title: message, icon: 'none' })
  101. },
  102. loginHandle() {
  103. if (!this.isCheckAgreement) {
  104. this._applyCheck('agreemen', this.$t('请勾选用户协议和隐私政策'))
  105. return
  106. }
  107. if (!emailRegex.test(this.form.email)) {
  108. this._applyCheck('email', this.$t('请输入有效的邮箱地址'))
  109. return
  110. }
  111. http.postApi(config.API_LOGIN, this.form, res => {
  112. if (res.succeed) {
  113. //
  114. const { baseInfo } = res.body.data
  115. storage.setUserInfoData(baseInfo)
  116. storage.setUserToken(baseInfo.token)
  117. common.simpleToast('登录成功')
  118. uni.reLaunch({
  119. url: '/pages/index/index',
  120. })
  121. }
  122. })
  123. }
  124. }
  125. }
  126. </script>
  127. <style lang="scss" scoped>
  128. @import "@/libs/css/layout.scss";
  129. .login-page {
  130. padding: 94rpx 40rpx 64rpx;
  131. box-sizing: border-box;
  132. .title-wrap {
  133. .title {
  134. font-family: PingFangSC, PingFang SC;
  135. font-weight: 600;
  136. font-size: 56rpx;
  137. color: #060809;
  138. line-height: 56rpx;
  139. text-align: left;
  140. font-style: normal;
  141. margin-bottom: 24rpx;
  142. }
  143. .sub-title {
  144. font-family: PingFangSC, PingFang SC;
  145. font-weight: 400;
  146. font-size: 28rpx;
  147. color: #060809;
  148. line-height: 28rpx;
  149. text-align: left;
  150. font-style: normal;
  151. }
  152. }
  153. .main {
  154. margin: 64rpx 0 0 0;
  155. .agreement-row {
  156. margin: 2rpx 0 64rpx;
  157. display: flex;
  158. align-items: center;
  159. font-family: PingFangSC, PingFang SC;
  160. font-weight: 400;
  161. font-size: 28rpx;
  162. color: #060809;
  163. &.shake {
  164. animation: shake 0.2s ease-in-out 0s 6;
  165. }
  166. .checkbox {
  167. width: 32rpx;
  168. height: 32rpx;
  169. margin-right: 16rpx;
  170. background: url('https://qiniu.bms16.com/Fh5aqDCxGKxEEVfxIQD9u6Ym9OLk');
  171. background-size: 100%;
  172. &.is-checked {
  173. background: url('https://qiniu.bms16.com/FhAi08ilxiBqUhFezVF9H9ff2VMm');
  174. background-size: 100%;
  175. }
  176. }
  177. .text {
  178. font-family: PingFangSC, PingFang SC;
  179. font-weight: 400;
  180. font-size: 28rpx;
  181. color: #0A59F7;
  182. &:active {
  183. opacity: .6;
  184. }
  185. }
  186. }
  187. .register-row {
  188. margin: 32rpx 80rpx 0;
  189. font-family: PingFangSC, PingFang SC;
  190. font-weight: bold;
  191. font-size: 28rpx;
  192. color: #0A59F7;
  193. display: flex;
  194. align-items: center;
  195. justify-content: center;
  196. .split-line {
  197. width: 2rpx;
  198. height: 28rpx;
  199. background: #CED3DE;
  200. margin: 0 30rpx 0 32rpx;
  201. }
  202. .forget {
  203. display: flex;
  204. align-items: center;
  205. &::after {
  206. content: "";
  207. width: 28rpx;
  208. height: 28rpx;
  209. background: url('https://qiniu.bms16.com/FrQ-eKUnkECvMImnNgd4w3p5-NLd');
  210. background-size: 100%;
  211. }
  212. }
  213. .register {
  214. display: flex;
  215. align-items: center;
  216. &::after {
  217. content: "";
  218. width: 28rpx;
  219. height: 28rpx;
  220. background: url('https://qiniu.bms16.com/FtGhNkwKlhR7hOZsaj0gmRl9KjPx');
  221. background-size: 100%;
  222. }
  223. }
  224. }
  225. }
  226. .other-type-login {
  227. position: absolute;
  228. bottom: 64rpx;
  229. left: 0;
  230. right: 0;
  231. width: 100%;
  232. display: flex;
  233. align-items: center;
  234. flex-direction: column;
  235. .title {
  236. font-family: PingFangSC, PingFang SC;
  237. font-weight: 400;
  238. font-size: 28rpx;
  239. color: #060809;
  240. margin-bottom: 40rpx;
  241. }
  242. .types {
  243. display: flex;
  244. .icon {
  245. width: 96rpx;
  246. height: 96rpx;
  247. &:nth-child(1) {
  248. margin-right: 146rpx;
  249. }
  250. }
  251. }
  252. }
  253. }
  254. </style>