mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-07-07 23:55:07 +08:00
65 lines
2.0 KiB
Vue
65 lines
2.0 KiB
Vue
<template>
|
||
<ContentWrap>
|
||
<!-- 列表 -->
|
||
<vxe-grid ref="xGrid" v-bind="gridOptions" class="xtable-scrollbar">
|
||
<!-- 操作:导出 -->
|
||
<template #toolbar_buttons>
|
||
<XButton
|
||
type="warning"
|
||
preIcon="ep:download"
|
||
:title="t('action.export')"
|
||
@click="handleExport()"
|
||
/>
|
||
</template>
|
||
<template #actionbtns_default="{ row }">
|
||
<!-- 操作:详情 -->
|
||
<XTextButton preIcon="ep:view" :title="t('action.detail')" @click="handleDetail(row)" />
|
||
</template>
|
||
</vxe-grid>
|
||
</ContentWrap>
|
||
<!-- 弹窗 -->
|
||
<XModal id="postModel" v-model="dialogVisible" :title="dialogTitle">
|
||
<!-- 表单:详情 -->
|
||
<Descriptions :schema="allSchemas.detailSchema" :data="detailData" />
|
||
<template #footer>
|
||
<!-- 按钮:关闭 -->
|
||
<XButton :title="t('dialog.close')" @click="dialogVisible = false" />
|
||
</template>
|
||
</XModal>
|
||
</template>
|
||
<script setup lang="ts" name="Loginlog">
|
||
// 全局相关的 import
|
||
import { ref } from 'vue'
|
||
import { useI18n } from '@/hooks/web/useI18n'
|
||
import { useVxeGrid } from '@/hooks/web/useVxeGrid'
|
||
import { VxeGridInstance } from 'vxe-table'
|
||
// 业务相关的 import
|
||
import { allSchemas } from './loginLog.data'
|
||
import { getLoginLogPageApi, exportLoginLogApi, LoginLogVO } from '@/api/system/loginLog'
|
||
|
||
const { t } = useI18n() // 国际化
|
||
// 列表相关的变量
|
||
const xGrid = ref<VxeGridInstance>() // 列表 Grid Ref
|
||
const { gridOptions, exportList } = useVxeGrid<LoginLogVO>({
|
||
allSchemas: allSchemas,
|
||
getListApi: getLoginLogPageApi,
|
||
exportListApi: exportLoginLogApi
|
||
})
|
||
|
||
// 详情操作
|
||
const detailData = ref() // 详情 Ref
|
||
const dialogVisible = ref(false) // 是否显示弹出层
|
||
const dialogTitle = ref(t('action.detail')) // 弹出层标题
|
||
// 详情
|
||
const handleDetail = async (row: LoginLogVO) => {
|
||
// 设置数据
|
||
detailData.value = row
|
||
dialogVisible.value = true
|
||
}
|
||
|
||
// 导出操作
|
||
const handleExport = async () => {
|
||
await exportList(xGrid, '登录列表.xls')
|
||
}
|
||
</script>
|