@@ -6,22 +6,22 @@ Page({
|
||||
urlList: [],
|
||||
user: {}
|
||||
},
|
||||
onLoad: function(n) {
|
||||
onLoad: function (n) {
|
||||
var o = this;
|
||||
e.pageStart(t).then(function(t) {
|
||||
e.pageStart(t).then(function (t) {
|
||||
o.getContent();
|
||||
});
|
||||
},
|
||||
onShow: function() {
|
||||
onShow: function () {
|
||||
this.refresh && this.getContent();
|
||||
},
|
||||
onPullDownRefresh: function() {},
|
||||
onShareAppMessage: function() {},
|
||||
getContent: function() {
|
||||
onPullDownRefresh: function () { },
|
||||
onShareAppMessage: function () { },
|
||||
getContent: function () {
|
||||
var n = this;
|
||||
wx.showLoading({
|
||||
title: ""
|
||||
}), e.request('/miniprogram/user', {}, !0).then(function(t) {
|
||||
}), e.request('/miniprogram/user', {}, !0).then(function (t) {
|
||||
if (wx.hideLoading(), 200 != t.code) return wx.showModal({
|
||||
title: "提示",
|
||||
content: t.message
|
||||
@@ -30,18 +30,18 @@ Page({
|
||||
showLoding: !1,
|
||||
user: t.data.user,
|
||||
urlList: t.data.menu
|
||||
}, function() {});
|
||||
}).catch(function(t) {
|
||||
}, function () { });
|
||||
}).catch(function (t) {
|
||||
wx.hideLoading();
|
||||
});
|
||||
},
|
||||
islogin: function() {
|
||||
islogin: function () {
|
||||
wx.showLoading({
|
||||
title: "加载中"
|
||||
});
|
||||
},
|
||||
refresh: 0,
|
||||
toPage: function(t) {
|
||||
toPage: function (t) {
|
||||
var e = t.currentTarget.dataset, n = (e.refresh, e.url);
|
||||
n ? wx.navigateTo({
|
||||
url: "/pages/".concat(n)
|
||||
@@ -51,29 +51,29 @@ Page({
|
||||
duration: 2e3
|
||||
}), this.refresh = 1;
|
||||
},
|
||||
callUs: function() {
|
||||
callUs: function () {
|
||||
if (!t.globalData.servicetel) return !1;
|
||||
wx.makePhoneCall({
|
||||
phoneNumber: "" + t.globalData.servicetel
|
||||
});
|
||||
},
|
||||
updateUserAvatar: function() {
|
||||
updateUserAvatar: function () {
|
||||
var that = this;
|
||||
wx.chooseMedia({
|
||||
count: 1,
|
||||
mediaType: ['image'],
|
||||
sourceType: ['album', 'camera'],
|
||||
success: function(res) {
|
||||
success: function (res) {
|
||||
wx.uploadFile({
|
||||
url: 'https://t-jm.v0750.com/miniprogram/upload',
|
||||
url: 'https://t-jm.v0750.com/miniprogram/user/upload',
|
||||
filePath: res.tempFiles[0].tempFilePath,
|
||||
name: 'file',
|
||||
success: function(uploadRes) {
|
||||
success: function (uploadRes) {
|
||||
var data = JSON.parse(uploadRes.data);
|
||||
if (data.code == 200) {
|
||||
e.request('/miniprogram/user/update', {
|
||||
avatar: data.data.url
|
||||
}, true).then(function(res) {
|
||||
}, true).then(function (res) {
|
||||
if (res.code == 200) {
|
||||
that.getContent();
|
||||
wx.showToast({
|
||||
@@ -93,18 +93,18 @@ Page({
|
||||
}
|
||||
});
|
||||
},
|
||||
updateUserNickname: function() {
|
||||
updateUserNickname: function () {
|
||||
var that = this;
|
||||
wx.showModal({
|
||||
title: '修改昵称',
|
||||
editable: true,
|
||||
placeholderText: '请输入新昵称',
|
||||
success: function(res) {
|
||||
success: function (res) {
|
||||
if (res.confirm && res.content) {
|
||||
// 发送请求到后端,更新用户昵称
|
||||
e.request('/miniprogram/user/update', {
|
||||
nickname: res.content
|
||||
}, true).then(function(res) {
|
||||
}, true).then(function (res) {
|
||||
if (res.code == 200) {
|
||||
that.getContent();
|
||||
wx.showToast({
|
||||
|
||||
Reference in New Issue
Block a user