login.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. <template>
  2. <view class="login">
  3. <!-- <u-navbar :is-back="false" :border-bottom="false" :background="{background:'rgba(0,0,0,0)'}"></u-navbar> -->
  4. <view class="login-top u-flex-col u-col-center u-row-center">
  5. <image src="../../static/images/logo.png" mode=""></image>
  6. <text>候选人求职</text>
  7. </view>
  8. <button class="login-btn1" @click="tologin">微信授权登录</button>
  9. <view class="login-btn2" @click="totel">
  10. 手机号登录/注册
  11. </view>
  12. <view class="xieyi-box u-flex u-row-center">
  13. <u-checkbox-group v-model="xieyi">
  14. <u-checkbox shape="circle" active-color="#0C66C2"></u-checkbox>
  15. </u-checkbox-group>
  16. <view class="u-flex">
  17. <text class="text1">登录代表您已同意</text>
  18. <text class="text2" @click.stop="toxieyi(1)">《用户协议》</text>
  19. <text class="text1">、</text>
  20. <text class="text2" @click.stop="toxieyi(2)">《隐私协议》</text>
  21. </view>
  22. </view>
  23. <view class="other-login u-flex u-row-center" @click="jumpToAnotherMiniProgram">
  24. <image src="../../static/images/jingli-img.png" mode=""></image>
  25. <text>项目经理登录</text>
  26. </view>
  27. </view>
  28. </template>
  29. <script>
  30. import {
  31. conn
  32. } from '@/utils/WebIM.js'
  33. import {
  34. third,
  35. third_mobile
  36. } from "../../units/inquire.js"
  37. export default {
  38. data() {
  39. return {
  40. xieyi: false
  41. }
  42. },
  43. onLoad() {
  44. },
  45. methods: {
  46. jumpToAnotherMiniProgram() {
  47. uni.navigateToMiniProgram({
  48. appId: 'wxdb719dbe12fa668b',
  49. path: '/pages/login/login', // 要跳转的小程序路由地址
  50. envVersion: 'trial'
  51. })
  52. },
  53. toxieyi(type) {
  54. uni.navigateTo({
  55. url: "/pagesA/xieyi?type=" + type
  56. })
  57. },
  58. totel() {
  59. if (!this.xieyi) {
  60. this.$u.toast("请勾选协议")
  61. return
  62. }
  63. uni.navigateTo({
  64. url: "/pagesA/tel-login"
  65. })
  66. },
  67. tologin() {
  68. let that = this
  69. if (!this.xieyi) {
  70. this.$u.toast('请先阅读并同意用户协议')
  71. return
  72. }
  73. wx.login({
  74. success(res) {
  75. console.log(res.code);
  76. if (res.code) {
  77. third({
  78. code: res.code
  79. }).then(res => {
  80. that.$u.toast("登录成功")
  81. if (res.data.is_mobile == 1) {
  82. uni.setStorageSync("token", res.data.userinfo.token)
  83. uni.setStorageSync("user_id", res.data.userinfo.id)
  84. uni.setStorageSync("is_profile", res.data.userinfo.group_info
  85. .is_profile)
  86. var options = {
  87. user: res.data.userinfo.user_no,
  88. pwd: res.data.userinfo.emchat_password,
  89. appKey: conn.appkey,
  90. success: function(res2) {
  91. uni.setStorageSync('user_no', res.data.userinfo
  92. .user_no)
  93. uni.setStorageSync('pwd', res.data.userinfo
  94. .emchat_password)
  95. },
  96. error: function() {}
  97. };
  98. conn.open(options);
  99. console.log(res);
  100. setTimeout(() => {
  101. uni.switchTab({
  102. url: "/pages/index/index"
  103. })
  104. }, 800)
  105. } else {
  106. setTimeout(() => {
  107. uni.navigateTo({
  108. url: "/pagesA/tel-login?openid=" + res.data
  109. .openid
  110. })
  111. }, 800)
  112. }
  113. })
  114. } else {
  115. that.$u.toast(res.msg)
  116. }
  117. }
  118. })
  119. },
  120. }
  121. }
  122. </script>
  123. <style lang="scss">
  124. .login {
  125. .other-login {
  126. width: 270rpx;
  127. height: 84rpx;
  128. background: rgba(1, 139, 141, 0.06);
  129. border-radius: 42rpx;
  130. margin: 106rpx auto;
  131. image {
  132. width: 39rpx;
  133. height: 39rpx;
  134. margin-right: 8rpx;
  135. }
  136. text {
  137. font-size: 26rpx;
  138. font-family: PingFangSC-Regular, PingFang SC;
  139. font-weight: 400;
  140. color: #018B8D;
  141. }
  142. }
  143. .xieyi-box {
  144. .text1 {
  145. font-size: 24rpx;
  146. font-family: PingFangSC-Regular, PingFang SC;
  147. font-weight: 400;
  148. color: #141414;
  149. }
  150. .text2 {
  151. font-size: 24rpx;
  152. font-family: PingFangSC-Regular, PingFang SC;
  153. font-weight: 400;
  154. color: #0C66C2;
  155. }
  156. }
  157. .login-btn2 {
  158. width: 650rpx;
  159. line-height: 96rpx;
  160. border-radius: 16rpx;
  161. border: 1rpx solid #0C66C2;
  162. margin: 44rpx auto;
  163. text-align: center;
  164. font-size: 32rpx;
  165. font-family: PingFangSC-Regular, PingFang SC;
  166. font-weight: 400;
  167. color: #0C66C2;
  168. }
  169. .login-btn1 {
  170. width: 650rpx;
  171. line-height: 96rpx;
  172. height: 96rpx;
  173. background: #0C66C2;
  174. border-radius: 16rpx;
  175. margin: 0 auto;
  176. font-size: 32rpx;
  177. font-family: PingFangSC-Regular, PingFang SC;
  178. font-weight: 400;
  179. color: #FFFFFF;
  180. }
  181. .login-top {
  182. height: 478rpx;
  183. image {
  184. width: 150rpx;
  185. height: 150rpx;
  186. margin-bottom: 20rpx;
  187. }
  188. text {
  189. font-size: 32rpx;
  190. font-family: PingFangSC-Medium, PingFang SC;
  191. font-weight: 500;
  192. color: #222222;
  193. }
  194. }
  195. }
  196. </style>