Skip to content

Commit

Permalink
update social page
Browse files Browse the repository at this point in the history
  • Loading branch information
icarusion committed Jan 28, 2019
1 parent 722fc36 commit 32722d4
Show file tree
Hide file tree
Showing 9 changed files with 54 additions and 28 deletions.
Binary file removed src/assets/images/groups.jpg
Binary file not shown.
Binary file added src/assets/images/icon-qr-qq-wechat.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/assets/images/icon-social-bilibili.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/assets/images/icon-social-juejin.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/assets/images/icon-social-twitter.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/assets/images/icon-social-zhihu.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/assets/images/qq-group1.jpg
Binary file not shown.
Binary file removed src/assets/images/qq-group2.jpg
Binary file not shown.
78 changes: 50 additions & 28 deletions src/view/join-page.vue
Original file line number Diff line number Diff line change
@@ -1,44 +1,66 @@
<template>
<div>
<Row :gutter="20">
<i-col span="12">
<Card title="iview-admin交流群(已满)" shadow>
<img class="qq-group-img" :src="qqFans" alt="">
<p class="qq-group-intro">本群为使用iview-admin或者对iview-admin感兴趣的开发者提供交流平台,在这里,解决你开发中的疑惑,共同进步。</p>
</Card>
</i-col>
<i-col span="12">
<Card title="iview-admin交流群2" shadow>
<img class="qq-group-img" :src="qqFans2" alt="">
<p class="qq-group-intro">本群为使用iview-admin或者对iview-admin感兴趣的开发者提供交流平台,在这里,解决你开发中的疑惑,共同进步。</p>
</Card>
</i-col>
</Row>
<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>
import qqFans from '@/assets/images/qq-group1.jpg'
import qqFans2 from '@/assets/images/qq-group2.jpg'
export default {
name: 'join_page',
data () {
return {
qqFans,
qqFans2
}
}
}
</script>

<style>
.qq-group-img{
display: block;
margin: 0 auto;
width: 240px;
}
.qq-group-intro{
padding: 20px;
font-size: 16px;
}
.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>

0 comments on commit 32722d4

Please sign in to comment.