11 lines
211 B
JavaScript
11 lines
211 B
JavaScript
|
//app.js
|
||
|
var urlPath = require('./config.js');
|
||
|
App({
|
||
|
globalData: {
|
||
|
isLogin : false
|
||
|
},
|
||
|
onLaunch: function () {
|
||
|
var that = this;
|
||
|
wx.setStorageSync('urlPath', urlPath);
|
||
|
},
|
||
|
})
|