feat: 添加高优先级投标折叠功能并优化链接样式

为高优先级投标表格添加折叠/展开功能,当数据为空时自动折叠
优化链接样式,统一设置无下划线及悬停颜色
This commit is contained in:
dmy
2026-01-12 15:52:58 +08:00
parent f2630ed01c
commit 3647b9a2e5
3 changed files with 61 additions and 177 deletions

View File

@@ -76,3 +76,14 @@ const handleSizeChange = (size: number) => {
emit('fetch', currentPage.value, pageSize.value, selectedSource.value || undefined)
}
</script>
<style scoped>
a {
text-decoration: none;
color: inherit;
}
a:hover {
color: #409eff;
}
</style>