add res_content

This commit is contained in:
RainSun 2020-02-17 12:41:47 +08:00
parent 320117c904
commit dcc37800bf

View File

@ -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}