fix: 2595 【AI一键查重--高级筛选】下拉显示与RP设计图不符,每个条件前缺少符号

pull/1/head
lizijiee 1 year ago
parent 3e25a756e2
commit 6c0cc9e6f0

@ -237,7 +237,7 @@ const moveEnd = () => {
<div class="wrapper-left-popover">
<n-input
:style="{ '--n-border': '0px' }"
placeholder="请输入关键"
placeholder="请输入关键"
@input="inputHandler"
>
<template #prefix>
@ -260,17 +260,20 @@ const moveEnd = () => {
style="display: flex; align-items: center"
@click="selectHandler(item)"
>
<SvgIcon name="drag" size="18" color="#333333" style="margin-right:3px"/>
<SvgIcon
v-if="item.favorite && !item.isDefaultFilter"
name="favorite-fill"
color="#fd9b0a"
size="18"
style="margin-right:3px"
@click="unFavoriteHandler($event, item)"
/>
<SvgIcon
v-else-if="!item.favorite && !item.isDefaultFilter"
name="favorite-unfill"
size="18"
style="margin-right:3px"
@click="favoriteHandler($event, item)"
/>
<div v-html="item.name" />
@ -291,17 +294,20 @@ const moveEnd = () => {
class="cursor-move draggable-li fix"
:draggable="true"
>
<SvgIcon name="drag" size="18" style="margin-right:3px"/>
<SvgIcon
v-if="item.favorite && !item.isDefaultFilter"
name="favorite-fill"
color="#fd9b0a"
size="18"
style="cursor: pointer!important;margin-right:3px"
@click="unFavoriteHandler($event, item)"
/>
<SvgIcon
v-else-if="!item.favorite && !item.isDefaultFilter"
name="favorite-unfill"
size="18"
style="cursor: pointer!important;margin-right:3px"
@click="favoriteHandler($event, item)"
/>
<div v-html="item.name" />
@ -369,7 +375,7 @@ const moveEnd = () => {
li {
font-size: 14px;
line-height: 22px;
padding: 5px 12px;
padding: 8px 12px;
&:hover {
background-color: #f3f8ff;

Loading…
Cancel
Save