2 Commits 7a6431adcf ... a3db0ead03

Author SHA1 Message Date
  hwt a3db0ead03 Merge branch '0.6' of http://svn.ouj.com:3000/DWG/allstar into 0.6 6 years ago
  hwt 86344e1d51 去掉log 6 years ago
1 changed files with 0 additions and 2 deletions
  1. 0 2
      assets/scripts/net/Api.js

+ 0 - 2
assets/scripts/net/Api.js

@@ -225,7 +225,6 @@ class Api {
     }
 
     static wxRequestPromise(url, data, method, header) {
-        console.log('wxRequestPromise: ');
         return new Promise((resolve, reject) => {
             wx.request({
                 url: url,
@@ -233,7 +232,6 @@ class Api {
                 method: method,
                 header: header === undefined ? {} : header,
                 success: (res) => {
-                    console.log('request success: ', res);
                     //直接处理登录失效的逻辑
                     if (res.data.code === ResponseStateCode.LOGIN_INVALIDATE) {
                         Global.needLogin = true;