diff --git a/src/views/dashboard/analysis/index.vue b/src/views/dashboard/analysis/index.vue index c3f80f2..ee80907 100644 --- a/src/views/dashboard/analysis/index.vue +++ b/src/views/dashboard/analysis/index.vue @@ -38,7 +38,6 @@ import Module from './components/Module.vue' import AccessTimeslot from '@/views/dashboard/analysis/components/AccessTimeslot.vue' defineOptions({ name: 'Analysis' }) -// const AccessTimeslot = defineAsyncComponent(() => import('./components/AccessTimeslot.vue')) diff --git a/src/views/dashboard/workplace/components/LatestActivity.vue b/src/views/dashboard/workplace/components/LatestActivity.vue index 44f6649..88498ab 100644 --- a/src/views/dashboard/workplace/components/LatestActivity.vue +++ b/src/views/dashboard/workplace/components/LatestActivity.vue @@ -64,7 +64,7 @@ 在 {{ item.repo.alias }} 创建了 Issue {{ item.payload.title }}

-

+

更改了 {{ item.repo.alias }} 的 Issue {{ item.payload.title }} 状态为 {{ item.payload.stateString }} @@ -81,7 +81,7 @@ 接受了 {{ item.repo.alias }} 的 Pull Request {{ item.payload.title }}

-

+

更改了 {{ item.repo.alias }} 的 Pull Request {{ item.payload.title }} 状态为 {{ item.payload.stateString }} diff --git a/src/views/dashboard/workplace/components/Notice.vue b/src/views/dashboard/workplace/components/Notice.vue index b74c13a..c260c93 100644 --- a/src/views/dashboard/workplace/components/Notice.vue +++ b/src/views/dashboard/workplace/components/Notice.vue @@ -80,6 +80,7 @@ onMounted(() => { margin-bottom: 4px; .item-content { flex: 1; + justify-content: flex-start; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; diff --git a/src/views/system/menu/index.vue b/src/views/system/menu/index.vue index 898c18c..b5c8f72 100644 --- a/src/views/system/menu/index.vue +++ b/src/views/system/menu/index.vue @@ -126,7 +126,7 @@ const dataList = computed(() => { }) const columns: TableInstanceColumns[] = [ - { title: '菜单标题', dataIndex: 'title', slotName: 'title', minWidth: 170, fixed: !isMobile() ? 'left' : undefined }, + { title: '菜单标题', dataIndex: 'title', slotName: 'title', width: 170, fixed: !isMobile() ? 'left' : undefined }, { title: '类型', slotName: 'type', align: 'center' }, { title: '状态', slotName: 'status', align: 'center' }, { title: '排序', dataIndex: 'sort', align: 'center', show: false },