123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257 |
- <template>
- <!-- 登录 -->
- <view style="
- padding: 0 44rpx;
- background-color: #fff;
- height: 100vh;
- overflow: hidden;
- ">
- <view class="" style="text-align: center; margin-top: 156rpx">
- <image src="../../static/images/logo.png" style="width: 350rpx; height: 350rpx" mode=""></image>
- </view>
- <button open-type="getPhoneNumber" class="login-btn" @getphonenumber="tologin">
- 手机号快捷登录
- </button>
- <!--
- <view>
- <u--input placeholder="请输入内容" border="surround" v-model="mobile"></u--input>
- <u--input placeholder="请输入内容" border="surround" v-model="code"></u--input>
- </view>
- <button @click="submit">登录</button>
- <button @click="submita">注册</button> -->
- <view class="" style="margin-top: 42rpx; display: flex">
- <u-checkbox-group v-model="checkboxValue1" placement="column" @change="checkboxChange">
- <u-checkbox shape="circle" :customStyle="{ marginBottom: '8px' }" :name="1">
- </u-checkbox>
- </u-checkbox-group>
- <text class="fontYin">{{i18n.readandAgree}}</text>
- <text class="fontYin" style="color: #f83224" @click="xieyi('user')">《{{i18n.useragreement}}》</text>
- <text class="fontYin">{{i18n.and}}</text>
- <text class="fontYin" style="color: #f83224" @click="xieyi('private')">《{{i18n.Privacyagreement}}》</text>
- </view>
- </view>
- </template>
- <script>
- // import {conn} from '@/utils/WebIM.js'
- import {
- conn
- } from '../../utils/WebIM.js'
- import {
- login
- } from "../../network/api/homeApi.js";
- export default {
- data() {
- return {
- mobile: "",
- code: "",
- checkboxValue1: false,
- changea: [],
- };
- },
- computed: {
- i18n() {
- return this.$t('index')
- }
- },
- methods: {
- //协议
- xieyi(code) {
- uni.navigateTo({
- url: '/pageB/xieyi?code=' + code
- })
- },
- //微信登录
- tologin(e) {
- if (this.changea.length > 0) {
- if (e.detail.code) {
- var phoneCode = e.detail.code;
- uni.login({
- success: (code) => {
- uni.$u.http
- .post("/api/wxmini/login", {
- code: code.code,
- })
- .then((res) => {
- console.log(res);
- if (res == 10011) {
- uni.$u.http
- .post("/api/wxmini/mobile", {
- code: phoneCode,
- })
- .then((res) => {
- uni.$u.http
- .post("/api/register", {
- wx_code: code
- .code, // 是 String 微信登录时候的code
- mobile: res.mobile, // 是 String 手机号码
- })
- .then((res) => {
- console.log(res);
- uni.setStorageSync('user_no', res
- .easemob_username)
- uni.setStorageSync('pwd', res
- .easemob_password)
- var options = {
- user: res.easemob_username,
- pwd: res.easemob_password,
- appKey: conn.appkey,
- };
- conn.open(options);
- // conn.open({
- // user: res.easemob_username,
- // pwd: res.easemob_password,
- // appKey: conn.appkey
- // }).then(() => {
- // console.log('res');
- // }).catch(reason => {
- // console.log('失败', reason);
- // })
- uni.setStorageSync("token", res.token);
- uni.setStorageSync("openid", res
- .openid);
- uni.setStorageSync("user_info", res);
- setTimeout(() => {
- uni.navigateTo({
- url: "/pageA/changelange",
- });
- }, 300);
- })
- .catch(() => {});
- })
- .catch(() => {});
- } else {
- uni.setStorageSync("token", res.token);
- uni.setStorageSync("openid", res.openid);
- uni.setStorageSync("user_info", res);
- uni.setStorageSync('user_no', res
- .easemob_username)
- uni.setStorageSync('pwd', res
- .easemob_password)
- // var options = {
- // user: res.easemob_username,
- // pwd: res.easemob_password,
- // appKey: conn.appkey,
- // };
- // conn.open(options);
- console.log('conn1',conn);
- conn.open({
- user: res.easemob_username,
- pwd: res.easemob_password,
- appKey: conn.appkey
- }).then(() => {
- console.log('res');
- }).catch(reason => {
- console.log('失败', reason);
- })
- setTimeout(() => {
- uni.navigateTo({
- url: "/pageA/changelange",
- });
- }, 300);
- }
- })
- .catch(() => {});
- },
- });
- }
- } else {
- this.$u.toast("请勾选隐私协议");
- }
- },
- checkboxChange(n) {
- console.log("change", n);
- this.changea = n;
- },
- submit() {
- // login({ mobile: "13523652365", password: "123456" }).then((res) => {
- // console.log(res);
- // if (res.data.code == 10000) {
- // uni.setStorage({
- // key: "token",
- // data: res.data.data.token,
- // success: function () {
- // uni.switchTab({
- // url: "../index/index",
- // });
- // },
- // });
- // }
- // });
- uni.$u.http
- .post("/api/login", {
- mobile: this.mobile,
- password: '123456',
- })
- .then((res) => {
- uni.setStorageSync("token", res.token);
- uni.setStorageSync("user_info", res);
- uni.setStorageSync('user_no', res.easemob_username)
- uni.setStorageSync('pwd', res.easemob_password)
- var options = {
- user: res.easemob_username,
- pwd: res.easemob_password,
- appKey: conn.appkey,
- success: function(res2) {
- console.log(res2);
- },
- error: function() {}
- };
- conn.open(options);
- uni.switchTab({
- url: "/pages/index/index",
- });
- })
- .catch((error) => {
- console.log(error);
- });
- },
- submita() {
- uni.$u.http
- .post("/api//mobile-register", {
- mobile: this.mobile,
- password: '123456',
- })
- .then((res) => {
- uni.$u.toast('注册成功')
- })
- .catch((error) => {
- console.log(error);
- });
- }
- },
- };
- </script>
- <style lang="scss" scoped>
- page {
- background-color: #ffffff !important;
- height: 100vh;
- }
- .login-btn {
- width: 662rpx;
- height: 96rpx;
- background: #f83224;
- box-shadow: 0rpx 16rpx 40rpx -12rpx rgba(255, 21, 21, 0.5);
- border-radius: 48rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 500;
- font-size: 32rpx;
- color: #ffffff;
- line-height: 96rpx;
- text-align: center;
- font-style: normal;
- }
- .fontYin {
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 24rpx;
- color: #666666;
- line-height: 34rpx;
- text-align: left;
- font-style: normal;
- }
- </style>
|