123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256 |
- <template>
- <view class="login">
- <!-- <u-navbar :is-back="false" :border-bottom="false" :background="{background:'rgba(0,0,0,0)'}"></u-navbar> -->
- <view class="login-top u-flex-col u-col-center u-row-center">
- <image src="../../static/images/logo.png" mode=""></image>
- <text>内核招聘</text>
- </view>
- <button class="login-btn1" @click="tologin">微信授权登录</button>
- <view class="login-btn2" @click="totel">
- 手机号登录/注册
- </view>
- <view class="xieyi-box u-flex u-row-center">
- <u-checkbox-group v-model="xieyi">
- <u-checkbox shape="circle" active-color="#0C66C2"></u-checkbox>
- </u-checkbox-group>
- <view class="u-flex">
- <text class="text1">登录代表您已同意</text>
- <text class="text2" @click.stop="toxieyi(1)">《用户协议》</text>
- <text class="text1">、</text>
- <text class="text2" @click.stop="toxieyi(2)">《隐私协议》</text>
- </view>
- </view>
- <view class="other-login u-flex u-row-center">
- <image src="../../static/images/jingli-img.png" mode=""></image>
- <text>项目经理登录</text>
- </view>
- </view>
- </template>
- <script>
- import {conn} from '@/utils/WebIM.js'
- import {
- third,
- third_mobile
- } from "../../units/inquire.js"
- export default {
- data() {
- return {
- xieyi: false
- }
- },
- onLoad() {
- },
- methods: {
- toxieyi(type) {
- uni.navigateTo({
- url: "/pagesA/xieyi?type=" + type
- })
- },
- totel() {
- if (!this.xieyi) {
- this.$u.toast("请勾选协议")
- return
- }
- uni.navigateTo({
- url: "/pagesA/tel-login"
- })
- },
- tologin() {
- let that = this
- if (!this.xieyi) {
- this.$u.toast('请先阅读并同意用户协议')
- return
- }
- wx.login({
- success(res) {
- console.log(res.code);
- if (res.code) {
- third({
- code: res.code
- }).then(res => {
- that.$u.toast("登录成功")
- var options = {
- user: res.data.userinfo.user_no,
- pwd: res.data.userinfo.emchat_password,
- appKey: conn.appkey,
- success: function (res2) {
- uni.setStorageSync('user_no',res.data.userinfo.user_no)
- uni.setStorageSync('pwd',res.data.userinfo.emchat_password)
- },
- error: function(){
- }
- };
- conn.open(options);
- console.log(res);
- if (res.data.is_mobile == 1) {
- uni.setStorageSync("token", res.data.userinfo.token)
- uni.setStorageSync("user_id", res.data.userinfo.id)
- uni.setStorageSync("is_profile", res.data.userinfo.group_info
- .is_profile)
- setTimeout(() => {
- uni.switchTab({
- url: "/pages/index/index"
- })
- }, 800)
- } else {
- setTimeout(() => {
- uni.navigateTo({
- url: "/pagesA/tel-login?openid=" + res.data.openid
- })
- }, 800)
- }
- })
- } else {
- that.$u.toast(res.msg)
- }
- }
- })
- },
- // tologin(e) {
- // console.log(e);
- // if (e.detail.code) {
- // var phoneCode = e.detail.code
- // uni.login({
- // success: (code) => {
- // third({
- // code: code.code
- // }).then(res=>{
- // if (res.code == 1) {
- // uni.setStorageSync("token", res.data.userinfo.token)
- // if (!res.data.userinfo.mobile|| 1 ) {
- // third_mobile({
- // mobile:'',
- // captcha:"123456",
- // }).then(res => {
- // if (res.code == 1) {
- // this.$u.toast("登录成功")
- // this.$u.post('/api/Member/member_info').then(
- // res => {
- // uni.setStorageSync("hx_username",
- // res.data.hx_username)
- // this.$WebIM.conn.open({
- // user: res.data
- // .hx_username,
- // pwd: "888888",
- // }).then(() => {
- // console.log(
- // "login success"
- // );
- // }).catch((reason) => {
- // console.log(
- // "login fail",
- // reason);
- // });
- // })
- // setTimeout(() => {
- // uni.navigateBack()
- // }, 800)
- // } else {
- // this.$u.toast(res.msg)
- // uni.removeStorageSync('token')
- // }
- // })
- // } else {
- // this.$u.toast("登录成功")
- // setTimeout(() => {
- // // if()
- // }, 800)
- // }
- // } else {
- // this.$u.toast(res.msg)
- // }
- // })
- // }
- // })
- // }
- // },
- }
- }
- </script>
- <style lang="scss">
- .login {
- .other-login {
- width: 270rpx;
- height: 84rpx;
- background: rgba(1, 139, 141, 0.06);
- border-radius: 42rpx;
- margin: 106rpx auto;
- image {
- width: 39rpx;
- height: 39rpx;
- margin-right: 8rpx;
- }
- text {
- font-size: 26rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #018B8D;
- }
- }
- .xieyi-box {
- .text1 {
- font-size: 24rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #141414;
- }
- .text2 {
- font-size: 24rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #0C66C2;
- }
- }
- .login-btn2 {
- width: 650rpx;
- line-height: 96rpx;
- border-radius: 16rpx;
- border: 1rpx solid #0C66C2;
- margin: 44rpx auto;
- text-align: center;
- font-size: 32rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #0C66C2;
- }
- .login-btn1 {
- width: 650rpx;
- line-height: 96rpx;
- height: 96rpx;
- background: #0C66C2;
- border-radius: 16rpx;
- margin: 0 auto;
- font-size: 32rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #FFFFFF;
- }
- .login-top {
- height: 478rpx;
- image {
- width: 150rpx;
- height: 150rpx;
- margin-bottom: 20rpx;
- }
- text {
- font-size: 32rpx;
- font-family: PingFangSC-Medium, PingFang SC;
- font-weight: 500;
- color: #222222;
- }
- }
- }
- </style>
|