+ @click="emits('openDetail', record)">
详情
@@ -177,11 +190,6 @@
-
-
-
-
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..b9c7c83c 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)" />
+
@@ -97,7 +98,7 @@
+ @click="emits('openDetail', record)">
详情
@@ -116,11 +117,6 @@
-
-
-
-