|
@@ -104,10 +104,12 @@ const searchOther = async () => {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-const search = async () => {
|
|
|
|
|
|
+const search = async (query = { skip, limit }) => {
|
|
|
|
+ skip = query.skip
|
|
|
|
+ limit = query.limit
|
|
const info = {
|
|
const info = {
|
|
- skip: 0,
|
|
|
|
- limit: 6,
|
|
|
|
|
|
+ skip: query.skip,
|
|
|
|
+ limit: query.limit,
|
|
incubator: incubatorInfo.value.id
|
|
incubator: incubatorInfo.value.id
|
|
}
|
|
}
|
|
const res = await cirelationStore.list(info)
|
|
const res = await cirelationStore.list(info)
|