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
50a10ef2
Commit
50a10ef2
authored
Feb 15, 2019
by
Davve
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
清除代码
parent
3c2ea6dc
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 @
3c2ea6dc
#! /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
api/urls.py
View file @
50a10ef2
...
...
@@ -19,7 +19,6 @@ from .upload import *
from
.token
import
*
from
.face_star
import
*
from
.advertise
import
*
from
.commons
import
*
urlpatterns
=
[
# 登陆,注销相关
...
...
@@ -105,7 +104,6 @@ urlpatterns = [
url
(
r'^advertise/list$'
,
AdvertiseListView
.
as_view
()),
url
(
r'^advertise/create$'
,
AdvertiseCreateView
.
as_view
()),
url
(
r'^suggestion/list$'
,
SuggestionListView
.
as_view
())
]
search_urlpatterns
=
[
...
...
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