login.vue 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  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">
  24. <image src="../../static/images/jingli-img.png" mode=""></image>
  25. <text>项目经理登录</text>
  26. </view>
  27. </view>
  28. </template>
  29. <script>
  30. import {conn} from '@/utils/WebIM.js'
  31. import {
  32. third,
  33. third_mobile
  34. } from "../../units/inquire.js"
  35. export default {
  36. data() {
  37. return {
  38. xieyi: false
  39. }
  40. },
  41. onLoad() {
  42. },
  43. methods: {
  44. toxieyi(type) {
  45. uni.navigateTo({
  46. url: "/pagesA/xieyi?type=" + type
  47. })
  48. },
  49. totel() {
  50. if (!this.xieyi) {
  51. this.$u.toast("请勾选协议")
  52. return
  53. }
  54. uni.navigateTo({
  55. url: "/pagesA/tel-login"
  56. })
  57. },
  58. tologin() {
  59. let that = this
  60. if (!this.xieyi) {
  61. this.$u.toast('请先阅读并同意用户协议')
  62. return
  63. }
  64. wx.login({
  65. success(res) {
  66. console.log(res.code);
  67. if (res.code) {
  68. third({
  69. code: res.code
  70. }).then(res => {
  71. that.$u.toast("登录成功")
  72. var options = {
  73. user: res.data.userinfo.user_no,
  74. pwd: res.data.userinfo.emchat_password,
  75. appKey: conn.appkey,
  76. success: function (res2) {
  77. uni.setStorageSync('user_no',res.data.userinfo.user_no)
  78. uni.setStorageSync('pwd',res.data.userinfo.emchat_password)
  79. },
  80. error: function(){
  81. }
  82. };
  83. conn.open(options);
  84. console.log(res);
  85. if (res.data.is_mobile == 1) {
  86. uni.setStorageSync("token", res.data.userinfo.token)
  87. uni.setStorageSync("user_id", res.data.userinfo.id)
  88. uni.setStorageSync("is_profile", res.data.userinfo.group_info
  89. .is_profile)
  90. setTimeout(() => {
  91. uni.switchTab({
  92. url: "/pages/index/index"
  93. })
  94. }, 800)
  95. } else {
  96. setTimeout(() => {
  97. uni.navigateTo({
  98. url: "/pagesA/tel-login?openid=" + res.data.openid
  99. })
  100. }, 800)
  101. }
  102. })
  103. } else {
  104. that.$u.toast(res.msg)
  105. }
  106. }
  107. })
  108. },
  109. // tologin(e) {
  110. // console.log(e);
  111. // if (e.detail.code) {
  112. // var phoneCode = e.detail.code
  113. // uni.login({
  114. // success: (code) => {
  115. // third({
  116. // code: code.code
  117. // }).then(res=>{
  118. // if (res.code == 1) {
  119. // uni.setStorageSync("token", res.data.userinfo.token)
  120. // if (!res.data.userinfo.mobile|| 1 ) {
  121. // third_mobile({
  122. // mobile:'',
  123. // captcha:"123456",
  124. // }).then(res => {
  125. // if (res.code == 1) {
  126. // this.$u.toast("登录成功")
  127. // this.$u.post('/api/Member/member_info').then(
  128. // res => {
  129. // uni.setStorageSync("hx_username",
  130. // res.data.hx_username)
  131. // this.$WebIM.conn.open({
  132. // user: res.data
  133. // .hx_username,
  134. // pwd: "888888",
  135. // }).then(() => {
  136. // console.log(
  137. // "login success"
  138. // );
  139. // }).catch((reason) => {
  140. // console.log(
  141. // "login fail",
  142. // reason);
  143. // });
  144. // })
  145. // setTimeout(() => {
  146. // uni.navigateBack()
  147. // }, 800)
  148. // } else {
  149. // this.$u.toast(res.msg)
  150. // uni.removeStorageSync('token')
  151. // }
  152. // })
  153. // } else {
  154. // this.$u.toast("登录成功")
  155. // setTimeout(() => {
  156. // // if()
  157. // }, 800)
  158. // }
  159. // } else {
  160. // this.$u.toast(res.msg)
  161. // }
  162. // })
  163. // }
  164. // })
  165. // }
  166. // },
  167. }
  168. }
  169. </script>
  170. <style lang="scss">
  171. .login {
  172. .other-login {
  173. width: 270rpx;
  174. height: 84rpx;
  175. background: rgba(1, 139, 141, 0.06);
  176. border-radius: 42rpx;
  177. margin: 106rpx auto;
  178. image {
  179. width: 39rpx;
  180. height: 39rpx;
  181. margin-right: 8rpx;
  182. }
  183. text {
  184. font-size: 26rpx;
  185. font-family: PingFangSC-Regular, PingFang SC;
  186. font-weight: 400;
  187. color: #018B8D;
  188. }
  189. }
  190. .xieyi-box {
  191. .text1 {
  192. font-size: 24rpx;
  193. font-family: PingFangSC-Regular, PingFang SC;
  194. font-weight: 400;
  195. color: #141414;
  196. }
  197. .text2 {
  198. font-size: 24rpx;
  199. font-family: PingFangSC-Regular, PingFang SC;
  200. font-weight: 400;
  201. color: #0C66C2;
  202. }
  203. }
  204. .login-btn2 {
  205. width: 650rpx;
  206. line-height: 96rpx;
  207. border-radius: 16rpx;
  208. border: 1rpx solid #0C66C2;
  209. margin: 44rpx auto;
  210. text-align: center;
  211. font-size: 32rpx;
  212. font-family: PingFangSC-Regular, PingFang SC;
  213. font-weight: 400;
  214. color: #0C66C2;
  215. }
  216. .login-btn1 {
  217. width: 650rpx;
  218. line-height: 96rpx;
  219. height: 96rpx;
  220. background: #0C66C2;
  221. border-radius: 16rpx;
  222. margin: 0 auto;
  223. font-size: 32rpx;
  224. font-family: PingFangSC-Regular, PingFang SC;
  225. font-weight: 400;
  226. color: #FFFFFF;
  227. }
  228. .login-top {
  229. height: 478rpx;
  230. image {
  231. width: 150rpx;
  232. height: 150rpx;
  233. margin-bottom: 20rpx;
  234. }
  235. text {
  236. font-size: 32rpx;
  237. font-family: PingFangSC-Medium, PingFang SC;
  238. font-weight: 500;
  239. color: #222222;
  240. }
  241. }
  242. }
  243. </style>