forked from iview/iview-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
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
9 changed files
with
54 additions
and
28 deletions.
There are no files selected for viewing
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
@@ -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"> | ||
</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> |