Commit 52e6e13e authored by 任国军's avatar 任国军

fix cat_id

parent eae3399d
Pipeline #18362 passed with stage
in 9 seconds
......@@ -678,7 +678,7 @@ class InstitutionSubService extends Service {
const page = Number(input.page) || 1;
const limit = Number(input.limit) || 2;
const offset = (page - 1) * limit;
const catId = Number(input.catId) || 0;
const catId = Number(input.cat_id) || 0;
let catIds = [];
const filter = { where: { status: 'online', is_deleted: 0 }, order: [[ 'sort', 'asc' ]], limit, offset };
......
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