-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
516 additions
and
742 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
219 changes: 0 additions & 219 deletions
219
src/views/dashboard/workplace/components/AccessTrendCard.vue
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<template> | ||
<a-carousel | ||
indicator-type="slider" | ||
show-arrow="hover" | ||
auto-play | ||
style="width: 100%; height: 150px; border-radius: 4px; overflow: hidden" | ||
> | ||
<a-carousel-item v-for="(image, idx) in images" :key="idx"> | ||
<div> | ||
<a-link | ||
:href="image.url" | ||
target="_blank" | ||
rel="noopener" | ||
> | ||
<img :src="`${image.src}?${new Date().getTime()}`" style="width: 100%" alt="" /> | ||
</a-link> | ||
</div> | ||
</a-carousel-item> | ||
</a-carousel> | ||
</template> | ||
|
||
<script lang="ts" setup> | ||
const images = [ | ||
{ | ||
src: 'https://continew.top/qrcode-text.png', | ||
url: 'https://continew.top/about/intro.html' | ||
}, | ||
{ | ||
src: 'https://continew.top/sponsor.png', | ||
url: 'https://continew.top/sponsor.html' | ||
} | ||
] | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<template> | ||
<a-card | ||
class="general-card" | ||
title="帮助文档" | ||
:header-style="{ paddingBottom: 0 }" | ||
:body-style="{ paddingTop: '5px' }" | ||
style="height: 166px" | ||
> | ||
<template #extra> | ||
<a-link href="https://continew.top" target="_blank" rel="noopener">更多</a-link> | ||
</template> | ||
<a-row> | ||
<a-col v-for="link in links" :key="link.text" :span="12"> | ||
<a-link | ||
:href="link.url" | ||
target="_blank" | ||
rel="noopener" | ||
> | ||
{{ link.text }} | ||
</a-link> | ||
</a-col> | ||
</a-row> | ||
</a-card> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
const links = [ | ||
{ text: '项目简介', url: 'https://continew.top/admin/intro/what-is.html' }, | ||
{ text: '快速开始', url: 'https://continew.top/admin/intro/quick-start.html' }, | ||
{ text: '常见问题', url: 'https://continew.top/faq.html' }, | ||
{ text: '更新日志', url: 'https://continew.top/admin/other/changelog.html' }, | ||
{ text: '贡献指南', url: 'https://continew.top/admin/other/contributing.html' }, | ||
{ text: '赞助支持 💖', url: 'https://continew.top/sponsor.html' } | ||
] | ||
</script> | ||
|
||
<style lang="less" scoped> | ||
.arco-card-body .arco-link { | ||
margin: 5px 0; | ||
color: rgb(var(--gray-8)); | ||
} | ||
</style> |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.