diff --git a/orion-visor-ui/src/views/user/info/components/user-operator-log.vue b/orion-visor-ui/src/views/user/info/components/user-operator-log.vue
index a429df08..1c2f6561 100644
--- a/orion-visor-ui/src/views/user/info/components/user-operator-log.vue
+++ b/orion-visor-ui/src/views/user/info/components/user-operator-log.vue
@@ -3,8 +3,9 @@
- table.fetchTableData(undefined, undefined, e)" />
+ table.fetchTableData()" />
@@ -20,7 +21,8 @@
+ :base-params="{ userId: user?.id }"
+ :model="formModel"/>
@@ -33,11 +35,12 @@
diff --git a/orion-visor-ui/src/views/user/operator-log/components/operator-log-simple-table.vue b/orion-visor-ui/src/views/user/operator-log/components/operator-log-simple-table.vue
index 9d3a07d0..ac9bc9c7 100644
--- a/orion-visor-ui/src/views/user/operator-log/components/operator-log-simple-table.vue
+++ b/orion-visor-ui/src/views/user/operator-log/components/operator-log-simple-table.vue
@@ -84,11 +84,15 @@
const props = withDefaults(defineProps>(), {
baseParams: () => {
return {};
},
+ model: () => {
+ return {};
+ },
});
const pagination = usePagination();
@@ -131,7 +135,7 @@
};
// 切换页码
- const fetchTableData = (page = 1, limit = pagination.pageSize, form = {}) => {
+ const fetchTableData = (page = 1, limit = pagination.pageSize, form = props.model) => {
doFetchTableData({ page, limit, ...form });
};
diff --git a/orion-visor-ui/src/views/user/operator-log/components/operator-log-table.vue b/orion-visor-ui/src/views/user/operator-log/components/operator-log-table.vue
index 0804a2e2..aa0a565f 100644
--- a/orion-visor-ui/src/views/user/operator-log/components/operator-log-table.vue
+++ b/orion-visor-ui/src/views/user/operator-log/components/operator-log-table.vue
@@ -2,7 +2,8 @@
- fetchTableData(undefined, undefined, e)" />
+
@@ -131,7 +132,7 @@