You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
542 B
25 lines
542 B
3 months ago
|
//app.js
|
||
|
var http = require("utils/http.js");
|
||
|
App({
|
||
|
onLaunch: function () {
|
||
|
console.log('mall4j.v230313')
|
||
|
// http.getToken();
|
||
|
// wx.getSetting({
|
||
|
// success(res) {
|
||
|
// if (!res.authSetting['scope.userInfo']) {
|
||
|
// wx.navigateTo({
|
||
|
// url: '/pages/login/login',
|
||
|
// })
|
||
|
// }
|
||
|
// }
|
||
|
// })
|
||
|
},
|
||
|
globalData: {
|
||
|
// 定义全局请求队列
|
||
|
requestQueue: [],
|
||
|
// 是否正在进行登陆
|
||
|
isLanding: true,
|
||
|
// 购物车商品数量
|
||
|
totalCartCount: 0
|
||
|
}
|
||
|
})
|