Former-commit-id: d4092359cd7230f0b6951357d032c25eaef76fbd [formerly d4092359cd7230f0b6951357d032c25eaef76fbd [formerly d4092359cd7230f0b6951357d032c25eaef76fbd [formerly d4092359cd7230f0b6951357d032c25eaef76fbd [formerly 7b709f5f323538e6939eb303eea32c82bbbe7a5e [formerly b96839f20dd4ffb15888b803e12c272016758e2c]]]]] Former-commit-id: 547e615e1595e22d9bb5e7996cccb744d128fe59 Former-commit-id: 8a9b843a78dee90450827ac5ba6c24b99b7d8056 Former-commit-id: 40b9089ff6b54ca7b6f2d5e41e6e4c8b2a80f675 [formerly 2cf9dc04bd48bbb668cec0bcc8c18082f947d6c1] Former-commit-id: ea60f2b4e88d57a1f8822ea17d61d43a8a39a20a Former-commit-id: e6cf4fe547aac1462338068ddd0462bfd49587bb Former-commit-id: b4851f8ed7bc73d5cffc6af08512fbf6b38d1b31 Former-commit-id: 3194dea90eef44d97aa7923cf50d82c2c9c06318 Former-commit-id: 68613f707ac4859e5e34a78ca9bd8d1d7ab41ae3
65 lines
2.0 KiB
Vue
65 lines
2.0 KiB
Vue
<template>
|
||
<d2-container class="page">
|
||
<d2-page-cover
|
||
title="I AM D2ADMIN"
|
||
sub-title="追求简约美感的后台管理系统集成方案">
|
||
<d2-icon-svg style="width: 120px;" name="d2-admin"/>
|
||
<template slot="footer">
|
||
<div class="page__btn-group">
|
||
<span @click="$open('https://github.com/d2-projects')">项目组</span> |
|
||
<span @click="$open('https://d2-projects.github.io/d2-admin-doc/zh/')">使用文档</span> |
|
||
<span @click="$open('https://github.com/d2-projects/d2-admin-start-kit')">简化版脚手架</span> |
|
||
<span @click="$open('https://alibaba.github.io/ice/scaffold?type=vue')">飞冰物料</span> |
|
||
<span @click="$open('https://juejin.im/user/57a48b632e958a006691b946/posts')">掘金专栏</span> |
|
||
<el-popover
|
||
:width="172"
|
||
trigger="hover">
|
||
<p class="d2-mt-0 d2-mb-10">D2Projects</p>
|
||
<img src="./image/qr@2x.png" style="width: 172px;">
|
||
<span slot="reference">微信公众号</span>
|
||
<p
|
||
style="
|
||
font-size: 12px;
|
||
margin-top: 0px;
|
||
margin-bottom: 0px;
|
||
">
|
||
官方公众号,主要推送前端技术类文章、框架资源、学习教程,以及 D2 系列项目更新信息
|
||
</p>
|
||
</el-popover>
|
||
</div>
|
||
<d2-badge/>
|
||
<d2-help-btn/>
|
||
</template>
|
||
</d2-page-cover>
|
||
</d2-container>
|
||
</template>
|
||
|
||
<script>
|
||
import D2HelpBtn from './components/d2-help-btn'
|
||
import D2Badge from './components/d2-badge'
|
||
export default {
|
||
components: {
|
||
D2HelpBtn,
|
||
D2Badge
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style lang="scss" scoped>
|
||
@import '~@/assets/style/public.scss';
|
||
.page {
|
||
.page__btn-group {
|
||
color: $color-text-placehoder;
|
||
font-size: 12px;
|
||
margin-top: -10px;
|
||
margin-bottom: 20px;
|
||
span {
|
||
color: $color-text-sub;
|
||
&:hover {
|
||
color: $color-text-main;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
</style>
|