style(系统设置): 系统-资源池-调整表格里icon展示
This commit is contained in:
parent
e1d6ec26f8
commit
9051dec329
|
@ -326,7 +326,7 @@
|
|||
<template #label>
|
||||
<div class="flex items-center gap-[4px]">
|
||||
<div>{{ t('system.resourcePool.testResourceDTO.concurrentNumber') }}</div>
|
||||
<a-tooltip :content="t('system.resourcePool.concurrentNumberTip')" position="tl" mini>
|
||||
<a-tooltip v-if="!isXpack" :content="t('system.resourcePool.concurrentNumberTip')" position="tl" mini>
|
||||
<icon-question-circle class="ml-[4px] text-[var(--color-text-4)] hover:text-[rgb(var(--primary-6))]" />
|
||||
</a-tooltip>
|
||||
</div>
|
||||
|
@ -346,7 +346,12 @@
|
|||
<template #label>
|
||||
<div class="flex items-center gap-[4px]">
|
||||
<div>{{ t('system.resourcePool.testResourceDTO.podThreads') }}</div>
|
||||
<a-tooltip :content="t('system.resourcePool.testResourceDTO.podThreadsTip')" position="tl" mini>
|
||||
<a-tooltip
|
||||
v-if="!isXpack"
|
||||
:content="t('system.resourcePool.testResourceDTO.podThreadsTip')"
|
||||
position="tl"
|
||||
mini
|
||||
>
|
||||
<icon-question-circle class="ml-[4px] text-[var(--color-text-4)] hover:text-[rgb(var(--primary-6))]" />
|
||||
</a-tooltip>
|
||||
</div>
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
<template #name="{ record }">
|
||||
<div class="flex items-center gap-[8px]">
|
||||
<a-tooltip
|
||||
v-if="record.type !== 'Kubernetes'"
|
||||
v-if="record.type === 'Node' && record.enable"
|
||||
:content="t('system.resourcePool.viewCapacityInfo')"
|
||||
:mouse-enter-delay="300"
|
||||
position="bottom"
|
||||
|
@ -179,13 +179,6 @@
|
|||
showTooltip: true,
|
||||
width: 150,
|
||||
},
|
||||
{
|
||||
title: 'system.resourcePool.remainingConcurrency',
|
||||
slotName: 'lastConcurrentNumber',
|
||||
dataIndex: 'lastConcurrentNumber',
|
||||
showTooltip: true,
|
||||
width: 150,
|
||||
},
|
||||
{
|
||||
title: 'system.resourcePool.orgRange',
|
||||
slotName: 'orgNames',
|
||||
|
|
Loading…
Reference in New Issue