This commit is contained in:
parent
f3b289d16c
commit
6ff32be2bb
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Binary file not shown.
|
|
@ -359,7 +359,14 @@
|
||||||
@dragover.prevent
|
@dragover.prevent
|
||||||
@drop="onHeaderDrop(index)"
|
@drop="onHeaderDrop(index)"
|
||||||
>
|
>
|
||||||
<span v-if="item.isLatest" class="new-tag">
|
<span
|
||||||
|
v-if="
|
||||||
|
item.isLatest &&
|
||||||
|
displayCompareList &&
|
||||||
|
displayCompareList.length > 1
|
||||||
|
"
|
||||||
|
class="new-tag"
|
||||||
|
>
|
||||||
<img
|
<img
|
||||||
src="/images/cars/new.png"
|
src="/images/cars/new.png"
|
||||||
alt="最新品号"
|
alt="最新品号"
|
||||||
|
|
@ -1517,9 +1524,7 @@ const fetchSearchHints = async (keyword) => {
|
||||||
conditionsToProcess.push(editedCondition);
|
conditionsToProcess.push(editedCondition);
|
||||||
|
|
||||||
// 重新构建 inputWord,将被编辑的条件移到最后一个位置
|
// 重新构建 inputWord,将被编辑的条件移到最后一个位置
|
||||||
const reorderedParts = parts
|
const reorderedParts = parts.map((p) => p.trim()).filter((p) => p);
|
||||||
.map((p) => p.trim())
|
|
||||||
.filter((p) => p);
|
|
||||||
if (activeIndex < reorderedParts.length) {
|
if (activeIndex < reorderedParts.length) {
|
||||||
const [editedPart] = reorderedParts.splice(activeIndex, 1);
|
const [editedPart] = reorderedParts.splice(activeIndex, 1);
|
||||||
reorderedParts.push(editedPart);
|
reorderedParts.push(editedPart);
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue