2022-07-18 19:06:37 +08:00
|
|
|
|
<template>
|
|
|
|
|
<ContentWrap>
|
2022-11-13 15:38:31 +08:00
|
|
|
|
<!-- 列表 -->
|
|
|
|
|
<vxe-grid ref="xGrid" v-bind="gridOptions" class="xtable-scrollbar">
|
|
|
|
|
<!-- 操作:新增 -->
|
|
|
|
|
<template #toolbar_buttons>
|
|
|
|
|
<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>
|
2022-11-13 15:38:31 +08:00
|
|
|
|
</vxe-grid>
|
2022-07-18 19:06:37 +08:00
|
|
|
|
</ContentWrap>
|
2022-11-13 15:38:31 +08:00
|
|
|
|
<!-- 弹窗 -->
|
|
|
|
|
<XModal id="postModel" v-model="dialogVisible" :title="dialogTitle">
|
|
|
|
|
<template #default>
|
|
|
|
|
<!-- 对话框(详情) -->
|
|
|
|
|
<Descriptions :schema="allSchemas.detailSchema" :data="detailRef">
|
|
|
|
|
<template #resultCode="{ row }">
|
|
|
|
|
<span>{{ row.resultCode === 0 ? '成功' : '失败' }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
<template #duration="{ row }">
|
|
|
|
|
<span>{{ row.duration + 'ms' }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</Descriptions>
|
|
|
|
|
</template>
|
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-13 15:38:31 +08:00
|
|
|
|
</XModal>
|
2022-07-18 19:06:37 +08:00
|
|
|
|
</template>
|
2022-11-13 15:38:31 +08:00
|
|
|
|
<script setup lang="ts">
|
|
|
|
|
// 全局相关的 import
|
|
|
|
|
import { ref } from 'vue'
|
|
|
|
|
import { useI18n } from '@/hooks/web/useI18n'
|
|
|
|
|
import { useVxeGrid } from '@/hooks/web/useVxeGrid'
|
|
|
|
|
import { VxeGridInstance } from 'vxe-table'
|
|
|
|
|
// 业务相关的 import
|
|
|
|
|
import * as OperateLogApi from '@/api/system/operatelog'
|
|
|
|
|
import { allSchemas } from './operatelog.data'
|
|
|
|
|
import download from '@/utils/download'
|
|
|
|
|
|
|
|
|
|
const { t } = useI18n() // 国际化
|
|
|
|
|
// 列表相关的变量
|
|
|
|
|
const xGrid = ref<VxeGridInstance>() // 列表 Grid Ref
|
|
|
|
|
const { gridOptions } = useVxeGrid<OperateLogApi.OperateLogVO>({
|
|
|
|
|
allSchemas: allSchemas,
|
|
|
|
|
getListApi: OperateLogApi.getOperateLogPageApi
|
|
|
|
|
})
|
|
|
|
|
// 弹窗相关的变量
|
|
|
|
|
const dialogVisible = ref(false) // 是否显示弹出层
|
|
|
|
|
const dialogTitle = ref('edit') // 弹出层标题
|
|
|
|
|
const actionLoading = ref(false) // 按钮 Loading
|
|
|
|
|
const detailRef = ref() // 详情 Ref
|
|
|
|
|
// 详情
|
|
|
|
|
const handleDetail = (row: OperateLogApi.OperateLogVO) => {
|
|
|
|
|
// 设置数据
|
|
|
|
|
detailRef.value = row
|
|
|
|
|
dialogVisible.value = true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 导出操作
|
|
|
|
|
const handleExport = async () => {
|
|
|
|
|
const queryParams = Object.assign(
|
|
|
|
|
{},
|
|
|
|
|
JSON.parse(JSON.stringify(xGrid.value?.getRefMaps().refForm.value.data))
|
|
|
|
|
)
|
|
|
|
|
const res = await OperateLogApi.exportOperateLogApi(queryParams)
|
|
|
|
|
download.excel(res, '岗位列表.xls')
|
|
|
|
|
}
|
|
|
|
|
</script>
|