1.底部导航优化

v1.0.0
sws 2024-10-12 17:15:21 +08:00
parent b21e86d523
commit bb8beb5f8b
3 changed files with 7 additions and 4 deletions

View File

@ -86,8 +86,8 @@ const footer_nav_event = () => {
.footer-nav-content {
min-height: 7rem;
.img {
width: 2rem;
height: 2rem;
width: 2.2rem;
height: 2.2rem;
.img-item {
width: 2.2rem;
height: 2.2rem;

View File

@ -28,7 +28,7 @@
<div v-else-if="['4', '5'].includes(form.theme)" class="flex-1 flex-row align-c h gap-10">
<div class="flex-row gap-2" :style="'color:' + new_style.position_color">
<icon name="location" size="12"></icon>
<span class="size-14 text-line-1">{{ form.positioning_name }}</span>
<span class="location-name size-14 text-line-1">{{ form.positioning_name }}</span>
<icon v-if="form.is_arrows_show == '1'" name="arrow-bottom" size="12"></icon>
</div>
<template v-if="['5'].includes(form.theme)">
@ -142,6 +142,9 @@ const position_class = computed(() => (form.value?.indicator_location == 'center
overflow: hidden;
.model-head-content {
height: 3.2rem;
.location-name {
max-width: 15rem;
}
}
}
.model-head-icon {

View File

@ -12,7 +12,7 @@ const message_error = (info: string) => {
messageInstance = ElMessage.error({
type: 'error',
message: info,
duration: 30000,
duration: 60000,
showClose: true,
});
};