Files
ipms-sjy/yudao-ui-admin-vue3/src/views/infra/apiErrorLog/index.vue

109 lines
3.6 KiB
Vue
Raw Normal View History

2022-11-21 15:27:06 +08:00
<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 #duration_default="{ row }">
<span>{{ row.duration + 'ms' }}</span>
</template>
<template #resultCode_default="{ row }">
<span>{{ row.resultCode === 0 ? '成功' : '失败(' + row.resultMsg + ')' }}</span>
</template>
<template #actionbtns_default="{ row }">
<!-- 操作详情 -->
<XTextButton
preIcon="ep:view"
:title="t('action.detail')"
v-hasPermi="['infra:api-access-log:query']"
@click="handleDetail(row)"
/>
<XTextButton
preIcon="ep:cpu"
title="已处理"
v-if="row.processStatus === InfraApiErrorLogProcessStatusEnum.INIT"
v-hasPermi="['infra:api-error-log:update-status']"
@click="handleProcessClick(row, InfraApiErrorLogProcessStatusEnum.DONE, '已处理')"
/>
<XTextButton
preIcon="ep:mute-notification"
title="已忽略"
v-if="row.processStatus === InfraApiErrorLogProcessStatusEnum.INIT"
v-hasPermi="['infra:api-error-log:update-status']"
@click="handleProcessClick(row, InfraApiErrorLogProcessStatusEnum.IGNORE, '已忽略')"
/>
</template>
</vxe-grid>
</ContentWrap>
<XModal v-model="dialogVisible" :title="dialogTitle">
<!-- 对话框(详情) -->
<Descriptions :schema="allSchemas.detailSchema" :data="detailRef" />
<!-- 操作按钮 -->
<template #footer>
2022-11-29 20:41:02 +08:00
<XButton :title="t('dialog.close')" @click="dialogVisible = false" />
2022-11-21 15:27:06 +08:00
</template>
</XModal>
</template>
2022-11-23 22:26:25 +08:00
<script setup lang="ts" name="ApiErrorLog">
2022-07-18 19:06:37 +08:00
import { ref } from 'vue'
import { useI18n } from '@/hooks/web/useI18n'
2022-11-21 15:27:06 +08:00
import { useVxeGrid } from '@/hooks/web/useVxeGrid'
import { VxeGridInstance } from 'vxe-table'
2022-07-18 19:06:37 +08:00
import { allSchemas } from './apiErrorLog.data'
import * as ApiErrorLogApi from '@/api/infra/apiErrorLog'
import { InfraApiErrorLogProcessStatusEnum } from '@/utils/constants'
2022-07-21 17:42:25 +08:00
import { useMessage } from '@/hooks/web/useMessage'
const message = useMessage()
2022-07-18 19:06:37 +08:00
const { t } = useI18n() // 国际化
// ========== 列表相关 ==========
2022-11-21 15:27:06 +08:00
const xGrid = ref<VxeGridInstance>() // 列表 Grid Ref
const { gridOptions, getList, exportList } = useVxeGrid<ApiErrorLogApi.ApiErrorLogVO>({
allSchemas: allSchemas,
2022-07-18 19:06:37 +08:00
getListApi: ApiErrorLogApi.getApiErrorLogPageApi,
exportListApi: ApiErrorLogApi.exportApiErrorLogApi
})
// ========== 详情相关 ==========
const detailRef = ref() // 详情 Ref
const dialogVisible = ref(false) // 是否显示弹出层
const dialogTitle = ref('') // 弹出层标题
// 详情操作
2022-11-21 15:27:06 +08:00
const handleDetail = (row: ApiErrorLogApi.ApiErrorLogVO) => {
2022-07-18 19:06:37 +08:00
// 设置数据
detailRef.value = row
dialogTitle.value = t('action.detail')
dialogVisible.value = true
}
2022-11-21 15:27:06 +08:00
// 导出
const handleExport = async () => {
await exportList(xGrid, '错误数据.xls')
}
2022-07-18 19:06:37 +08:00
// 异常处理操作
2022-11-21 15:27:06 +08:00
const handleProcessClick = (
row: ApiErrorLogApi.ApiErrorLogVO,
processSttatus: number,
type: string
) => {
2022-07-21 17:42:25 +08:00
message
.confirm('确认标记为' + type + '?', t('common.reminder'))
2022-07-18 19:06:37 +08:00
.then(async () => {
ApiErrorLogApi.updateApiErrorLogPageApi(row.id, processSttatus).then(() => {
2022-07-21 17:42:25 +08:00
message.success(t('common.updateSuccess'))
2022-07-18 19:06:37 +08:00
})
})
2022-11-21 15:27:06 +08:00
.finally(async () => {
// 刷新列表
await getList(xGrid)
})
2022-07-18 19:06:37 +08:00
.catch(() => {})
}
</script>