Browse Source

核酸检测结果每页显示条数更改

lighter 2 years ago
parent
commit
a3044f5a93
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/views/examination/CovidExamResult.vue

+ 2 - 2
src/views/examination/CovidExamResult.vue

@@ -29,7 +29,7 @@
       <el-pagination
           :current-page="currentPage"
           :page-size="pageSize"
-          :page-sizes="[15, 30, 45, 70, 100]"
+          :page-sizes="[50, 100, 500, 1000, 5000, 10000]"
           :total="totalSize"
           layout="total, sizes, prev, pager, next, jumper"
           style="margin-top: 5px"
@@ -64,7 +64,7 @@ export default {
     const totalSize = ref(0)
     const list = ref([])
 
-    const pageSize = ref(30)
+    const pageSize = ref(50)
     const currentPage = ref(1)
     const handleSizeChange = (val) => {
       pageSize.value = val