login.vue 7.7 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('欢迎来到') }}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. :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('没有账号') + ' ' + $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. uni.setStorageSync('storage_user_token', baseInfo.token);
  118. common.simpleToast(this.$t('登录成功'))
  119. uni.reLaunch({
  120. url: '/pages/index/index',
  121. })
  122. }
  123. },err=>{
  124. console.log(err)
  125. })
  126. }
  127. }
  128. }
  129. </script>
  130. <style lang="scss" scoped>
  131. @import "@/libs/css/layout.scss";
  132. .login-page {
  133. padding: 0 40rpx 64rpx;
  134. box-sizing: border-box;
  135. .title-wrap {
  136. .title {
  137. font-family: PingFangSC, PingFang SC;
  138. font-weight: 800;
  139. font-size: 56rpx;
  140. color: #060809;
  141. line-height: 56rpx;
  142. text-align: left;
  143. font-style: normal;
  144. margin-bottom: 24rpx;
  145. }
  146. .sub-title {
  147. font-family: PingFangSC, PingFang SC;
  148. font-weight: 400;
  149. font-size: 28rpx;
  150. color: #060809;
  151. line-height: 28rpx;
  152. text-align: left;
  153. font-style: normal;
  154. }
  155. }
  156. .main {
  157. margin: 64rpx 0 0 0;
  158. .agreement-row {
  159. margin: 2rpx 0 64rpx;
  160. display: flex;
  161. align-items: center;
  162. font-family: PingFangSC, PingFang SC;
  163. font-weight: 400;
  164. font-size: 28rpx;
  165. color: #060809;
  166. &.shake {
  167. animation: shake 0.2s ease-in-out 0s 6;
  168. }
  169. .checkbox {
  170. width: 32rpx;
  171. height: 32rpx;
  172. margin-right: 16rpx;
  173. background: url('https://qiniu.bms16.com/Fh5aqDCxGKxEEVfxIQD9u6Ym9OLk');
  174. background-size: 100%;
  175. &.is-checked {
  176. background: url('https://qiniu.bms16.com/FhAi08ilxiBqUhFezVF9H9ff2VMm');
  177. background-size: 100%;
  178. }
  179. }
  180. .text {
  181. font-family: PingFangSC, PingFang SC;
  182. font-weight: 400;
  183. font-size: 28rpx;
  184. color: #0A59F7;
  185. &:active {
  186. opacity: .6;
  187. }
  188. }
  189. }
  190. .register-row {
  191. margin: 32rpx 80rpx 0;
  192. font-family: PingFangSC, PingFang SC;
  193. font-weight: bold;
  194. font-size: 28rpx;
  195. color: #0A59F7;
  196. display: flex;
  197. align-items: center;
  198. justify-content: center;
  199. .split-line {
  200. width: 2rpx;
  201. height: 28rpx;
  202. background: #CED3DE;
  203. margin: 0 30rpx 0 32rpx;
  204. }
  205. .forget {
  206. display: flex;
  207. align-items: center;
  208. // &::after {
  209. // content: "";
  210. // width: 28rpx;
  211. // height: 28rpx;
  212. // background: url('https://qiniu.bms16.com/FrQ-eKUnkECvMImnNgd4w3p5-NLd');
  213. // background-size: 100%;
  214. // }
  215. }
  216. .register {
  217. display: flex;
  218. align-items: center;
  219. &::after {
  220. content: "";
  221. width: 28rpx;
  222. height: 28rpx;
  223. background: url('https://qiniu.bms16.com/FtGhNkwKlhR7hOZsaj0gmRl9KjPx');
  224. background-size: 100%;
  225. }
  226. }
  227. }
  228. }
  229. .other-type-login {
  230. position: absolute;
  231. bottom: 64rpx;
  232. left: 0;
  233. right: 0;
  234. width: 100%;
  235. display: flex;
  236. align-items: center;
  237. flex-direction: column;
  238. .title {
  239. font-family: PingFangSC, PingFang SC;
  240. font-weight: 400;
  241. font-size: 28rpx;
  242. color: #060809;
  243. margin-bottom: 40rpx;
  244. }
  245. .types {
  246. display: flex;
  247. .icon {
  248. width: 96rpx;
  249. height: 96rpx;
  250. &:nth-child(1) {
  251. margin-right: 146rpx;
  252. }
  253. }
  254. }
  255. }
  256. }
  257. </style>