iview-admin/src/view/join-page.vue

67 lines
1.8 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>
<div>
<Card shadow title="社区">
<row class="join-page" :gutter="32">
<i-col span="10">
<img class="qq-group-img" src="../assets/images/icon-qr-qq-wechat.png">
<row type="flex" justify="center">
<i-col span="12">
<p>QQ 群号621780943</p>
</i-col>
<i-col span="12"></i-col>
</row>
</i-col>
<i-col span="14">
<div class="join-page-other">
<Button to="https://zhuanlan.zhihu.com/feview" target="_blank" size="large">
<img src="../assets/images/icon-social-zhihu.svg" class="join-page-other-icon">
iView 知乎专栏
</Button>
<Button to="https://juejin.im/user/56fe494539b0570054f2e032" target="_blank" size="large">
<img src="../assets/images/icon-social-juejin.svg" class="join-page-other-icon">
掘金
</Button>
<Button to="https://live.bilibili.com/1353202" target="_blank" size="large">
<img src="../assets/images/icon-social-bilibili.svg" class="join-page-other-icon">
活动直播间
</Button>
<Button to="https://twitter.com/iViewUI" target="_blank" size="large">
<img src="../assets/images/icon-social-twitter.svg" class="join-page-other-icon">
Twitter
</Button>
</div>
</i-col>
</row>
</Card>
</div>
</template>
<script>
export default {
name: 'join_page',
data () {
return {
}
}
}
</script>
<style>
.join-page{
text-align: center;
}
.qq-group-img{
width: 100%;
}
.join-page-other-icon{
width: 20px;
vertical-align: middle;
margin-right: 6px;
}
.join-page-other{
text-align: left;
}
.join-page-other .ivu-btn{
margin-right: 6px;
}
</style>