diff --git a/src/views/journal/index.vue b/src/views/journal/index.vue
index c14b877..de137d0 100644
--- a/src/views/journal/index.vue
+++ b/src/views/journal/index.vue
@@ -2,67 +2,70 @@
-
-
+
-
-
-
-
+
+
+
-
-
-
-
+
+
+
-
-
-
-
+
+
+
+
-
+
{
- const { total, records } = res.data.data;
- this.page.total = total;
- this.tableData = records;
- this.loading = false;
- });
+ getList({ current: currentPage, size: pageSize, ...params }).then(
+ (res) => {
+ const { total, records } = res.data.data;
+ this.page.total = total;
+ this.tableData = records;
+ this.loading = false;
+ }
+ );
},
// 分页
currentChange(currentPage) {
@@ -173,32 +178,19 @@ export default {