style: 移除ID列显示

This commit is contained in:
TsMask
2025-10-13 19:26:11 +08:00
parent f7a9258473
commit 14590545f5
11 changed files with 93 additions and 90 deletions

View File

@@ -49,15 +49,15 @@ function fnCacheKeyInfo(cacheKey: string) {
/**键名列表表格字段列 */
let cacheKeyTableColumns: ColumnsType = [
{
title: t('common.rowId'),
dataIndex: 'num',
width: '50px',
align: 'center',
customRender(opt) {
return opt.index + 1;
},
},
// {
// title: t('common.rowId'),
// dataIndex: 'num',
// width: '50px',
// align: 'center',
// customRender(opt) {
// return opt.index + 1;
// },
// },
{
title: t('views.monitor.cache.cacheKey'),
dataIndex: 'cacheKey',
@@ -152,15 +152,15 @@ let cacheNameTable = reactive({
/**缓存列表表格字段列 */
let cacheNameTableColumns: ColumnsType = [
{
title: t('common.rowId'),
dataIndex: 'num',
width: '50px',
align: 'center',
customRender(opt) {
return opt.index + 1;
},
},
// {
// title: t('common.rowId'),
// dataIndex: 'num',
// width: '50px',
// align: 'center',
// customRender(opt) {
// return opt.index + 1;
// },
// },
{
title: t('views.monitor.cache.cacheName'),
dataIndex: 'cacheName',

View File

@@ -98,11 +98,11 @@ let tableState: TabeStateType = reactive({
/**表格字段列 */
let tableColumns: ColumnsType = [
{
title: t('common.rowId'),
dataIndex: 'jobId',
align: 'center',
},
// {
// title: t('common.rowId'),
// dataIndex: 'jobId',
// align: 'center',
// },
{
title: t('views.monitor.job.jobName'),
dataIndex: 'jobName',
@@ -679,14 +679,14 @@ onMounted(() => {
<template #icon><ExportOutlined /></template>
{{ t('common.export') }}
</a-button>
<a-button
<!-- <a-button
type="default"
@click.prevent="fnJobLogView()"
v-perms:has="['monitor:job:query']"
>
<template #icon><ContainerOutlined /></template>
{{ t('views.monitor.job.jobLog') }}
</a-button>
</a-button> -->
<a-button
type="dashed"
danger
@@ -754,11 +754,13 @@ onMounted(() => {
:size="tableState.size"
:pagination="tablePagination"
:scroll="{ x: tableColumns.length * 120 }"
:row-selection="{
:row-selection="hasPermissions(['monitor:job:remove'])
? {
type: 'checkbox',
selectedRowKeys: tableState.selectedRowKeys,
onChange: fnTableSelectedRowKeys,
}"
}
: undefined""
>
<template #bodyCell="{ column, record }">
<template v-if="column.key === 'jobGroup'">

View File

@@ -116,12 +116,12 @@ let tableState: TabeStateType = reactive({
/**表格字段列 */
let tableColumns: ColumnsType = [
{
title: t('common.rowId'),
dataIndex: 'jobLogId',
align: 'center',
width: 100,
},
// {
// title: t('common.rowId'),
// dataIndex: 'jobLogId',
// align: 'center',
// width: 100,
// },
{
title: t('views.monitor.jobLog.jobName'),
dataIndex: 'jobName',

View File

@@ -41,16 +41,16 @@ let tableState: TabeStateType = reactive({
/**表格字段列 */
let tableColumns: ColumnsType = [
{
title: t('common.rowId'),
dataIndex: 'num',
width: '50px',
align: 'left',
customRender(opt) {
const idxNum = (tablePagination.current - 1) * tablePagination.pageSize;
return idxNum + opt.index + 1;
},
},
// {
// title: t('common.rowId'),
// dataIndex: 'num',
// width: '50px',
// align: 'left',
// customRender(opt) {
// const idxNum = (tablePagination.current - 1) * tablePagination.pageSize;
// return idxNum + opt.index + 1;
// },
// },
{
title: t('views.monitor.online.mettingId'),
dataIndex: 'tokenId',

View File

@@ -80,12 +80,12 @@ let tableState: TabeStateType = reactive({
/**表格字段列 */
let tableColumns: ColumnsType = [
{
title: t('common.rowId'),
dataIndex: 'hostId',
align: 'center',
width: 50,
},
// {
// title: t('common.rowId'),
// dataIndex: 'hostId',
// align: 'center',
// width: 50,
// },
{
title: t('views.ne.neHost.hostType'),
dataIndex: 'hostType',

View File

@@ -78,12 +78,12 @@ let tableState: TabeStateType = reactive({
/**表格字段列 */
let tableColumns: ColumnsType = [
{
title: t('common.rowId'),
dataIndex: 'cmdId',
align: 'center',
width: 50,
},
// {
// title: t('common.rowId'),
// dataIndex: 'cmdId',
// align: 'center',
// width: 50,
// },
{
title: t('views.ne.neHostCmd.cmdType'),
dataIndex: 'cmdType',

View File

@@ -18,12 +18,12 @@ const EditModal = defineAsyncComponent(
/**表格字段列 */
let tableColumns: ColumnsType = [
{
title: t('common.rowId'),
dataIndex: 'id',
align: 'left',
width: 50,
},
// {
// title: t('common.rowId'),
// dataIndex: 'id',
// align: 'left',
// width: 50,
// },
{
title: t('views.ne.common.neType'),
dataIndex: 'neType',

View File

@@ -82,12 +82,12 @@ let tableState: TabeStateType = reactive({
/**表格字段列 */
let tableColumns = ref<TableColumnsType>([
{
title: t('common.rowId'),
dataIndex: 'id',
align: 'left',
width: 100,
},
// {
// title: t('common.rowId'),
// dataIndex: 'id',
// align: 'left',
// width: 100,
// },
{
title: t('views.ne.common.neType'),
dataIndex: 'neType',

View File

@@ -20,6 +20,7 @@ import { parseDateToStr } from '@/utils/date-utils';
import useDictStore from '@/store/modules/dict';
import { RESULT_CODE_SUCCESS } from '@/constants/result-constants';
import useI18n from '@/hooks/useI18n';
import { hasPermissions } from '@/plugins/auth-user';
const { t } = useI18n();
const { getDict } = useDictStore();
@@ -94,12 +95,12 @@ let tableState: TabeStateType = reactive({
/**表格字段列 */
let tableColumns = ref<ColumnsType>([
{
title: t('common.rowId'),
dataIndex: 'configId',
align: 'left',
width: 100,
},
// {
// title: t('common.rowId'),
// dataIndex: 'configId',
// align: 'left',
// width: 100,
// },
{
title: t('views.system.config.configName'),
dataIndex: 'configName',
@@ -656,11 +657,11 @@ onMounted(() => {
:size="tableState.size"
:pagination="tablePagination"
:scroll="{ x: tableColumns.length * 120 }"
:row-selection="{
:row-selection="hasPermissions(['system:config:remove']) ? {
type: 'checkbox',
selectedRowKeys: tableState.selectedRowKeys,
onChange: fnTableSelectedRowKeys,
}"
}: undefined"
>
<template #bodyCell="{ column, record }">
<template v-if="column.key === 'configType'">

View File

@@ -83,12 +83,12 @@ let tableState: TabeStateType = reactive({
/**表格字段列 */
let tableColumns = ref<ColumnsType>([
{
title: t('common.rowId'),
dataIndex: 'id',
align: 'left',
width: 100,
},
// {
// title: t('common.rowId'),
// dataIndex: 'id',
// align: 'left',
// width: 100,
// },
{
title: t('views.system.loginSource.uid'),
dataIndex: 'uid',

View File

@@ -65,12 +65,12 @@ let tableState: TabeStateType = reactive({
/**表格字段列 */
let tableColumns: ColumnsType = [
{
title: t('common.rowId'),
dataIndex: 'hostId',
align: 'center',
width: 50,
},
// {
// title: t('common.rowId'),
// dataIndex: 'hostId',
// align: 'center',
// width: 50,
// },
{
title: t('views.ne.neHost.hostType'),
dataIndex: 'hostType',