Skip to content

Commit

Permalink
style: 优化部分样式
Browse files Browse the repository at this point in the history
  • Loading branch information
Charles7c committed Nov 6, 2024
1 parent 169a304 commit 4cd4e51
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
1 change: 0 additions & 1 deletion src/views/dashboard/analysis/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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'))
</script>

<style lang="scss" scoped></style>
4 changes: 2 additions & 2 deletions src/views/dashboard/workplace/components/LatestActivity.vue
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
在 <a-link :href="item.repo.url" target="_blank" rel="noopener">{{ item.repo.alias }}</a-link>
创建了 Issue <a-link :href="item.payload.url" target="_blank" rel="noopener">{{ item.payload.title }}</a-link>
</p>
<p v-else-if="item.type === 'ISSUE_CLOSE'">
<p v-else-if="item.type === 'ISSUE_CLOSE' || item.type === 'ISSUE_REOPEN'">
更改了 <a-link :href="item.repo.url" target="_blank" rel="noopener">{{ item.repo.alias }}</a-link>
的 Issue <a-link :href="item.payload.url" target="_blank" rel="noopener">{{ item.payload.title }}</a-link>
状态为 {{ item.payload.stateString }}
Expand All @@ -81,7 +81,7 @@
接受了 <a-link :href="item.repo.url" target="_blank" rel="noopener">{{ item.repo.alias }}</a-link>
的 Pull Request <a-link :href="item.payload.url" target="_blank" rel="noopener">{{ item.payload.title }}</a-link>
</p>
<p v-else-if="item.type === 'PULL_REQUEST_CLOSE'">
<p v-else-if="item.type === 'PULL_REQUEST_CLOSE' || item.type === 'PULL_REQUEST_REOPEN'">
更改了 <a-link :href="item.repo.url" target="_blank" rel="noopener">{{ item.repo.alias }}</a-link>
的 Pull Request <a-link :href="item.payload.url" target="_blank" rel="noopener">{{ item.payload.title }}</a-link>
状态为 {{ item.payload.stateString }}
Expand Down
1 change: 1 addition & 0 deletions src/views/dashboard/workplace/components/Notice.vue
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ onMounted(() => {
margin-bottom: 4px;
.item-content {
flex: 1;
justify-content: flex-start;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
Expand Down
2 changes: 1 addition & 1 deletion src/views/system/menu/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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 },
Expand Down

0 comments on commit 4cd4e51

Please sign in to comment.