login.vue 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  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 open-type="getPhoneNumber" class="login-btn1" @getphonenumber="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">
  24. <image src="../../static/images/jingli-img.png" mode=""></image>
  25. <text>项目经理登录</text>
  26. </view>
  27. </view>
  28. </template>
  29. <script>
  30. import {third,third_mobile} from "../../units/inquire.js"
  31. export default {
  32. data() {
  33. return {
  34. xieyi: false
  35. }
  36. },
  37. onLoad() {
  38. },
  39. methods: {
  40. toxieyi(type) {
  41. uni.navigateTo({
  42. url: "/pagesA/xieyi?type=" + type
  43. })
  44. },
  45. totel() {
  46. if (!this.xieyi) {
  47. this.$u.toast("请勾选协议")
  48. return
  49. }
  50. uni.navigateTo({
  51. url: "/pagesA/tel-login"
  52. })
  53. },
  54. tologin(e) {
  55. if (e.detail.code) {
  56. var phoneCode = e.detail.code
  57. uni.login({
  58. success: (code) => {
  59. third({
  60. code: code.code
  61. }).then(res=>{
  62. if (res.code == 1) {
  63. uni.setStorageSync("token", res.data.userinfo.token)
  64. if (!res.data.userinfo.group_info.mobile || 1) {
  65. third_mobile({
  66. mobile:'18377777771',
  67. captcha:"123456",
  68. }).then(res => {
  69. if (res.code == 1) {
  70. this.$u.toast("登录成功")
  71. this.$u.post('/api/Member/member_info').then(
  72. res => {
  73. uni.setStorageSync("hx_username",
  74. res.data.hx_username)
  75. this.$WebIM.conn.open({
  76. user: res.data
  77. .hx_username,
  78. pwd: "888888",
  79. }).then(() => {
  80. console.log(
  81. "login success"
  82. );
  83. }).catch((reason) => {
  84. console.log(
  85. "login fail",
  86. reason);
  87. });
  88. })
  89. this.setcity()
  90. setTimeout(() => {
  91. uni.navigateBack()
  92. }, 800)
  93. } else {
  94. this.$u.toast(res.msg)
  95. uni.removeStorageSync('token')
  96. }
  97. })
  98. } else {
  99. this.$u.toast("登录成功")
  100. this.setcity()
  101. setTimeout(() => {
  102. uni.navigateBack()
  103. }, 800)
  104. }
  105. } else {
  106. this.$u.toast(res.msg)
  107. }
  108. })
  109. }
  110. })
  111. }
  112. },
  113. }
  114. }
  115. </script>
  116. <style lang="scss">
  117. .login {
  118. .other-login {
  119. width: 270rpx;
  120. height: 84rpx;
  121. background: rgba(1, 139, 141, 0.06);
  122. border-radius: 42rpx;
  123. margin: 106rpx auto;
  124. image {
  125. width: 39rpx;
  126. height: 39rpx;
  127. margin-right: 8rpx;
  128. }
  129. text {
  130. font-size: 26rpx;
  131. font-family: PingFangSC-Regular, PingFang SC;
  132. font-weight: 400;
  133. color: #018B8D;
  134. }
  135. }
  136. .xieyi-box {
  137. .text1 {
  138. font-size: 24rpx;
  139. font-family: PingFangSC-Regular, PingFang SC;
  140. font-weight: 400;
  141. color: #141414;
  142. }
  143. .text2 {
  144. font-size: 24rpx;
  145. font-family: PingFangSC-Regular, PingFang SC;
  146. font-weight: 400;
  147. color: #0C66C2;
  148. }
  149. }
  150. .login-btn2 {
  151. width: 650rpx;
  152. line-height: 96rpx;
  153. border-radius: 16rpx;
  154. border: 1rpx solid #0C66C2;
  155. margin: 44rpx auto;
  156. text-align: center;
  157. font-size: 32rpx;
  158. font-family: PingFangSC-Regular, PingFang SC;
  159. font-weight: 400;
  160. color: #0C66C2;
  161. }
  162. .login-btn1 {
  163. width: 650rpx;
  164. line-height: 96rpx;
  165. height: 96rpx;
  166. background: #0C66C2;
  167. border-radius: 16rpx;
  168. margin: 0 auto;
  169. font-size: 32rpx;
  170. font-family: PingFangSC-Regular, PingFang SC;
  171. font-weight: 400;
  172. color: #FFFFFF;
  173. }
  174. .login-top {
  175. height: 478rpx;
  176. image {
  177. width: 150rpx;
  178. height: 150rpx;
  179. margin-bottom: 20rpx;
  180. }
  181. text {
  182. font-size: 32rpx;
  183. font-family: PingFangSC-Medium, PingFang SC;
  184. font-weight: 500;
  185. color: #222222;
  186. }
  187. }
  188. }
  189. </style>