tel-login.vue 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295
  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. index
  37. } from "../units/inquire.js"
  38. import {
  39. conn
  40. } from '@/utils/WebIM';
  41. export default {
  42. data() {
  43. return {
  44. xieyi: false,
  45. tips: '',
  46. seconds: 10,
  47. tel: '',
  48. code: '',
  49. verificationTime: '',
  50. timeEnd: false,
  51. openid: '',
  52. }
  53. },
  54. onLoad(options) {
  55. if (options.openid) {
  56. this.openid = options.openid
  57. }
  58. },
  59. methods: {
  60. toxieyi(type) {
  61. uni.navigateTo({
  62. url: "/pagesA/xieyi?type=" + type
  63. })
  64. },
  65. getCode() {
  66. if (!this.xieyi) {
  67. this.$u.toast("请勾选协议")
  68. return
  69. }
  70. if (!this.$u.test.mobile(this.tel)) {
  71. this.$u.toast("请输入正确的手机号")
  72. return
  73. }
  74. //获取验证码接口
  75. getCode({
  76. mobile: this.tel,
  77. event: 'login'
  78. }).then(res => {
  79. // this.getcode = false
  80. if (res.code == 1) {
  81. uni.showLoading({
  82. title: '正在获取验证码',
  83. mask: true
  84. })
  85. uni.hideLoading();
  86. // 这里此提示会被this.start()方法中的提示覆盖
  87. this.$u.toast('验证码已发送');
  88. // 通知验证码组件内部开始倒计时
  89. // this.$refs.uCode.start();
  90. this.verificationTime = 30
  91. this.verificationDown()
  92. } else {
  93. this.$u.toast(res.msg)
  94. }
  95. })
  96. if (true) {
  97. // 模拟向后端请求验证码
  98. } else {
  99. this.$u.toast('倒计时结束后再发送');
  100. }
  101. },
  102. //验证码倒计时
  103. verificationDown() {
  104. // 设置定时器
  105. this.timer = setInterval(() => {
  106. this.verificationTime = this.verificationTime - 1
  107. if (this.verificationTime < 10) this.verificationTime = '0' + this.verificationTime
  108. if (this.verificationTime <= 0) {
  109. // 清除定时器
  110. clearInterval(this.timer)
  111. this.timeEnd = true
  112. this.verificationTime = false
  113. }
  114. }, 1000)
  115. },
  116. toyaoqing() {
  117. if (!this.xieyi) {
  118. this.$u.toast("请勾选协议")
  119. return
  120. }
  121. if (!this.$u.test.mobile(this.tel)) {
  122. this.$u.toast("请输入正确的手机号")
  123. return
  124. }
  125. if (!this.code) {
  126. this.$u.toast("请输入验证码")
  127. return
  128. }
  129. uni.showLoading({
  130. title: '请稍后',
  131. mask: true
  132. })
  133. if (this.openid) {
  134. third_mobile({
  135. mobile: this.tel,
  136. captcha: this.code,
  137. openid: this.openid
  138. }).then(res => {
  139. uni.hideLoading()
  140. if (res.code == 1) {
  141. var options = {
  142. user: res.data.userinfo.user_no,
  143. pwd: res.data.userinfo.emchat_password,
  144. appKey: conn.appkey,
  145. success: function(res2) {
  146. uni.setStorageSync('user_no', res.data.userinfo.user_no)
  147. uni.setStorageSync('pwd', res.data.userinfo.emchat_password)
  148. },
  149. error: function() {}
  150. };
  151. conn.open(options);
  152. uni.setStorageSync("token", res.data.userinfo.token)
  153. uni.setStorageSync("user_id", res.data.userinfo.id)
  154. uni.setStorageSync("is_profile", res.data.userinfo.group_info.is_profile)
  155. if (res.data.userinfo.group_info.is_resume == 0 && uni.getStorageSync(
  156. job_experience1)) {
  157. setTimeout(() => {
  158. uni.navigateTo({
  159. url: "/pagesA/work"
  160. })
  161. }, 800)
  162. } else if (res.data.userinfo.group_info.city_id == 0) {
  163. setTimeout(() => {
  164. uni.navigateTo({
  165. url: "/pagesA/yaoqing"
  166. })
  167. }, 800)
  168. } else {
  169. setTimeout(() => {
  170. uni.switchTab({
  171. url: "/pages/index/index"
  172. })
  173. }, 800)
  174. }
  175. } else {
  176. this.$u.toast(res.msg)
  177. }
  178. })
  179. } else {
  180. var that = this
  181. wx.login({
  182. success(loginres) {
  183. if (loginres.code) {
  184. mobileLogin({
  185. code: loginres.code,
  186. mobile: that.tel,
  187. captcha: that.code,
  188. is_auth: 1,
  189. is_agree: 1
  190. }).then(res => {
  191. if (res.code == 1) {
  192. that.$u.toast("登录成功")
  193. var options = {
  194. user: res.data.userinfo.user_no,
  195. pwd: res.data.userinfo.emchat_password,
  196. appKey: conn.appkey,
  197. success: function(res2) {
  198. uni.setStorageSync('user_no', res.data.userinfo
  199. .user_no)
  200. uni.setStorageSync('pwd', res.data.userinfo
  201. .emchat_password)
  202. },
  203. error: function() {}
  204. };
  205. conn.open(options);
  206. uni.setStorageSync("token", res.data.userinfo.token)
  207. uni.setStorageSync("user_id", res.data.userinfo.id)
  208. uni.setStorageSync("is_profile", res.data.userinfo.group_info
  209. .is_resume)
  210. if (res.data.userinfo.group_info.city_id == 0) {
  211. setTimeout(() => {
  212. uni.navigateTo({
  213. url: "/pagesA/yaoqing"
  214. })
  215. }, 800)
  216. } else {
  217. setTimeout(() => {
  218. uni.switchTab({
  219. url: "/pages/index/index"
  220. })
  221. }, 800)
  222. }
  223. } else {
  224. that.$u.toast(res.msg)
  225. }
  226. })
  227. }
  228. }
  229. })
  230. }
  231. }
  232. }
  233. }
  234. </script>
  235. <style lang="scss">
  236. .tel-login {
  237. padding: 0 52rpx;
  238. .login-btn {
  239. line-height: 96rpx;
  240. background: #0C66C2;
  241. border-radius: 16rpx;
  242. text-align: center;
  243. font-size: 32rpx;
  244. font-family: PingFangSC-Regular, PingFang SC;
  245. font-weight: 400;
  246. color: #FFFFFF;
  247. }
  248. .xieyi-box {
  249. padding: 34rpx 0;
  250. margin-bottom: 84rpx;
  251. .text1 {
  252. font-size: 24rpx;
  253. font-family: PingFangSC-Regular, PingFang SC;
  254. font-weight: 400;
  255. color: #141414;
  256. }
  257. .text2 {
  258. font-size: 24rpx;
  259. font-family: PingFangSC-Regular, PingFang SC;
  260. font-weight: 400;
  261. color: #0C66C2;
  262. }
  263. }
  264. .input-box {
  265. height: 126rpx;
  266. border-bottom: 1rpx solid rgba(244, 244, 244, 1);
  267. input {
  268. font-size: 32rpx;
  269. }
  270. .send {
  271. font-size: 32rpx;
  272. font-family: PingFangSC-Regular, PingFang SC;
  273. font-weight: 400;
  274. color: #0C66C2;
  275. }
  276. }
  277. .tel-title {
  278. padding: 82rpx 0 56rpx 0;
  279. font-size: 44rpx;
  280. font-family: PingFangSC-Medium, PingFang SC;
  281. font-weight: 500;
  282. color: #222222;
  283. }
  284. }
  285. </style>