| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211 |
- import {
- getUserInfo,
- userEdit
- } from '../../api/user.js';
- import {
- switchH5Login
- } from '../../api/api.js';
- // import authLogin from '../../utils/authLogin.js';
- import util from '../../utils/util.js';
- const app = getApp();
- Page({
- /**
- * 页面的初始数据
- */
- data: {
- parameter: {
- 'navbar': '1',
- 'return': '1',
- 'title': '个人资料',
- 'color': true,
- 'class': '0'
- },
- userInfo: {},
- loginType: 'h5', //app.globalData.loginType
- userIndex: 0,
- switchUserInfo: [],
- },
- /**
- * 小程序设置
- */
- Setting: function () {
- wx.openSetting({
- success: function (res) {
- console.log(res.authSetting)
- }
- });
- },
- switchAccounts: function (e) {
- let index = e.currentTarget.dataset.index,
- userInfo = this.data.switchUserInfo[index],
- that = this;
- that.setData({
- userIndex: index
- });
- if (that.data.switchUserInfo.length <= 1) return true;
- if (userInfo === undefined) return app.Tips({
- title: '切换的账号不存在'
- });
- if (userInfo.user_type === 'h5') {
- wx.showLoading({
- title: '正在切换中'
- });
- switchH5Login().then(res => {
- wx.hideLoading();
- app.globalData.token = res.data.token;
- app.globalData.expires_time = res.data.time;
- app.globalData.loginType = 'h5';
- app.globalData.userInfo = res.data.userInfo;
- that.getUserInfo();
- }).catch(err => {
- wx.hideLoading();
- return app.Tips({
- title: err
- });
- })
- } else {
- // wx.showLoading({
- // title: '正在切换中'
- // });
- // authLogin('routine').then(res => {
- // that.getUserInfo();
- // wx.hideLoading();
- // }).catch(err => {
- // wx.hideLoading();
- // return app.Tips({
- // title: err
- // });
- // });
- }
- },
- /**
- * 授权回调
- */
- onLoadFun: function () {
- this.getUserInfo();
- },
- /**
- * 退出登录
- *
- */
- outLogin: function () {
- if (this.data.loginType == 'h5') {
- app.globalData.token = '';
- app.globalData.isLog = false;
- app.globalData.userInfo = {};
- app.globalData.expiresTime = 0;
- wx.showLoading({
- title: '正在退出登录',
- });
- return wx.switchTab({
- url: '/pages/index/index',
- success: function () {
- wx.hideLoading();
- }
- });
- }
- },
- /**
- * 生命周期函数--监听页面加载
- */
- onLoad: function (options) {
- },
- getPhoneNumber: function (e) {
- var detail = e.detail,
- cache_key = wx.getStorageSync('cache_key'),
- that = this;
- if (detail.errMsg == 'getPhoneNumber:ok') {
- if (!cache_key) {
- app.globalData.token = '';
- app.globalData.isLog = false;
- return false;
- }
- } else {
- app.Tips({
- title: '取消授权'
- });
- }
- },
- /**
- * 获取用户详情
- */
- getUserInfo: function () {
- var that = this;
- getUserInfo().then(res => {
- that.setData({
- userInfo: res.data,
- switchUserInfo: res.data.switchUserInfo || []
- });
- for (let i = 0; i < that.data.switchUserInfo.length; i++) {
- if (that.data.switchUserInfo[i].uid === that.data.userInfo.uid) {
- that.setData({
- userIndex: i
- });
- }
- }
- // app.globalData.unread = res.data.notice
- app.setUnread(res.data.notice)
- });
- },
- /**
- * 上传文件
- *
- */
- uploadpic: function () {
- var that = this;
- util.uploadImageOne('upload/image', function (res) {
- var userInfo = that.data.switchUserInfo[that.data.userIndex];
- if (userInfo !== undefined) {
- userInfo.avatar = res.data.url;
- }
- that.data.switchUserInfo[that.data.userIndex] = userInfo;
- that.setData({
- switchUserInfo: that.data.switchUserInfo
- });
- });
- },
- /**
- * 提交修改
- */
- formSubmit: function (e) {
- var that = this,
- value = e.detail.value,
- userInfo = that.data.switchUserInfo[that.data.userIndex];
- if (!value.nickname) return app.Tips({
- title: '用户姓名不能为空'
- });
- value.avatar = userInfo.avatar;
- userEdit(value).then(res => {
- return app.Tips({
- title: res.msg,
- icon: 'success'
- }, {
- tab: 3,
- url: 1
- });
- }).catch(msg => {
- return app.Tips({
- title: msg || '保存失败,您并没有修改'
- }, {
- tab: 3,
- url: 1
- });
- });
- },
- })
|