Skip to content

Commit

Permalink
style: 优化仪表盘 我的项目 样式
Browse files Browse the repository at this point in the history
  • Loading branch information
Charles7c committed Oct 30, 2024
1 parent 6b265f7 commit 146637c
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions src/views/dashboard/workplace/components/Project.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@
<a-card-meta>
<template #title>
<a-space>
<img :src="item.logo" width="40px" height="30px" alt="logo" />
<img :src="item.logo" width="35px" height="25px" alt="logo" />
<a-typography-text bold>{{ item.alias }}</a-typography-text>
</a-space>
</template>
<template #description>
<a-typography-paragraph
:ellipsis="{
rows: 3,
rows: 2,
showTooltip: true,
css: true,
}"
Expand All @@ -62,9 +62,11 @@
</template>
</a-card-meta>
<template v-if="!loading && item.status !== '孵化'" #actions>
<span class="icon-hover" title="点个 Star">
<a :href="item.url" target="_blank" rel="noopener"><IconThumbUp :size="20" /></a>
</span>
<a-tooltip content="点个 Star 吧">
<span class="icon-hover">
<a :href="item.url" target="_blank" rel="noopener"><IconThumbUp :size="20" /></a>
</span>
</a-tooltip>
</template>
</a-card>
</a-col>
Expand All @@ -83,7 +85,7 @@ const list = [
owner: 'continew-org',
desc: '🔥Almost最佳后端规范🔥持续迭代优化的前后端分离中后台管理系统框架,开箱即用,持续提供舒适的开发体验。',
logo: 'https://continew.top/logo.svg',
url: 'https://gitee.com/continew/continew-admin',
url: 'https://gitee.com/continew/continew-admin/stargazers',
status: '迭代',
statusColor: 'rgb(var(--primary-6))',
},
Expand All @@ -93,7 +95,7 @@ const list = [
owner: 'continew-org',
desc: '🔥高质量Starter🔥包含了一系列经过企业实践优化的依赖包(如 MyBatis-Plus、SaToken),可轻松集成到应用中,为开发人员减少手动引入依赖及配置的麻烦,为 Spring Boot Web 项目的灵活快速构建提供支持。',
logo: 'https://continew.top/logo.svg',
url: 'https://gitee.com/continew/continew-starter',
url: 'https://gitee.com/continew/continew-starter/stargazers',
status: '迭代',
statusColor: 'rgb(var(--primary-6))',
},
Expand All @@ -103,7 +105,7 @@ const list = [
owner: 'continew-org',
desc: '全新 3.x 版本,基于 Gi Demo 前端模板开发的 ContiNew Admin 前端适配项目。',
logo: 'https://continew.top/logo.svg',
url: 'https://gitee.com/continew/continew-admin-ui',
url: 'https://gitee.com/continew/continew-admin-ui/stargazers',
status: '迭代',
statusColor: 'rgb(var(--primary-6))',
},
Expand All @@ -113,7 +115,7 @@ const list = [
owner: 'continew-org',
desc: '2.5 版本,基于 Arco Design Pro 前端模板开发的 ContiNew Admin 前端适配项目。',
logo: 'https://continew.top/logo.svg',
url: 'https://gitee.com/continew/continew-admin-ui-arco',
url: 'https://gitee.com/continew/continew-admin-ui-arco/stargazers',
status: '归档',
statusColor: 'rgb(var(--warning-6))',
},
Expand All @@ -133,7 +135,7 @@ const list = [
owner: 'charles7c',
desc: '基于 VitePress 构建的个人知识库/博客。扩展 VitePress 默认主题:增加ICP备案号、公安备案号显示,增加文章元数据信息(原创标识、作者、发布时间、分类、标签)显示,增加文末版权声明,增加 Gitalk 评论功能,主页美化、自动生成侧边栏、文章内支持 Mermaid 流程图、MD公式、MD脚注、增加我的标签、我的归档等独立页面,以及浏览器滚条等细节优化。',
logo: 'https://blog.charles7c.top/logo.png',
url: 'https://github.com/Charles7c/charles7c.github.io',
url: 'https://github.com/Charles7c/charles7c.github.io/stargazers',
status: '归档',
statusColor: 'rgb(var(--warning-6))',
},
Expand Down

0 comments on commit 146637c

Please sign in to comment.