Skip to content
This repository was archived by the owner on Nov 6, 2022. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/Footer.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<p class="absolute bottom-2 left-1/2 -translate-x-1/2 text-shadow-md opacity-70 w-auto text-sm whitespace-nowrap">
© 2021 Designed & Coded with <span class="iconfont icon-love mx-1"></span> by <a href="http://github.com/z233" target="_blank" class="hover:opacity-100">Fronz</a>
© 2022 Designed & Coded with <span class="iconfont icon-love mx-1"></span> by <a href="http://github.com/z233" target="_blank" class="hover:opacity-100">CSD Web Group</a>
</p>
</template>
2 changes: 1 addition & 1 deletion pages/directions/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export default class DirectionsPage extends Vue {
color: 'red',
icon: 'ai',
name: '人工智能',
desc: '对自然语言处理(语音助手)、计算机视觉(自动驾驶)、数据挖掘(推荐算法)等方向进行学习。在这里你可以汲取学长的学习经验,接触到不同学院的老师、同学。'
desc: ' 这是一个气氛活跃,对人工智能有着极高热情的小组。在这里,有学长引导你入门看似遥不可及的人工智能技术,跟大佬一起探讨人工智能相关的知识算法,对自然语言处理(语音助手)、计算机视觉(自动驾驶)、数据挖掘(推荐算法)等方向进行学习,还可以动手实践有趣的人工智能小项目。在这里你可以汲取学长的学习经验,接触到不同学院的老师、同学。'
}]
@Ref('introWrapper') private introWrapper!: HTMLElement
private navColor = 'white'
Expand Down
2 changes: 2 additions & 0 deletions views/apply/FormOne.vue
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ import { UserModel } from '~/type'
@Component({
components: { ValidationObserver }
})


export default class ApplyFormOne extends mixins(applyMixin) {
grade: 1 | 2 = 1
user: UserModel = {
Expand Down
2 changes: 1 addition & 1 deletion views/index/Section02.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
/>
<HeroText
title="一个自由的技术社团"
content="在这里,你能接触到各种各样的前沿技术。我们奉承自由的极客精神,你可以学习任何你想学习的东西。"
content="在这里,你能接触到各种各样的前沿技术。我们奉承自由的极客精神,你可以学习任何你想学习的东西。每个方向都有经验丰富的学长学姐在从中探索,一起探讨技术。"
/>
<div class="relative flex-1 mt-16 sm:mt-24">
<div
Expand Down
2 changes: 1 addition & 1 deletion views/index/Section03.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
</div>
<HeroText
title="一群充满创造力的人"
content="软件部汇聚了一群精通技术又充满创造力的人,他们在自己专注的方向上大放异彩。"
content="软件部汇聚了一群精通技术又充满创造力的人。全国奖项,互联网大厂,留学保研。在软件部,有学分绩优异的保研卷王,有从小钻研技术的技术大牛。在学习技术的路上大家互帮互助,共同学习。"
/>
</div>
</template>
Expand Down
2 changes: 1 addition & 1 deletion views/index/Section04.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
/>
<HeroText
title="你也可以成为技术达人"
content="软件部每个方向都有相应的培养方案和学习资源,助你赢在大学生活的起跑线上。"
content="软件部每个方向都有相应的培养方案和学习资源,助你赢在大学生活的起跑线上。软件部不问出处,只要你想要学习it方面的技术,愿意和我们一起探讨技术,团队合作共同进步,软件部都欢迎你的加入。"
/>
<div class="flex-1 relative mt-0 sm:mt-16">
<div class="pb-full" style="padding-bottom: 100%">
Expand Down
20 changes: 15 additions & 5 deletions views/index/Section05.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,21 @@
<!-- <div class="relative px-1/6 py-1/4 sm:px-1/8 sm:py-[0] !mt-8 !mb-6 bg-yellow-50 rounded-1/2">
<img class="absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 w-[90%]" src="~/assets/svg/welcome.svg">
</div> -->
<BaseButton
:color="'primary'"
:icon="'QQ'"
:link="'https://jq.qq.com/?_wv=1027&k=imP5b1Yu'">

<div class="space-x-2">
<BaseButton
:color="'primary'"
:icon="'QQ'"
:link="'https://jq.qq.com/?_wv=1027&k=8l0TaHCJ'">
<span>加入群聊</span>
</BaseButton>
</BaseButton>
<BaseButton
:border="2"
:link="'https://oj.dsstudio.tech/'"
>
<span>OJ练习</span>
</BaseButton>
</div>
</div>
</div>
<Footer />
Expand All @@ -40,6 +49,7 @@

<script lang='ts'>
import { Component, Vue } from 'nuxt-property-decorator'
import BaseButton from '~/components/BaseButton.vue';

@Component
export default class Section05 extends Vue {}
Expand Down