perf: 账号名称hover样式优化
This commit is contained in:
@ -70,12 +70,12 @@ export const TABLE_COLUMNS = [
|
|||||||
align: 'right',
|
align: 'right',
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
// {
|
||||||
title: '封面点击率',
|
// title: '封面点击率',
|
||||||
dataIndex: 'cover_click_rate',
|
// dataIndex: 'cover_click_rate',
|
||||||
width: 180,
|
// width: 180,
|
||||||
tooltip: '内容在被曝光后,用户点击进入的比例,反映封面与标题吸引力。',
|
// tooltip: '内容在被曝光后,用户点击进入的比例,反映封面与标题吸引力。',
|
||||||
align: 'right',
|
// align: 'right',
|
||||||
suffix: '%',
|
// suffix: '%',
|
||||||
},
|
// },
|
||||||
];
|
];
|
||||||
|
|||||||
@ -19,7 +19,9 @@
|
|||||||
</template>
|
</template>
|
||||||
<a-checkbox :model-value="isSelected(item)" :value="item.id" @change="toggleSelect(item)"></a-checkbox>
|
<a-checkbox :model-value="isSelected(item)" :value="item.id" @change="toggleSelect(item)"></a-checkbox>
|
||||||
<div class="ml-8px flex-1">
|
<div class="ml-8px flex-1">
|
||||||
<p class="name cursor-pointer" @click="goDetail(item)">{{ item.name || '-' }}</p>
|
<a-tooltip content="点击查看账号详情">
|
||||||
|
<p class="name cursor-pointer hover:!color-#6d4cfe" @click="goDetail(item)">{{ item.name || '-' }}</p>
|
||||||
|
</a-tooltip>
|
||||||
<div class="field-row">
|
<div class="field-row">
|
||||||
<span class="label">状态</span>
|
<span class="label">状态</span>
|
||||||
<StatusBox :status="item.status" />
|
<StatusBox :status="item.status" />
|
||||||
|
|||||||
@ -25,6 +25,7 @@
|
|||||||
font-style: normal;
|
font-style: normal;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
margin-bottom: 11px;
|
margin-bottom: 11px;
|
||||||
|
width: fit-content;
|
||||||
// line-height: 22px; /* 157.143% */
|
// line-height: 22px; /* 157.143% */
|
||||||
}
|
}
|
||||||
.label {
|
.label {
|
||||||
|
|||||||
Reference in New Issue
Block a user