123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- App({
- onLaunch: function () {
- var _self=this;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- wx.getSystemInfo({
- success:function(res) {
- _self.globalData.pxscale = res.pixelRatio;
- _self.globalData.scale = 750/res.windowWidth;
- _self.globalData.windowHeight = res.windowHeight;
- _self.globalData.windowh = res.windowHeight*_self.globalData.scale;
- _self.globalData.Authorization = false;
- }
- });
- wx.getSystemInfo({
- success: function(res) {
- var model = res.model
- if (model.search('iPhone X') != -1){
- _self.globalData.isIpx = true;
- }else{
- _self.globalData.isIpx = false;
- }
- }
- })
- },
- globalData: {
-
- serverpath:"https://api.dyhc360.com"
- }
- })
|