feat: 增强组件功能与样式优化

- 在多个组件中添加了新的属性和方法以提升功能性,如在卡片组件中引入 _ActiveTab 属性以管理活动标签。
- 优化了商品详情和商户页面的收藏逻辑,确保在未登录状态下引导用户登录。
- 更新了轮播组件的路由解析逻辑,增强了用户体验。
- 改进了投诉列表和收藏列表的样式,提升了响应式布局和可读性。
- 在全局配置中添加了对开发环境的错误处理,提升了调试体验。
This commit is contained in:
田香琪
2026-06-25 16:52:46 +08:00
parent 1b2e980fb6
commit ec948b5496
86 changed files with 1741 additions and 1050 deletions

View File

@@ -31,9 +31,8 @@
{{ showZoneText(zone) }}
</div>
</div>
<div class="flex">
<div class="hotzone-box-item-actions">
<div class="hotzone-btn" @click="editZone(index)">修改</div>
&nbsp;&nbsp;&nbsp;&nbsp;
<div class="hotzone-btn" @click="delZone(index)">删除</div>
</div>
</div>
@@ -239,13 +238,16 @@ export default {
}
> div:nth-of-type(2) {
width: 50%;
min-width: 0;
background: #f7f7f7;
overflow: hidden;
}
}
.hotzone-add-box-body {
height: 90%;
overflow-y: auto;
overflow-x: hidden;
}
.hotzone-box-item-main {
@@ -256,11 +258,18 @@ export default {
.hotzone-box-item {
align-items: center;
display: flex;
gap: 8px;
border-bottom: 1px solid #ededed;
font-size: 12px;
justify-content: space-between;
padding: 5px 10px 0;
width: 100%;
box-sizing: border-box;
min-width: 0;
> div:nth-child(2) {
flex: 1;
min-width: 0;
}
}
.hotzone-add-box-footer {
@@ -280,8 +289,18 @@ export default {
cursor: pointer;
}
.hotzone-box-item-actions {
display: flex;
flex-shrink: 0;
align-items: center;
gap: 8px;
white-space: nowrap;
}
.hotzone-box-item-text {
width: 200px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
cursor: pointer;
}