Authored by QC-L

修改我的订单加载订单 limit 为 20

@@ -338,7 +338,7 @@ function loadOrder(req, res, next) { @@ -338,7 +338,7 @@ function loadOrder(req, res, next) {
338 } = req.query; 338 } = req.query;
339 const param = { 339 const param = {
340 page, 340 page,
341 - limit: limit || 10, 341 + limit: limit || 20,
342 type: type || 2, 342 type: type || 2,
343 uid 343 uid
344 }; 344 };
@@ -114,7 +114,7 @@ class GroupOrder extends Page { @@ -114,7 +114,7 @@ class GroupOrder extends Page {
114 url: '/activity/group/loadOrder', 114 url: '/activity/group/loadOrder',
115 data: { 115 data: {
116 page: this.data.page, 116 page: this.data.page,
117 - limit: 10, 117 + limit: 20,
118 type: window.queryString.type 118 type: window.queryString.type
119 } 119 }
120 }).then(result => { 120 }).then(result => {