This commit is contained in:
陈红丽 2024-07-12 14:06:27 +08:00
parent 9ac027dd5e
commit f2a87bb25a
8 changed files with 6 additions and 6 deletions

View File

@ -42,14 +42,14 @@
<script lang="ts" setup>
import { reactive, ref, h,nextTick,defineAsyncComponent } from 'vue';
import { ColProps } from 'element-plus';
import { schemas } from './querySchemas';
import { schemas } from './loginLog/querySchemas';
import { useForm } from '@/components/Form/index';
import { TableAction } from '@/components/Table';
import { getLoginLogList,loginLogDelete,loginLogBatchDelete } from '@/api/system/loginLog';
import { columns } from './columns';
import { columns } from './loginLog/columns';
import {message,confirm} from "@/utils/auth";
const editDialog = defineAsyncComponent(() =>
import('./edit.vue')
import('./loginLog/edit.vue')
)
const positionId =ref(0)
const editVisible=ref(false)

View File

@ -42,14 +42,14 @@
<script lang="ts" setup>
import { reactive, ref, h,nextTick,defineAsyncComponent } from 'vue';
import { ColProps } from 'element-plus';
import { schemas } from './querySchemas';
import { schemas } from './operLog/querySchemas';
import { useForm } from '@/components/Form/index';
import { TableAction } from '@/components/Table';
import { getOperLogList,operLogDelete,operLogBatchDelete } from '@/api/system/operLog';
import { columns } from './columns';
import { columns } from './operLog/columns';
import {message,confirm} from "@/utils/auth";
const editDialog = defineAsyncComponent(() =>
import('./edit.vue')
import('./operLog/edit.vue')
)
const positionId =ref(0)
const editVisible=ref(false)