|
|
|
@ -111,10 +111,10 @@ async function query(page: number, pageSize: number) {
|
|
|
|
|
search_searchname: { value: keyword.value, op: "like", type: "string" },
|
|
|
|
|
};
|
|
|
|
|
const result = await getConditionList({ pageNo: page, pageSize }, searchParam, 0);
|
|
|
|
|
const { data, pageCount, total } = result;
|
|
|
|
|
const { data, pageCount, total:totalCount } = result;
|
|
|
|
|
tableData.value = data;
|
|
|
|
|
pagination.page = page;
|
|
|
|
|
total.value = total;
|
|
|
|
|
total.value = totalCount;
|
|
|
|
|
pagination.pageCount = pageCount;
|
|
|
|
|
loading.value = false;
|
|
|
|
|
}
|
|
|
|
|