add res_content
This commit is contained in:
parent
320117c904
commit
dcc37800bf
@ -33,7 +33,7 @@ def addLAF(data, add_type):
|
||||
def getLost():
|
||||
arr = []
|
||||
try:
|
||||
for i in col('lost').find({'close':'false'},{'title': 1, 'create_time':1, 'img_url':1, 'total_addr':1,'type':1}):
|
||||
for i in col('lost').find({'close':'false'},{'title': 1, 'create_time':1, 'img_url':1, 'total_addr':1,'type':1,'content':1}):
|
||||
arr.append(i)
|
||||
except Exception as e:
|
||||
return {'errcode': 351, 'errmsg': 'lost表获取失败', 'errdetail': e}
|
||||
@ -43,7 +43,7 @@ def getLost():
|
||||
def getFound():
|
||||
arr = []
|
||||
try:
|
||||
for i in col('found').find({'close':'false'},{'title': 1, 'create_time':1, 'img_url':1, 'total_addr':1,'type':1}):
|
||||
for i in col('found').find({'close':'false'},{'title': 1, 'create_time':1, 'img_url':1, 'total_addr':1,'type':1, 'content':1}):
|
||||
arr.append(i)
|
||||
except Exception as e:
|
||||
return {'errcode': 352, 'errmsg': 'found表获取失败', 'errdetail': e}
|
||||
|
Loading…
x
Reference in New Issue
Block a user