1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- App({
- onLaunch: function () {
- var _self=this;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- wx.getSystemInfo({
- success:function(res) {
- _self.globalData.scale = 750/res.windowWidth;
- _self.globalData.windowh = res.windowHeight*_self.globalData.scale;
- _self.globalData.Authorization = false;
- }
- });
- },
- globalData: {
- serverpath:"https://api.jasonre.cn"
- }
- })
|