This repository was archived by the owner on Mar 29, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +3
-6
lines changed
Expand file tree Collapse file tree 3 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ var RequestMQ = {
105105 map : { } ,
106106 mq : [ ] ,
107107 running : [ ] ,
108- MAX_REQUEST : 5 ,
108+ MAX_REQUEST : 10 ,
109109 push : function push ( param ) {
110110 param . t = + new Date ( ) ;
111111 while ( this . mq . indexOf ( param . t ) > - 1 || this . running . indexOf ( param . t ) > - 1 ) {
@@ -155,8 +155,6 @@ var CoreClass = function () {
155155 this . $addons = { } ;
156156
157157 this . $interceptors = { } ;
158-
159- this . $pages = { } ;
160158 }
161159
162160 _createClass ( CoreClass , [ {
@@ -165,7 +163,6 @@ var CoreClass = function () {
165163 var config = arguments . length > 1 && arguments [ 1 ] !== undefined ? arguments [ 1 ] : { } ;
166164
167165 this . $initAPI ( wepy , config . noPromiseAPI ) ;
168- this . $wxapp = getApp ( ) ;
169166 }
170167 } , {
171168 key : 'use' ,
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ let RequestMQ = {
1212 map : { } ,
1313 mq : [ ] ,
1414 running : [ ] ,
15- MAX_REQUEST : 5 ,
15+ MAX_REQUEST : 10 ,
1616 push ( param ) {
1717 param . t = + new Date ( ) ;
1818 while ( ( this . mq . indexOf ( param . t ) > - 1 || this . running . indexOf ( param . t ) > - 1 ) ) {
You can’t perform that action at this time.
0 commit comments