111 Star 609 Fork 347

mallplus / mall-applet

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
app.js 7.25 KB
一键复制 编辑 原始数据 按行查看 历史
shenzhuan 提交于 2019-03-05 09:35 . 小程序
//app.js
var util = require('./utils/utils.js');
var api = require('./api.js');
App({
is_on_launch: true,
onLaunch: function () {
console.log(wx.getSystemInfoSync());
// this.getStoreData();
// this.getCatList();
var access_token = wx.getStorageSync("access_token");
console.log('token:' + access_token);
// if (!access_token)
// this.login();
},
getStoreData: function () {
var page = this;
this.request({
url: api.default.store,
data: {
id: 1
},
success: function (res) {
if (res.code == 200) {
wx.setStorageSync("storeaddress", res.data.storeaddress);
wx.setStorageSync("store_name", res.data.storename);
wx.setStorageSync("storeinfo", res.data.storeinfo);
wx.setStorageSync("contact_tel", res.data.storetelephone);
wx.setStorageSync("storeower", res.data.storeower);
}
},
complete: function () {
page.login();
}
});
},
getCatList: function () {
this.request({
url: api.default.cat_list,
data: {
limit: 15
},
success: function (res) {
if (res.code == 200) {
var cat_list = res.data.rows || [];
wx.setStorageSync("cat_list", cat_list);
}
}
});
},
login: function () {
var pages = getCurrentPages();
var page = pages[(pages.length - 1)];
wx.login({
success: function (res) {
if (res.code) {
var code = res.code;
wx.getUserInfo({
success: function (res) {
getApp().request({
url: api.passport.login,
method: "post",
data: {
code: code,
userInfo: res.rawData,
encrypted_data: res.encryptedData,
iv: res.iv,
signature: res.signature
},
success: function (res) {
wx.hideLoading();
if (res.code == 200) {
const tokenStr = res.data.tokenHead+res.data.token
wx.setStorageSync('loginToken', tokenStr)
wx.setStorageSync('token', res.data.token);
wx.setStorageSync("access_token", res.data.userId);
wx.setStorageSync("user_info", {
avatar_url: res.data.img,
nickname: res.data.username,
avatar_url: res.data.icon,
// parent: res.data.parent,
id: res.data.id
});
var parent_id = wx.getStorageSync("parent_id");
var p = getCurrentPages();
// var parent_id = 0;
if (p[0].options.user_id != undefined) {
parent_id = p[0].options.user_id;
}
else if (p[0].options.scene != undefined) {
parent_id = p[0].options.scene;
}
console.log('parentid:' + parent_id, p[0].options.scene, p[0].options.user_id);
getApp().bindParent({
parent_id: parent_id || 0
});
if (page == undefined) {
return;
}
wx.redirectTo({
url: "/" + page.route + "?" + util.objectToUrlParams(page.options),
fail: function () {
wx.switchTab({
url: "/" + page.route,
});
},
});
} else {
wx.showToast({
title: res.msg
});
}
}
});
}
});
} else {
//console.log(res);
}
}
});
},
request: function (object) {
var access_token = wx.getStorageSync("access_token");
console.log('token:' + access_token);
if (access_token) {
if (!object.data)
object.data = {};
// object.data.access_token = access_token;
}
wx.request({
url: object.url,
header: object.header || {
'content-type': 'application/x-www-form-urlencoded',
'Authorization':wx.getStorageSync('loginToken') // 让每个请求携带自定义token 请根据实际情况自行修改
},
data: object.data || {},
method: object.method || "GET",
dataType: object.dataType || "json",
success: function (res) {
if (res.data.code == -1) {
getApp().login();
} else {
if (object.success)
object.success(res.data);
}
},
fail: function (res) {
var app = getApp();
if (app.is_on_launch) {
app.is_on_launch = false;
wx.showModal({
title: "网络请求出错",
content: res.errMsg,
showCancel: false,
success: function (res) {
if (res.confirm) {
if (object.fail)
object.fail(res);
}
}
});
} else {
wx.showToast({
title: res.errMsg,
image: "/images/icon-warning.png",
});
if (object.fail)
object.fail(res);
}
},
complete: function (res) {
if (object.complete)
object.complete(res);
}
});
},
saveFormId: function (form_id) {
this.request({
url: api.user.save_form_id,
data: {
form_id: form_id,
}
});
},
loginBindParent: function (object) {
var access_token = wx.getStorageSync("access_token");
if (access_token == '') {
return true;
}
getApp().bindParent(object);
},
bindParent: function (object) {
if (object.parent_id == "undefined" || object.parent_id == 0)
return;
console.log("Try To Bind Parent With User Id:" + object.parent_id);
var user_info = wx.getStorageSync("user_info");
var share_setting = wx.getStorageSync("share_setting");
if (share_setting.level > 0) {
var parent_id = object.parent_id;
if (parent_id != 0) {
getApp().request({
url: api.share.bind_parent,
data: { parent_id: object.parent_id },
success: function (res) {
if (res.code == 200) {
user_info.parent = res.data
wx.setStorageSync('user_info', user_info);
}
}
});
}
}
},
/**
* 分享送优惠券
* */
shareSendCoupon: function (page) {
wx.showLoading({
mask: true,
});
if (!page.hideGetCoupon) {
page.hideGetCoupon = function (e) {
var url = e.currentTarget.dataset.url || false;
page.setData({
get_coupon_list: null,
});
if (url) {
wx.navigateTo({
url: url,
});
}
};
}
this.request({
url: api.coupon.share_send,
success: function (res) {
if (res.code == 200) {
page.setData({
get_coupon_list: res.data.list
});
}
},
complete: function () {
wx.hideLoading();
}
});
},
});
微信
1
https://gitee.com/catshen/mall-applet.git
git@gitee.com:catshen/mall-applet.git
catshen
mall-applet
mall-applet
master

搜索帮助