|
@@ -32,7 +32,7 @@ onMounted(async () => {
|
|
|
})
|
|
|
const search = async (query = { skip: 0, limit }) => {
|
|
|
const info = { skip: query.skip, limit: query.limit, ...searchForm.value }
|
|
|
- const res = await store.special(info)
|
|
|
+ const res = await store.query(info)
|
|
|
if (res.errcode == '0') {
|
|
|
data.value = res.data
|
|
|
total.value = res.total
|