|
|
@@ -31,8 +31,7 @@
|
|
|
<div v-for="(item, index) in brandList" :key="item.id" class="brand-item">
|
|
|
<el-icon class="close-icon" @click.stop="handleRemoveBrand(index)"><CircleClose /></el-icon>
|
|
|
<div class="sort-icon" @click.stop="handleSort(index)">
|
|
|
- <span class="arrow-down">↓</span>
|
|
|
- <span class="arrow-up">↑</span>
|
|
|
+ <img class="arrow-up" src="/img/up_down.svg" alt="" />
|
|
|
</div>
|
|
|
<div class="brand-logo">
|
|
|
<el-image :src="item.logoUrl" fit="contain" class="logo-image">
|
|
|
@@ -668,15 +667,14 @@ onMounted(() => {
|
|
|
|
|
|
.sort-icon {
|
|
|
position: absolute;
|
|
|
- top: 50%;
|
|
|
- right: 6px;
|
|
|
+ top: 38%;
|
|
|
+ right: 9px;
|
|
|
transform: translateY(-50%);
|
|
|
cursor: pointer;
|
|
|
display: flex;
|
|
|
gap: 0;
|
|
|
|
|
|
- .arrow-down,
|
|
|
- .arrow-up {
|
|
|
+ .arrow-down {
|
|
|
font-size: 16px;
|
|
|
font-weight: bold;
|
|
|
color: #999;
|
|
|
@@ -684,6 +682,10 @@ onMounted(() => {
|
|
|
color: #409eff;
|
|
|
}
|
|
|
}
|
|
|
+ .arrow-up {
|
|
|
+ width: 16px;
|
|
|
+ height: 16px;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
.brand-logo {
|