Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yoho-app-web
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
1
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
lea guo
5 years ago
Commit
317de7cf51adaeb4f7576b0228d29f91dfd9228d
1 parent
6b3b5fd8
修改推荐商品分页数量
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
apps/store/zero-help.js
apps/store/zero-help.js
View file @
317de7c
...
...
@@ -72,7 +72,7 @@ export default {
// 获取资源池商品
async
fetchPoolGoods
({
commit
,
state
:
{
poolGoodsInfo
}
})
{
let
{
page_total
:
pageTotal
,
page
,
page_size
:
limit
}
=
poolGoodsInfo
;
let
{
page_total
:
pageTotal
,
page
}
=
poolGoodsInfo
;
// 数据完全获取
if
(
page
>
0
&&
(
pageTotal
===
0
||
page
===
pageTotal
))
{
...
...
@@ -83,7 +83,7 @@ export default {
let
res
=
await
this
.
$api
.
get
(
'/api/zero/help/poll/productList'
,
{
page
,
limit
,
limit
:
30
,
productPool
,
order
:
'pools_sort_desc'
,
});
...
...
Please
register
or
login
to post a comment