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