1 Star 0 Fork 368

天命之谓性 / 小象电商 微信小程序商城

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
app.js 6.09 KB
一键复制 编辑 原始数据 按行查看 历史
1234qwer 提交于 2021-01-19 14:07 . 初始化版本
/**
* tabBar页面路径列表 (用于链接跳转时判断)
* tabBarLinks为常量, 无需修改
*/
const tabBarLinks = [
'pages/index/index',
'pages/category/index',
'pages/flow/index',
'pages/profile/profile'
];
// 站点信息
import siteInfo from 'siteinfo.js';
App({
onLaunch: function () {
let App = this;
// 设置api地址
App.setApiRoot();
},
globalData: {
userInfo: null
},
api_root: '', // api地址
/**
* 设置api地址s
*/
setApiRoot() {
let App = this;
App.api_root = `${siteInfo.siteroot}`;
},
/**
* 获取小程序基础信息
*/
getWxappBase(callback) {
let App = this;
App._get('/api/setting', {}, result => {
// 记录小程序基础信息
wx.setStorageSync('wxapp', result.data.wxapp);
callback && callback(result.data.wxapp);
}, false, false);
},
/**
* 执行用户登录
*/
doLogin() {
// 保存当前页面
let pages = getCurrentPages();
if (pages.length) {
let currentPage = pages[pages.length - 1];
"pages/login/login" != currentPage.route &&
wx.setStorageSync("currentPage", currentPage);
}
// 跳转授权页面
wx.navigateTo({
url: "/pages/login/login"
});
},
/**
* 当前用户id
*/
getUserId() {
return wx.getStorageSync('user_id') || 0;
},
/**
* 显示成功提示框
*/
showSuccess(msg, callback) {
wx.showToast({
title: msg,
icon: 'success',
success() {
callback && (setTimeout(() => {
callback();
}, 1500));
}
});
},
/**
* 显示失败提示框
*/
showError(msg, callback) {
wx.showModal({
title: '友情提示',
content: msg,
showCancel: false,
success(res) {
// callback && (setTimeout(() => {
// callback();
// }, 1500));
callback && callback();
}
});
},
/**
* get请求
*/
_get(url, data, success, fail, complete, check_login) {
let App = this;
wx.showNavigationBarLoading();
// 构造请求参数
data = Object.assign({
}, data);
// if (typeof check_login === 'undefined')
// check_login = true;
// 构造get请求
let request = () => {
data.token = wx.getStorageSync('token');
wx.request({
url: App.api_root + url,
header: {
'content-type': 'application/json',
'Authorization': wx.getStorageSync('token')
},
data,
success(res) {
if (res.statusCode !== 200 || typeof res.data !== 'object') {
console.log(res);
App.showError('GET网络请求出错');
return false;
}
if (res.data.status === 400 || res.data.status === 401 || res.data.status === 402) {
// App.doLogin(() => {
// App._post_form(url, data, success, fail);
// });
return false;
} else if (res.data.status === 500 || res.data.status === 422) {
App.showError(res.data.message);
return false;
} else {
success && success(res.data);
}
},
fail(res) {
// console.log(res);
App.showError(res.errMsg, () => {
fail && fail(res);
});
},
complete(res) {
wx.hideNavigationBarLoading();
complete && complete(res);
},
});
};
// 判断是否需要验证登录
check_login ? App.doLogin(request) : request();
},
/**
* post提交
*/
_post_form(url, data, success, fail, complete) {
wx.showNavigationBarLoading();
let App = this;
// 构造请求参数
data = Object.assign({
}, data);
wx.request({
url: App.api_root + url,
header: {
'content-type': 'application/x-www-form-urlencoded',
'Authorization': wx.getStorageSync('token')
},
method: 'POST',
data,
success(res) {
if (res.statusCode !== 200 || typeof res.data !== 'object') {
App.showError('POST网络请求出错');
return false;
}
if (res.data.status === 400 || res.data.status === 401 || res.data.status === 402) {
// 登录态失效, 重新登录
App.doLogin(() => {
App._post_form(url, data, success, fail);
});
return false;
} else if (res.data.status === 500 || res.data.status === 422) {
App.showError(res.data.message, () => {
fail && fail(res);
});
return false;
}
success && success(res.data);
},
fail(res) {
App.showError(res.message, () => {
fail && fail(res);
});
},
complete(res) {
wx.hideLoading();
wx.hideNavigationBarLoading();
complete && complete(res);
}
});
},
/**
* 验证是否存在user_info
*/
validateUserInfo() {
let user_info = wx.getStorageSync('user_info');
return !!wx.getStorageSync('user_info');
},
/**
* 对象转URL
*/
urlEncode(data) {
var _result = [];
for (var key in data) {
var value = data[key];
if (value.constructor == Array) {
value.forEach(_value => {
_result.push(key + "=" + _value);
});
} else {
_result.push(key + '=' + value);
}
}
return _result.join('&');
},
/**
* 设置当前页面标题
*/
setTitle() {
let App = this,
wxapp;
if (wxapp = wx.getStorageSync('wxapp')) {
wx.setNavigationBarTitle({
title: wxapp.wxapp_title
});
} else {
App.getWxappBase(() => {
App.setTitle();
});
}
},
/**
* 设置navbar标题、颜色
*/
setNavigationBar() {
let App = this;
// 获取小程序基础信息
App.getWxappBase(wxapp => {
// 设置navbar标题、颜色
wx.setNavigationBarColor({
frontColor: wxapp.top_text_color.text,
backgroundColor: wxapp.top_background_color
})
});
},
/**
* 获取tabBar页面路径列表
*/
getTabBarLinks() {
return tabBarLinks;
},
})
Java
1
https://gitee.com/the-nature-of-destiny/xiaoxiangb2b2c-weichat.git
git@gitee.com:the-nature-of-destiny/xiaoxiangb2b2c-weichat.git
the-nature-of-destiny
xiaoxiangb2b2c-weichat
小象电商 微信小程序商城
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891