From 84659b2d8d9c839903988b59905c6e6c338c5e71 Mon Sep 17 00:00:00 2001
From: luohairen <3399054449@qq.com>
Date: 星期四, 07 十一月 2024 09:16:38 +0800
Subject: [PATCH] 错题展示

---
 src/views/wrong-list/index.vue |   44 +++++++++++++++++++++++++++-----------------
 1 files changed, 27 insertions(+), 17 deletions(-)

diff --git a/src/views/wrong-list/index.vue b/src/views/wrong-list/index.vue
index e0c48d3..415a098 100644
--- a/src/views/wrong-list/index.vue
+++ b/src/views/wrong-list/index.vue
@@ -9,8 +9,8 @@
             <div class="card-wrapper w-full h-full flex flex-col px-8 box-border">
               <div class="card-header flex justify-between items-center shrink-0">
                 <div class="header-search flex items-center">
-                  <el-input v-model="searchText" placeholder="璇疯緭鍏ヨ�冭瘯鍚嶇О" :prefix-icon="Search" maxlength="20" @input="searchData"/>
-                  <el-button type="primary" class="ml-4" @click="searchData">鎼滅储</el-button>
+<!--                  <el-input v-model="searchText" placeholder="璇疯緭鍏ヨ�冭瘯鍚嶇О" :prefix-icon="Search" maxlength="20" @input="searchData"/>-->
+<!--                  <el-button type="primary" class="ml-4" @click="searchData">鎼滅储</el-button>-->
                 </div>
               </div>
 
@@ -21,10 +21,10 @@
               </div>
 
               <div class="card-footer flex justify-center mb-7 shrink-0">
-                <el-pagination background layout="prev, pager, next" :total="dataList.length"
-                               :default-page-size="20"
-                               :currentPage="currentIndex"
-                               :hide-on-single-page="true"
+                <el-pagination background layout="prev, pager, next"
+                               :total="pageParam.total"
+                               :page-size="10"
+                               :current-page="pageParam.pageIndex"
                                @current-change="handleCurrentChange"/>
               </div>
             </div>
@@ -37,41 +37,51 @@
 
 <script setup>
 import { ref } from 'vue';
-
 import NormalHeader from '@/components/NormalHeader/index.vue';
 import DataList from './data-list/index.vue';
-import { getWrongList } from '@/api/modules/wrong.js';
+import { page } from '@/api/modules/wrong.js';
 
-
-const searchText = ref('');
-const currentIndex = ref(1);
 
 const dataList = ref([]);
-
 const loading = ref(false);
+const currentData = ref([]);
+
+// 鍒嗛〉鍙傛暟
+const pageParam = {
+  pageIndex: 1,
+  pageSize: 10,
+  total: 0
+};
+
+
 
 const getData = () => {
   loading.value = true;
-  getWrongList({ examName: searchText.value }).then(res => {
+  page().then(res => {
     dataList.value = res.data;
     loading.value = false;
   }).catch(err => {
     loading.value = false;
   });
 };
+// 椤甸潰鍒囨崲
+const handleCurrentChange = (pageIndex) => {
+  pageParam.pageIndex = pageIndex; // 鏇存柊椤电爜
+  const currentData = getPaginatedData(); // 鑾峰彇褰撳墠椤垫暟鎹�
+  updateView(currentData); // 鏇存柊瑙嗗浘
+}
+
 
 getData();
 
+
 const searchData = () => {
   getData();
-};
+}
 
 const handleClick = (tab, event) => {
 };
 
-const handleCurrentChange = (val) => {
-  getData();
-}
 </script>
 
 <style lang="scss" scoped>

--
Gitblit v1.8.0