1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- const {
- login,
- register
- } = require('../../../utils/api.js')
- import route_constant from '../../../utils/route_constant.js';
- import route_util from '../../../utils/route_util.js';
- Page({
- data: {
- nvabarData: {
- showCapsule: 1, //是否显示左上角图标 1表示显示 0表示不显示
- title: '', //导航栏 中间的标题
- },
- isYs: false,
- isAgree: false,
- },
- onLoad(options) {},
- egree() {
- this.setData({
- isAgree: !this.data.isAgree
- });
- },
- goabout(e) {
- var param = '?type=' + e.currentTarget.dataset.index;
- route_util.jumpParam(route_constant.aboutInfo, param);
- },
- getPhoneNumber(e) {
- if (e.detail.errMsg != "getPhoneNumber:ok") {
- wx.showToast({
- title: "获取手机号失败",
- icon: 'fail',
- duration: 2000
- });
- return;
- }
- var phoneCode = e.detail.code;
- if (phoneCode) {
- wx.login({
- success: res1 => {
- wx.showLoading({
- title: '加载中',
- });
- // {"openid":"oZHPJ5JcNem2och3ToaocggmUENw","unionid":null,"userId":null,"deviceUid":null,"accessToken":null,"phone":null,"headUrl":"","nickname":"","isNewUser":true}
- login({
- code: res1.code,
- unShowLoad: true,
- }).then((res2) => {
- register({
- openid: res2.openid,
- code: phoneCode,
- unShowLoad: true,
- }).then((res3) => {
- var phone = res3.phone;
- getCurrentPages()[0].loginReset(phone, function () {
- wx.showToast({
- title: "登录成功",
- icon: 'success',
- duration: 2000
- });
- }, function () {
- setTimeout(() => {
- route_util.redirectTo(route_constant.deviceList);
- }, 2000);
- }, function () {
- wx.hideLoading();
- });
- });
- });
- },
- fail(fail1) {
- wx.hideLoading();
- },
- });
- }
- },
- notlogin() {
- wx.showToast({
- title: '请同意协议',
- icon: "none"
- })
- }
- })
- // 需要用授权登录
- // if ((res.isNewUser && res.isNewUser === true) || !phone) {
- // return;
- // };
|