feat: 修复自定义列表展示字段问题

pull/1/head
刘释隆 1 year ago
parent fa5884f68e
commit 30a278f186

@ -340,7 +340,7 @@ function removeHandler(id: string, type: "fix" | "unfix") {
<div>
<n-input placeholder="搜索关键字">
<template #suffix>
<SvgIcon size="14px" name="magnifying-1" />
<SvgIcon size="14px" name="magnifying-1" color="#999999" />
</template>
</n-input>
<div class="draggable-ul left-wrap">
@ -483,6 +483,7 @@ function removeHandler(id: string, type: "fix" | "unfix") {
position: relative;
color: #333333;
font-size: 14px;
background: #F8F8F8;
&:before {
background-color: #1980ff;
@ -562,6 +563,7 @@ function removeHandler(id: string, type: "fix" | "unfix") {
::v-deep(.n-card > .n-card-header .n-card-header__main) {
font-weight: lighter !important;
font-size: 14px;
color: #666666;
}
::v-deep(.n-scrollbar) {
border-top: none !important;

@ -27,7 +27,7 @@ const svgName = computed(() => {
<template>
<div class="list-item" :class="{ 'list-item-selected': selected }">
<div v-for="(item, index) in showFieldList" :key="index">
<div v-if="item.id === 'fromsourceid'" class="list-item-header">
<div v-if="item.id === 'fromtaskname'" class="list-item-header">
<div class="id-wrap">
<SvgIcon :name="svgName" size="28" />
<span

Loading…
Cancel
Save