Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
S
sun
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
alpha
sun
Commits
0d6aa3bb
Commit
0d6aa3bb
authored
5 years ago
by
haowang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
modify product list response
parent
10dbb7bc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
pictorial.py
api/pictorial.py
+2
-1
product.py
api/product.py
+1
-1
No files found.
api/pictorial.py
View file @
0d6aa3bb
...
@@ -10,12 +10,13 @@ class PictorialListView(APIView):
...
@@ -10,12 +10,13 @@ class PictorialListView(APIView):
offset
=
int
(
request
.
GET
.
get
(
'page'
,
1
))
offset
=
int
(
request
.
GET
.
get
(
'page'
,
1
))
limit
=
int
(
request
.
GET
.
get
(
'limit'
,
10
))
limit
=
int
(
request
.
GET
.
get
(
'limit'
,
10
))
filters
=
self
.
handle_filter
(
request
.
GET
.
get
(
'filter'
,
'{}'
))
filters
=
self
.
handle_filter
(
request
.
GET
.
get
(
'filter'
,
'{}'
))
product_id
=
request
.
GET
.
get
(
'product_id'
)
if
star_id
:
if
star_id
:
filters
.
update
({
'star_id'
:
star_id
})
filters
.
update
({
'star_id'
:
star_id
})
if
user_id
:
if
user_id
:
filters
.
update
({
'user_id'
:
user_id
})
filters
.
update
({
'user_id'
:
user_id
})
try
:
try
:
data
=
self
.
rpc
[
'venus/sun/pictorial/list'
](
filters
=
filters
,
offset
=
(
offset
-
1
)
*
limit
,
limit
=
limit
)
.
unwrap
()
data
=
self
.
rpc
[
'venus/sun/pictorial/list'
](
filters
=
filters
,
offset
=
(
offset
-
1
)
*
limit
,
limit
=
limit
,
product_id
=
product_id
)
.
unwrap
()
except
Exception
as
e
:
except
Exception
as
e
:
error_logger
.
error
(
u'获取画报列表失败
%
s'
,
e
)
error_logger
.
error
(
u'获取画报列表失败
%
s'
,
e
)
raise
raise
...
...
This diff is collapsed.
Click to expand it.
api/product.py
View file @
0d6aa3bb
...
@@ -83,7 +83,7 @@ class ProductListView(APIView):
...
@@ -83,7 +83,7 @@ class ProductListView(APIView):
has_image
=
has_image
,
brand_id
=
brand_id
,
category_id
=
category_id
,
price_low
=
price_low
,
price_high
=
price_high
,
has_image
=
has_image
,
brand_id
=
brand_id
,
category_id
=
category_id
,
price_low
=
price_low
,
price_high
=
price_high
,
grade_low
=
grade_low
,
grade_high
=
grade_high
,
comment_nums_low
=
comment_nums_low
,
comment_nums_high
=
comment_nums_high
)
.
unwrap
()
grade_low
=
grade_low
,
grade_high
=
grade_high
,
comment_nums_low
=
comment_nums_low
,
comment_nums_high
=
comment_nums_high
)
.
unwrap
()
result
=
{
result
=
{
'
data
'
:
data
,
'
list
'
:
data
,
'total'
:
count
,
'total'
:
count
,
}
}
return
result
return
result
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment