123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- App({
- onLaunch: function () {
- var _self=this;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 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"
- }
- })
|