login.vue 7.8 KB

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