gtsoft-snail-job-admin/src/views/retry/log/index.vue

200 lines
5.3 KiB
Vue
Raw Normal View History

<script setup lang="tsx">
import { NButton, NPopconfirm, NTag } from 'naive-ui';
import { fetchBatchDeleteRetryLog, fetchDeleteRetryLog, fetchRetryLogPageList } from '@/service/api';
import { $t } from '@/locales';
import { useAppStore } from '@/store/modules/app';
import { useTable, useTableOperate } from '@/hooks/common/table';
import { retryTaskStatusTypeRecord, retryTaskTypeRecord } from '@/constants/business';
import RetryLogSearch from './modules/retry-log-search.vue';
const appStore = useAppStore();
const { columns, columnChecks, data, getData, loading, mobilePagination, searchParams, resetSearchParams } = useTable({
apiFn: fetchRetryLogPageList,
apiParams: {
page: 1,
size: 10,
// if you want to use the searchParams in Form, you need to define the following properties, and the value is null
// the value can not be undefined, otherwise the property in Form will not be reactive
uniqueId: null,
groupName: null,
sceneName: null,
idempotentId: null,
bizNo: null
},
columns: () => [
{
type: 'selection',
align: 'center',
2024-04-26 17:34:24 +08:00
width: 48,
disabled: row => row.retryStatus !== 1
},
{
key: 'index',
title: $t('common.index'),
align: 'center',
width: 64
},
{
key: 'uniqueId',
title: $t('page.retryLog.UniqueId'),
align: 'left',
minWidth: 120
},
{
key: 'groupName',
title: $t('page.retryLog.groupName'),
align: 'left',
minWidth: 120
},
{
key: 'sceneName',
title: $t('page.retryLog.sceneName'),
align: 'left',
minWidth: 120
},
{
key: 'retryStatus',
title: $t('page.retryLog.retryStatus'),
align: 'left',
minWidth: 120,
render: row => {
if (row.retryStatus === null) {
return null;
}
const tagMap: Record<Api.RetryTask.RetryStatusType, NaiveUI.ThemeColor> = {
0: 'info',
1: 'success',
2: 'error',
3: 'warning'
};
const label = $t(retryTaskStatusTypeRecord[row.retryStatus!]);
return <NTag type={tagMap[row.retryStatus!]}>{label}</NTag>;
}
},
{
key: 'taskType',
title: $t('page.retryLog.taskType'),
align: 'left',
minWidth: 120,
render: row => {
if (row.taskType === null) {
return null;
}
const tagMap: Record<Api.RetryTask.TaskType, NaiveUI.ThemeColor> = {
1: 'warning',
2: 'error'
};
const label = $t(retryTaskTypeRecord[row.taskType!]);
return <NTag type={tagMap[row.taskType!]}>{label}</NTag>;
}
},
{
key: 'idempotentId',
title: $t('page.retryLog.idempotentId'),
align: 'left',
minWidth: 120
},
{
key: 'bizNo',
title: $t('page.retryLog.bizNo'),
align: 'left',
minWidth: 120
},
{
key: 'createDt',
title: $t('page.retryLog.createDt'),
align: 'left',
minWidth: 120
},
{
key: 'operate',
title: $t('common.operate'),
align: 'center',
width: 130,
render: row => (
<div class="flex-center gap-8px">
<NButton type="primary" ghost size="small" onClick={() => edit(row.id)}>
{$t('common.detail')}
</NButton>
{row.retryStatus === 1 ? (
<NPopconfirm onPositiveClick={() => handleDelete(row.id)}>
{{
default: () => $t('common.confirmDelete'),
trigger: () => (
<NButton type="error" ghost size="small">
{$t('common.delete')}
</NButton>
)
}}
</NPopconfirm>
) : (
''
)}
</div>
)
}
]
});
const { handleAdd, handleEdit, checkedRowKeys } = useTableOperate(data, getData);
async function handleBatchDelete() {
const { error } = await fetchBatchDeleteRetryLog(checkedRowKeys.value as any[]);
if (!error) {
window.$message?.success($t('common.deleteSuccess'));
getData();
}
}
async function handleDelete(id: any) {
await fetchDeleteRetryLog(id);
window.$message?.success($t('common.deleteSuccess'));
getData();
}
function edit(id: any) {
handleEdit(id);
}
</script>
<template>
<div class="min-h-500px flex-col-stretch gap-16px overflow-hidden lt-sm:overflow-auto">
<RetryLogSearch v-model:model="searchParams" @reset="resetSearchParams" @search="getData" />
<NCard
:title="$t('page.retryLog.title')"
:bordered="false"
size="small"
class="sm:flex-1-hidden card-wrapper"
header-class="view-card-header"
>
<template #header-extra>
<TableHeaderOperation
v-model:columns="columnChecks"
:disabled-delete="checkedRowKeys.length === 0"
:loading="loading"
@add="handleAdd"
@delete="handleBatchDelete"
@refresh="getData"
/>
</template>
<NDataTable
v-model:checked-row-keys="checkedRowKeys"
:columns="columns"
:data="data"
:flex-height="!appStore.isMobile"
:scroll-x="962"
:loading="loading"
remote
:row-key="row => row.id"
:pagination="mobilePagination"
class="sm:h-full"
/>
</NCard>
</div>
</template>
<style scoped></style>