tel-login.vue 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  1. <template>
  2. <view class="tel-login">
  3. <view class="tel-title">
  4. 欢迎登录内核招聘
  5. </view>
  6. <view class="input-box u-flex u-row-between">
  7. <input type="number" class="u-flex-1" placeholder="输入手机号码(新号码自动注册)" v-model="tel">
  8. </view>
  9. <view class="input-box u-flex u-row-between">
  10. <input type="number" class="u-flex-1" placeholder="输入验证码" v-model="code">
  11. <text class="send" @click="getCode" v-if="!timeEnd && !verificationTime ">获取验证码</text>
  12. <text class="send" v-else-if="verificationTime">{{verificationTime}}s</text>
  13. <text class="send" @click="getCode" v-else-if="timeEnd">重新获取验证码</text>
  14. </view>
  15. <view class="xieyi-box u-flex u-row-center">
  16. <u-checkbox-group v-model="xieyi">
  17. <u-checkbox shape="circle" active-color="#0C66C2"></u-checkbox>
  18. </u-checkbox-group>
  19. <view class="u-flex">
  20. <text class="text1">登录代表您已同意</text>
  21. <text class="text2" @click.stop="toxieyi(1)">《用户协议》</text>
  22. <text class="text1">、</text>
  23. <text class="text2" @click.stop="toxieyi(2)">《隐私协议》</text>
  24. </view>
  25. </view>
  26. <view class="login-btn" @click="toyaoqing">
  27. 登录
  28. </view>
  29. </view>
  30. </template>
  31. <script>
  32. import {
  33. getCode,
  34. mobileLogin,
  35. third_mobile
  36. } from "../units/inquire.js"
  37. export default {
  38. data() {
  39. return {
  40. xieyi: false,
  41. tips: '',
  42. seconds: 10,
  43. tel: '',
  44. code: '',
  45. verificationTime: '',
  46. timeEnd: false,
  47. // getcode:true
  48. openid: '',
  49. }
  50. },
  51. onLoad(options) {
  52. if (options.openid) {
  53. this.openid = options.openid
  54. }
  55. },
  56. methods: {
  57. toxieyi(type) {
  58. uni.navigateTo({
  59. url: "/pagesA/xieyi?type=" + type
  60. })
  61. },
  62. getCode() {
  63. if (!this.xieyi) {
  64. this.$u.toast("请勾选协议")
  65. return
  66. }
  67. if (!this.$u.test.mobile(this.tel)) {
  68. this.$u.toast("请输入正确的手机号")
  69. return
  70. }
  71. //获取验证码接口
  72. getCode({
  73. mobile: this.tel,
  74. event: 'login'
  75. }).then(res => {
  76. // this.getcode = false
  77. if (res.code == 1) {
  78. uni.showLoading({
  79. title: '正在获取验证码',
  80. mask: true
  81. })
  82. uni.hideLoading();
  83. // 这里此提示会被this.start()方法中的提示覆盖
  84. this.$u.toast('验证码已发送');
  85. // 通知验证码组件内部开始倒计时
  86. // this.$refs.uCode.start();
  87. this.verificationTime = 30
  88. this.verificationDown()
  89. } else {
  90. this.$u.toast(res.msg)
  91. }
  92. })
  93. if (true) {
  94. // 模拟向后端请求验证码
  95. } else {
  96. this.$u.toast('倒计时结束后再发送');
  97. }
  98. },
  99. //验证码倒计时
  100. verificationDown() {
  101. // 设置定时器
  102. this.timer = setInterval(() => {
  103. this.verificationTime = this.verificationTime - 1
  104. if (this.verificationTime < 10) this.verificationTime = '0' + this.verificationTime
  105. if (this.verificationTime <= 0) {
  106. // 清除定时器
  107. clearInterval(this.timer)
  108. this.timeEnd = true
  109. this.verificationTime = false
  110. }
  111. }, 1000)
  112. },
  113. toyaoqing() {
  114. if (!this.xieyi) {
  115. this.$u.toast("请勾选协议")
  116. return
  117. }
  118. if (!this.$u.test.mobile(this.tel)) {
  119. this.$u.toast("请输入正确的手机号")
  120. return
  121. }
  122. if (!this.code) {
  123. this.$u.toast("请输入验证码")
  124. return
  125. }
  126. uni.showLoading({
  127. title: '请稍后',
  128. mask: true
  129. })
  130. if (this.openid) {
  131. third_mobile({
  132. mobile: this.tel,
  133. captcha: this.code,
  134. openid: this.openid
  135. }).then(res => {
  136. uni.hideLoading()
  137. if (res.code == 1) {
  138. this.$u.toast("登录成功")
  139. uni.setStorageSync("token", res.data.userinfo.token)
  140. uni.setStorageSync("user_id", res.data.userinfo.id)
  141. uni.setStorageSync("is_profile", res.data.userinfo.group_info.is_profile)
  142. if (res.data.userinfo.group_info.is_profile == 0) {
  143. setTimeout(() => {
  144. uni.navigateTo({
  145. url: "/pagesA/yaoqing"
  146. })
  147. }, 800)
  148. } else {
  149. setTimeout(() => {
  150. uni.switchTab({
  151. url: "/pages/index/index"
  152. })
  153. }, 800)
  154. }
  155. } else {
  156. this.$u.toast(res.msg)
  157. }
  158. })
  159. } else {
  160. mobileLogin({
  161. mobile: this.tel,
  162. captcha: this.code,
  163. is_auth: 1,
  164. is_agree: 1
  165. }).then(res => {
  166. if (res.code == 1) {
  167. this.$u.toast("登录成功")
  168. uni.setStorageSync("token", res.data.userinfo.token)
  169. uni.setStorageSync("user_id", res.data.userinfo.id)
  170. uni.setStorageSync("is_profile", res.data.userinfo.group_info.is_resume)
  171. if (res.data.userinfo.group_info.is_resume == 0) {
  172. setTimeout(() => {
  173. uni.navigateTo({
  174. url: "/pagesA/yaoqing"
  175. })
  176. }, 800)
  177. } else {
  178. setTimeout(() => {
  179. uni.switchTab({
  180. url: "/pages/index/index"
  181. })
  182. }, 800)
  183. }
  184. } else {
  185. this.$u.toast(res.msg)
  186. }
  187. })
  188. }
  189. }
  190. }
  191. }
  192. </script>
  193. <style lang="scss">
  194. .tel-login {
  195. padding: 0 52rpx;
  196. .login-btn {
  197. line-height: 96rpx;
  198. background: #0C66C2;
  199. border-radius: 16rpx;
  200. text-align: center;
  201. font-size: 32rpx;
  202. font-family: PingFangSC-Regular, PingFang SC;
  203. font-weight: 400;
  204. color: #FFFFFF;
  205. }
  206. .xieyi-box {
  207. padding: 34rpx 0;
  208. margin-bottom: 84rpx;
  209. .text1 {
  210. font-size: 24rpx;
  211. font-family: PingFangSC-Regular, PingFang SC;
  212. font-weight: 400;
  213. color: #141414;
  214. }
  215. .text2 {
  216. font-size: 24rpx;
  217. font-family: PingFangSC-Regular, PingFang SC;
  218. font-weight: 400;
  219. color: #0C66C2;
  220. }
  221. }
  222. .input-box {
  223. height: 126rpx;
  224. border-bottom: 1rpx solid rgba(244, 244, 244, 1);
  225. input {
  226. font-size: 32rpx;
  227. }
  228. .send {
  229. font-size: 32rpx;
  230. font-family: PingFangSC-Regular, PingFang SC;
  231. font-weight: 400;
  232. color: #0C66C2;
  233. }
  234. }
  235. .tel-title {
  236. padding: 82rpx 0 56rpx 0;
  237. font-size: 44rpx;
  238. font-family: PingFangSC-Medium, PingFang SC;
  239. font-weight: 500;
  240. color: #222222;
  241. }
  242. }
  243. </style>