index.vue 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. <template>
  2. <!-- <page ref="pageRef" :nav="false" :bgColor="'url(' + ossurl.login.loginbj + ')no-repeat 100% 100%'">
  3. </page> -->
  4. <view class="loginBj" :style="'background:url(' + ossurl.login.loginbj + ')no-repeat; background-size: 100% 100%;'">
  5. <view class="p30" style="margin-bottom: 50rpx;">
  6. <image class="image" :src="ossurl.home.logText" mode="widthFix" />
  7. </view>
  8. <view class="form p30">
  9. <u-form labelPosition="left" ref="form">
  10. <u-form-item label="手机号" prop="phone" borderBottom labelWidth="80">
  11. <u--input v-model="phone" border="none" type="number" placeholder="手机号"></u--input>
  12. </u-form-item>
  13. <u-form-item label="验证码" prop="code" labelWidth="80" borderBottom>
  14. <u--input v-model="verifyCode" border="none" placeholder="请填写验证码"></u--input>
  15. <u-button slot="right" @click="getVerifycode()" color="#000000" :text="tips" type="success" size="mini"
  16. :disabled="disabled"></u-button>
  17. </u-form-item>
  18. </u-form>
  19. <u-code ref="uCode" @change="codeChange" seconds="60" @start="disabled = true"
  20. @end="disabled = false"></u-code>
  21. </view>
  22. <view class="bottom">
  23. <view class="agree" @click="agreeFlag = !agreeFlag">
  24. <radio :checked="agreeFlag" style="transform: scale(0.6)" color="#8b3dff" />
  25. <text>
  26. 我已阅读并同意
  27. <text class="color-theme" @click.stop="show('user')">《用户协议》</text>
  28. <text class="color-theme" @click.stop="show('privacy')">《隐私政策》</text>
  29. </text>
  30. </view>
  31. <view class=" " style="padding-top: 30rpx; text-align: center">
  32. <button class="btn" @click="handleLogin">
  33. 登录
  34. </button>
  35. <view class="btn_back" @click.stop="$router.back()">返回</view>
  36. </view>
  37. </view>
  38. </view>
  39. </template>
  40. <script>
  41. import ossurl from '@/utils/ossurl'
  42. import {
  43. H5
  44. } from '@/utils/config'
  45. import store from '@/store'
  46. export default {
  47. data() {
  48. return {
  49. ossurl,
  50. agreeFlag: false,
  51. phone: '',
  52. verifyCode: '',
  53. tips: '',
  54. disabled: false
  55. }
  56. },
  57. computed: {
  58. supportHigher() {
  59. let systemInfo = this.$store.state.systemInfo
  60. if (!systemInfo) return false
  61. return this.$common.compareVersion(systemInfo.SDKVersion, '2.21.2') >= 0
  62. }
  63. },
  64. methods: {
  65. codeChange(text) {
  66. this.tips = text;
  67. },
  68. isChinesePhoneNumber(phoneNumber) {
  69. // 正则表达式匹配中国大陆手机号码,格式为:13/14/15/16/17/18/19开头,后跟9位数字
  70. const phoneNumberPattern = /^1[3-9]\d{9}$/;
  71. // 使用test方法检查输入的字符串是否符合正则表达式的规则
  72. return phoneNumberPattern.test(phoneNumber);
  73. },
  74. async getVerifycode() {
  75. if (this.phone && this.isChinesePhoneNumber(this.phone)) {
  76. uni.showLoading({
  77. title: '正在获取验证码'
  78. })
  79. const res = await this.$service.user.getVerifycode({
  80. "mobile": this.phone,
  81. "scene": "LOGIN"
  82. })
  83. if (res) {
  84. uni.hideLoading();
  85. // 这里此提示会被this.start()方法中的提示覆盖
  86. uni.$u.toast('验证码已发送');
  87. // 通知验证码组件内部开始倒计时
  88. this.$refs.uCode.start();
  89. }
  90. } else {
  91. this.$message.warn('请输入正常的手机号')
  92. }
  93. },
  94. getPhoneNumber(e) {
  95. if (!e.detail.encryptedData) return
  96. if (!this.agreeFlag) return this.$message.warn('请您先阅读并同意用户协议和隐私政策')
  97. this.login(e.detail)
  98. },
  99. async login(param) {
  100. let session = {
  101. openid: store.getters.openId,
  102. sessionKey: store.getters.sessionKey,
  103. unionid: store.getters.unionId
  104. }
  105. const res = await this.$service.user.login(param.encryptedData, param.iv, session)
  106. if (res) {
  107. this.initUser()
  108. if (!res.needInfo) {
  109. this.$router.back()
  110. return
  111. }
  112. this.$router.replace('user_info', {
  113. type: 1
  114. })
  115. }
  116. },
  117. async handleLogin() {
  118. if (!this.agreeFlag) return this.$message.warn('请您先阅读并同意用户协议和隐私政策')
  119. if (this.phone && this.isChinesePhoneNumber(this.phone) && this.verifyCode) {
  120. const res = await this.$service.user.accountLogin({
  121. "loginWay": "MOBILE",
  122. "mobile": this.phone,
  123. "verifycode": this.verifyCode
  124. })
  125. if (res) {
  126. this.initUser()
  127. if (!res.needInfo) {
  128. this.$router.back()
  129. return
  130. }
  131. this.$router.replace('user_info', {
  132. type: 1
  133. })
  134. }
  135. } else {
  136. this.$message.warn('请输入手机号和验证码')
  137. }
  138. },
  139. async initUser() {
  140. this.$event.emit(this.$event.key.LOGIN)
  141. await this.$service.user.info()
  142. await this.$service.user.getHide()
  143. },
  144. show(key) {
  145. this.$router.web(H5[key].url, H5[key].title)
  146. }
  147. }
  148. }
  149. </script>
  150. <style lang="scss" scoped>
  151. .loginBj{
  152. height: 100vh;
  153. padding-top: 400rpx;
  154. }
  155. .image {
  156. width: 320rpx;
  157. }
  158. .btn_back {
  159. width: 468rpx;
  160. height: 70rpx;
  161. line-height: 70rpx;
  162. border: 2rpx solid #fff;
  163. border-radius: 50rpx;
  164. background-color: #fff;
  165. color: #888888;
  166. font-size: 24rpx;
  167. margin-top: 20rpx;
  168. box-shadow: none;
  169. text-align: center;
  170. display: inline-block;
  171. }
  172. .btn {
  173. width: 468rpx;
  174. height: 70rpx;
  175. line-height: 70rpx;
  176. background: #000000;
  177. border-radius: 50rpx;
  178. color: #fff;
  179. font-size: 24rpx;
  180. text-align: center;
  181. }
  182. .agree {
  183. text-align: center;
  184. font-size: 24rpx;
  185. margin-top: 50rpx;
  186. display: flex;
  187. align-items: center;
  188. justify-content: center;
  189. }
  190. .bottom {
  191. position: absolute;
  192. bottom: 300rpx;
  193. width: 100%;
  194. }
  195. .form {
  196. // padding: 50rpx;
  197. .uni-form-item {
  198. .uni-input {}
  199. }
  200. }
  201. </style>