Commit 9061e740 authored by 李尚科's avatar 李尚科

house analysis fix

parent a61e611f
Pipeline #9265 passed with stage
in 4 seconds
......@@ -83,7 +83,7 @@ class HouseAnalysisService extends Service {
if (!user_id || !app_type_id) {
ctx.failed('login error');
}
const results = await ctx.realestateModel.HouseAnalysis.list({ page: page, limit: limit, where: { user_id: user_id, app_type_id: app_type_id }, order: [['id', 'desc']] });
const results = await ctx.realestateModel.HouseAnalysis.list({ page: page, limit: Number(limit), where: { user_id: user_id, app_type_id: app_type_id }, order: [['id', 'desc']] });
return results;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment