Commit 87ab07ee authored by liuzhaoh's avatar liuzhaoh

页码数调整

parent 047b1802
......@@ -87,7 +87,7 @@
<common-table
:data="tableData"
:columns="tableColumns"
:default-page-size="10"
:default-page-size="20"
@pagination-change="handlePaginationChange"
:total="total"
align="center"
......@@ -127,7 +127,7 @@ import axios from "axios";
const ENV = import.meta.env;
const uploadUrl = ENV.VITE_APP_BASE_API5 + "/importDeviceAndSignal";
const currentPage = ref(1);
const pageSize = ref(10);
const pageSize = ref(20);
const total = ref(0);
const getIndex = (index) => {
return (currentPage.value - 1) * pageSize.value + index + 1;
......
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