fei.wang
2025-04-18 11f6acee504c77a8919a4e0ddfe3e70a746e3522
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<template>
  <div class="social-signup-container">
     <h3>
      最新版源码地址:<a style="color:#409EFF;" target="_blank" href="https://gitee.com/yeyoudubai/vue-admin">码云项目仓库地址</a>
      <br/><br/>
      1.VUE技术交流组,所有项目全部免费;
      <br/><br/>
      2.让我们一起成长吧!;
      <br/><br/>
      3.我们不生成代码,我们只是代码的搬运工!
      <br/><br/>
      4.感谢花裤衩的开源项目:vue-element-admin!
    </h3>
    <div class="sign-btn" @click="tencentHandleClick('https://jq.qq.com/?_wv=1027&k=MfdeOae1')">
      <span class="qq-svg-container"><svg-icon icon-class="qq" class="icon" /></span>
      加入QQ群
    </div>
  </div>
</template>
 
<script>
// import openWindow from '@/utils/open-window'
 
export default {
  name: "SocialSignin",
  methods: {
    tencentHandleClick(url) {
      window.open(url);
    },
  },
};
</script>
 
<style lang="scss" scoped>
.social-signup-container {
  margin: 20px 0;
  .sign-btn {
    display: inline-block;
    cursor: pointer;
  }
  .icon {
    color: #fff;
    font-size: 24px;
    margin-top: 8px;
  }
  .wx-svg-container,
  .qq-svg-container {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    padding-top: 1px;
    border-radius: 4px;
    margin-bottom: 20px;
    margin-right: 5px;
  }
  .wx-svg-container {
    background-color: #24da70;
  }
  .qq-svg-container {
    background-color: #6ba2d6;
  }
}
</style>