77 lines
2.4 KiB
Vue
Raw Normal View History

2022-07-18 19:06:37 +08:00
<template>
<ContentWrap>
2022-11-13 15:38:31 +08:00
<!-- 列表 -->
2023-01-03 11:21:27 +08:00
<XTable @register="registerTable">
2022-11-13 15:38:31 +08:00
<template #toolbar_buttons>
2022-11-16 09:52:23 +08:00
<!-- 操作新增 -->
2022-11-13 15:38:31 +08:00
<XButton
type="warning"
preIcon="ep:download"
:title="t('action.export')"
v-hasPermi="['system:operate-log:export']"
@click="handleExport()"
/>
2022-07-18 19:06:37 +08:00
</template>
<template #duration="{ row }">
<span>{{ row.duration + 'ms' }}</span>
</template>
<template #resultCode="{ row }">
<span>{{ row.resultCode === 0 ? '成功' : '失败' }}</span>
</template>
2022-11-13 15:38:31 +08:00
<template #actionbtns_default="{ row }">
<!-- 操作详情 -->
<XTextButton preIcon="ep:view" :title="t('action.detail')" @click="handleDetail(row)" />
2022-07-18 19:06:37 +08:00
</template>
2023-01-03 11:21:27 +08:00
</XTable>
2022-07-18 19:06:37 +08:00
</ContentWrap>
2022-11-13 15:38:31 +08:00
<!-- 弹窗 -->
2022-11-16 12:36:33 +08:00
<XModal id="postModel" v-model="dialogVisible" :title="t('action.detail')">
2022-11-14 09:15:11 +08:00
<!-- 对话框(详情) -->
2022-12-06 23:46:13 +08:00
<Descriptions :schema="allSchemas.detailSchema" :data="detailData">
2022-11-14 09:15:11 +08:00
<template #resultCode="{ row }">
<span>{{ row.resultCode === 0 ? '成功' : '失败' }}</span>
</template>
<template #duration="{ row }">
<span>{{ row.duration + 'ms' }}</span>
</template>
</Descriptions>
2022-07-18 19:06:37 +08:00
<template #footer>
2022-11-13 15:38:31 +08:00
<!-- 按钮关闭 -->
<XButton :loading="actionLoading" :title="t('dialog.close')" @click="dialogVisible = false" />
2022-07-18 19:06:37 +08:00
</template>
2022-11-15 12:25:19 +08:00
</XModal>
2022-07-18 19:06:37 +08:00
</template>
2022-11-23 22:26:25 +08:00
<script setup lang="ts" name="OperateLog">
2022-11-13 15:38:31 +08:00
// 全局相关的 import
import { ref } from 'vue'
import { useI18n } from '@/hooks/web/useI18n'
2023-01-03 11:21:27 +08:00
import { useXTable } from '@/hooks/web/useXTable'
2022-11-13 15:38:31 +08:00
// 业务相关的 import
import * as OperateLogApi from '@/api/system/operatelog'
import { allSchemas } from './operatelog.data'
const { t } = useI18n() // 国际化
// 列表相关的变量
2023-01-03 11:21:27 +08:00
const [registerTable, { exportList }] = useXTable({
2022-11-13 15:38:31 +08:00
allSchemas: allSchemas,
2022-11-15 14:51:39 +08:00
getListApi: OperateLogApi.getOperateLogPageApi,
exportListApi: OperateLogApi.exportOperateLogApi
2022-11-13 15:38:31 +08:00
})
2022-11-13 15:38:31 +08:00
// 弹窗相关的变量
const dialogVisible = ref(false) // 是否显示弹出层
const actionLoading = ref(false) // 按钮 Loading
2022-12-06 23:46:13 +08:00
const detailData = ref() // 详情 Ref
2022-11-13 15:38:31 +08:00
// 详情
const handleDetail = (row: OperateLogApi.OperateLogVO) => {
// 设置数据
2022-12-06 23:46:13 +08:00
detailData.value = row
2022-11-13 15:38:31 +08:00
dialogVisible.value = true
}
// 导出操作
const handleExport = async () => {
2023-01-03 11:21:27 +08:00
await exportList('操作日志.xls')
2022-11-13 15:38:31 +08:00
}
</script>