Authored by QC-L

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

... ... @@ -338,7 +338,7 @@ function loadOrder(req, res, next) {
} = req.query;
const param = {
page,
limit: limit || 10,
limit: limit || 20,
type: type || 2,
uid
};
... ...
... ... @@ -114,7 +114,7 @@ class GroupOrder extends Page {
url: '/activity/group/loadOrder',
data: {
page: this.data.page,
limit: 10,
limit: 20,
type: window.queryString.type
}
}).then(result => {
... ...