소스 검색

获取套餐语言列表

peng 2 년 전
부모
커밋
2e968ed90e
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      AdminController/IcloudManagementController.py

+ 1 - 0
AdminController/IcloudManagementController.py

@@ -189,6 +189,7 @@ class IcloudServeView(View):
             if meal_id:
                 lang = lang.filter(icloudstoremeal__id=meal_id).values('icloudstoremeal__id', 'id', 'lang', 'title',
                                                                        'content')
+                total = lang.count()
             else:
                 lang = lang.values('icloudstoremeal__id', 'id', 'lang', 'title', 'content')[(page - 1) * line:page * line]
         return response.json(0, {'langList': list(lang), 'total': total})