diff --git a/app/api/schemas/report.py b/app/api/schemas/report.py index 00a5344..632924c 100644 --- a/app/api/schemas/report.py +++ b/app/api/schemas/report.py @@ -3,4 +3,4 @@ from marshmallow import Schema, fields class ReportSchema(Schema): token = fields.Str(required=True) uid = fields.Str(required=True) - page = fields.Str(required=True) + page = fields.Int(required=True) diff --git a/app/api/services/web_contents.py b/app/api/services/web_contents.py index dda6d34..a0e128e 100644 --- a/app/api/services/web_contents.py +++ b/app/api/services/web_contents.py @@ -76,7 +76,7 @@ class WebContentsService(BaseService): web_contents_data[t.settings_key.strip()] = t.setting_value.strip() # The template set up - web_contents_data["web_images"]=[] + # web_contents_data["web_images"]=[] return web_contents_data