Files
mes-ui-d2/src/views/system/index/page.vue
2019-12-14 01:42:14 +08:00

71 lines
2.0 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<d2-container class="page">
<d2-page-cover>
<d2-icon-svg class="logo" name="d2-admin"/>
<template slot="footer">
<div class="btn-group">
<span class="btn-group__btn" @click="$open('https://github.com/d2-projects')">开源组织</span> |
<span class="btn-group__btn" @click="$open('https://fairyever.com/d2-admin/doc/zh/')">文档</span> |
<span class="btn-group__btn" @click="$open('https://github.com/d2-projects/d2-admin-start-kit')">简化版</span> |
<span class="btn-group__btn" @click="$open('https://juejin.im/user/57a48b632e958a006691b946/posts')">掘金</span> |
<el-popover :width="172" trigger="hover">
<p class="d2-mt-0 d2-mb-10">今日前端</p>
<img src="./image/qr@2x.png" style="width: 172px;">
<span slot="reference" class="btn-group__btn btn-group__btn--link">
<d2-icon name="weixin"/>
微信公众号
</span>
<p style="font-size: 12px; margin-top: 0px; margin-bottom: 0px;">
官方公众号主要推送前端技术类文章框架资源学习教程以及 D2 系列项目更新信息
</p>
</el-popover>
</div>
<d2-badge/>
<d2-help/>
</template>
</d2-page-cover>
</d2-container>
</template>
<script>
import D2Badge from './components/d2-badge'
import D2Help from './components/d2-help'
import D2PageCover from './components/d2-page-cover'
export default {
components: {
D2Badge,
D2Help,
D2PageCover
},
data () {
return {
filename: __filename
}
}
}
</script>
<style lang="scss" scoped>
.page {
.logo {
width: 120px;
}
.btn-group {
color: $color-text-placehoder;
font-size: 12px;
line-height: 12px;
margin-top: 0px;
margin-bottom: 20px;
.btn-group__btn {
color: $color-text-sub;
&:hover {
color: $color-text-main;
}
&.btn-group__btn--link {
color: $color-primary;
}
}
}
}
</style>