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
0
Merge Requests
0
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
钟尚武
sun
Commits
fcc751c1
Commit
fcc751c1
authored
6 years ago
by
Davve
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'feature/suggestion' into dev
parents
a428a228
50a10ef2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
23 deletions
+0
-23
commons.py
api/commons.py
+0
-21
urls.py
api/urls.py
+0
-2
No files found.
api/commons.py
deleted
100644 → 0
View file @
a428a228
#! /usr/bin/env python
# -*- coding: utf-8 -*-
# __author__ = "chenwei"
# Date: 2019/2/14
from
utils.base
import
APIView
from
utils.logger
import
error_logger
class
SuggestionListView
(
APIView
):
def
get
(
self
,
request
):
page
=
int
(
request
.
GET
.
get
(
'page'
,
1
))
limit
=
int
(
request
.
GET
.
get
(
'limit'
,
10
))
filter
=
self
.
handle_filter
(
request
.
GET
.
get
(
'filter'
,
""
))
try
:
data
=
self
.
rpc
[
'venus/sun/suggestion/list'
](
offset
=
(
page
-
1
)
*
limit
,
limit
=
limit
,
filters
=
filter
)
.
unwrap
()
except
Exception
as
e
:
error_logger
.
error
(
u'获取建议列表失败
%
s'
,
e
)
raise
return
data
\ No newline at end of file
This diff is collapsed.
Click to expand it.
api/urls.py
View file @
fcc751c1
...
@@ -19,7 +19,6 @@ from .upload import *
...
@@ -19,7 +19,6 @@ from .upload import *
from
.token
import
*
from
.token
import
*
from
.face_star
import
*
from
.face_star
import
*
from
.advertise
import
*
from
.advertise
import
*
from
.commons
import
*
urlpatterns
=
[
urlpatterns
=
[
# 登陆,注销相关
# 登陆,注销相关
...
@@ -113,7 +112,6 @@ urlpatterns = [
...
@@ -113,7 +112,6 @@ urlpatterns = [
url
(
r'^advertise/list$'
,
AdvertiseListView
.
as_view
()),
url
(
r'^advertise/list$'
,
AdvertiseListView
.
as_view
()),
url
(
r'^advertise/create$'
,
AdvertiseCreateView
.
as_view
()),
url
(
r'^advertise/create$'
,
AdvertiseCreateView
.
as_view
()),
url
(
r'^suggestion/list$'
,
SuggestionListView
.
as_view
())
]
]
search_urlpatterns
=
[
search_urlpatterns
=
[
...
...
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