mirror of
https://github.com/continew-org/continew-admin-ui.git
synced 2025-11-11 12:57:10 +08:00
feat: 重构个人消息中心,支持展示个人公告,并优化相关地址
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
</div>
|
||||
</a-col>
|
||||
<div v-if="slots.left" class="gi-page-layout__divider" :class="{ none: isCollapsed || !isDesktop }">
|
||||
<div class="gi-split-button" :class="{ none: isCollapsed || !isDesktop }" @click="toggleCollapsed">
|
||||
<div v-if="defaultCollapsed" class="gi-split-button" :class="{ none: isCollapsed || !isDesktop }" @click="toggleCollapsed">
|
||||
<icon-right v-if="isCollapsed" />
|
||||
<icon-left v-else />
|
||||
</div>
|
||||
@@ -33,6 +33,7 @@ const props = withDefaults(defineProps<Props>(), {
|
||||
margin: true,
|
||||
padding: true,
|
||||
gutter: false,
|
||||
defaultCollapsed: true,
|
||||
leftColProps: () => ({}),
|
||||
rightColProps: () => ({}),
|
||||
leftStyle: () => ({}),
|
||||
@@ -68,6 +69,7 @@ interface Props {
|
||||
margin?: boolean
|
||||
padding?: boolean
|
||||
gutter?: boolean | number
|
||||
defaultCollapsed?: boolean
|
||||
leftColProps?: ColProps
|
||||
rightColProps?: ColProps
|
||||
leftStyle?: CSSProperties
|
||||
|
||||
@@ -61,7 +61,7 @@
|
||||
v-bind="tableProps"
|
||||
:stripe="stripe"
|
||||
:size="size"
|
||||
:bordered="{ cell: isBordered, wrapper: isBordered }"
|
||||
:bordered="{ cell: isBordered }"
|
||||
:columns="visibleColumns"
|
||||
:scrollbar="true"
|
||||
:data="data"
|
||||
@@ -270,11 +270,6 @@ defineExpose({
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
// 确保垂直滚动时右侧边框显示
|
||||
:deep(.arco-table-scroll-y) {
|
||||
border-right: 1px solid var(--color-border-table);
|
||||
}
|
||||
|
||||
// 控制表格最后一行的下边框显示
|
||||
:deep(.arco-table-border .arco-table-scroll-y .arco-table-body .arco-table-tr:last-of-type .arco-table-td,
|
||||
.arco-table-border .arco-table-scroll-y tfoot .arco-table-tr:last-of-type .arco-table-td) {
|
||||
|
||||
Reference in New Issue
Block a user