Browse Source

chore: 同步完整版代码

i18n
xiaoxian521 1 year ago
parent
commit
e0f28acdc4
  1. 16
      src/layout/components/notice/index.vue
  2. 1
      src/layout/components/search/components/SearchModal.vue

16
src/layout/components/notice/index.vue

@ -22,7 +22,18 @@ notices.value.map(v => (noticesNum.value += v.list.length));
</span>
<template #dropdown>
<el-dropdown-menu>
<el-tabs :stretch="true" v-model="activeKey" class="dropdown-tabs">
<el-tabs
:stretch="true"
v-model="activeKey"
class="dropdown-tabs"
:style="{ width: notices.length === 0 ? '200px' : '330px' }"
>
<el-empty
v-if="notices.length === 0"
description="暂无消息"
:image-size="60"
/>
<span v-else>
<template v-for="item in notices" :key="item.key">
<el-tab-pane
:label="`${item.name}(${item.list.length})`"
@ -35,6 +46,7 @@ notices.value.map(v => (noticesNum.value += v.list.length));
</el-scrollbar>
</el-tab-pane>
</template>
</span>
</el-tabs>
</el-dropdown-menu>
</template>
@ -57,8 +69,6 @@ notices.value.map(v => (noticesNum.value += v.list.length));
}
.dropdown-tabs {
width: 330px;
.noticeList-container {
padding: 15px 24px 0;
}

1
src/layout/components/search/components/SearchModal.vue

@ -145,6 +145,7 @@ onKeyStroke("ArrowDown", handleDown);
:style="{
borderRadius: '6px'
}"
append-to-body
@opened="inputRef.focus()"
@closed="inputRef.blur()"
>

Loading…
Cancel
Save