login.vue 7.6 KB

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