21级的知识图谱仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

322 lines
7.6 KiB

7 months ago
<template>
7 months ago
<div class="loop" v-for="(item, index) in couresData.content" :key="item.id">
<div class="main" v-if="index % 2 === 0">
<!-- <div class="course-list">111</div> -->
<div class="container">
<div class="left-group">
<div class="group">
<Graph :width="848" :height="470" :index="item.id" :id="item.id" />
7 months ago
</div>
7 months ago
<div class="footer">
<div class="left-title">{{ item.name }}</div>
<div class="go-info" @click="goToCourseInfo(item.id, item.name)"></div>
</div>
</div>
<div class="right-info">
<div class="title">课程简介</div>
<div class="info">
{{ item.description }}
</div>
<div class="crous-content">
<ul>
<li>总学时10学时</li>
<li>章节数10</li>
<li>总学分2.0</li>
<li>知识点总数33</li>
</ul>
7 months ago
</div>
7 months ago
</div>
</div>
7 months ago
</div>
<div class="main" v-else style="background: linear-gradient(to right, #aecaff 60%, #5792ff)">
<!-- <div class="course-list">111</div> -->
<div class="container">
<div class="right-info">
<div class="title">课程简介</div>
<div class="info">
{{ item.description }}
</div>
<div class="crous-content">
<ul>
<li>总学时{{ item.classhours }}学时</li>
<li>章节数{{ item.totalchapter }}</li>
<li>总学分{{ item.credit }}</li>
<li>知识点总分{{ item.totalKnow }}</li>
</ul>
</div>
</div>
<div class="left-group">
<div class="group">
<Graph :width="848" :height="470" :index="item.id" :id="item.id" />
7 months ago
</div>
7 months ago
<div class="footer">
<div class="left-title">{{ item.name }}</div>
7 months ago
7 months ago
<div class="go-info" @click="goToCourseInfo(item.id)"></div>
7 months ago
</div>
7 months ago
</div>
</div>
</div>
7 months ago
</div>
<div class="get-more">
<div class="btn" @click="getMore">{{ btnTexst }}</div>
</div>
7 months ago
</template>
<script lang="ts" setup>
7 months ago
// import KnowledgeGraph from '@/views/professionalProfile/components/KnowledgeGraph.vue'
import Graph from './components/Graph.vue'
import { getCourseList } from '@/api/course'
import { reactive, ref } from 'vue'
7 months ago
import { useRouter } from 'vue-router'
7 months ago
interface Page {
pageNo: number
pageSize: number
7 months ago
username: string
7 months ago
userId: string | number
}
interface item {
7 months ago
name: string,
id: string,
description: string,
classhours: number,
totalchapter: number,
credit: number,
totalKnow: number
7 months ago
}
interface CouresData {
content: item[]
totalcount: number
[propName: string]: any
}
const Router = useRouter()
const currentPage: Page = reactive({
pageNo: 1,
pageSize: 5,
7 months ago
username: 'xiao1111',
userId: 3
7 months ago
})
const couresData: CouresData = reactive({
content: [],
totalcount: 0,
})
const btnTexst = ref<string>('加载更多')
const getCourseListEvent = async () => {
7 months ago
if (couresData.content.length && couresData.content.length === couresData.totalcount) {
btnTexst.value = '没有更多了'
return
7 months ago
}
btnTexst.value = '正在加载'
const res: any = await getCourseList(currentPage)
7 months ago
couresData.content = [...couresData.content, ...res.data.list]
couresData.totalcount = res.data.total
btnTexst.value = '加载更多'
7 months ago
7 months ago
console.log(couresData)
7 months ago
}
getCourseListEvent()
const getMore = () => {
7 months ago
if (btnTexst.value === '正在加载' || btnTexst.value === '没有更多了') return
7 months ago
currentPage.pageNo += 1
getCourseListEvent()
}
// 监听滚动事件
window.addEventListener('scroll', function () {
// 获取当前滚动条的位置
var scrollTop: number =
window.pageYOffset ||
document.documentElement.scrollTop ||
document.body.scrollTop ||
0
// 获取视窗的高度
var windowHeight: number =
window.innerHeight ||
document.documentElement.clientHeight ||
document.body.clientHeight
// 获取文档的总高度
var documentHeight: number =
document.documentElement.scrollHeight || document.body.scrollHeight
// 判断是否滚动到了页面底部
if (scrollTop + windowHeight >= documentHeight) {
getMore()
console.log('已经滚动到页面底部了!')
// 在这里可以执行一些操作,比如加载更多内容
}
})
// 查看课程信息
7 months ago
const goToCourseInfo = (id: string | number, name: string): void => {
7 months ago
console.log(id);
Router.push({
7 months ago
path: '/course',
query: { id, name }
7 months ago
})
7 months ago
7 months ago
}
7 months ago
</script>
<style lang="scss" scoped>
.view-container {
7 months ago
7 months ago
// height: 5000px;
7 months ago
// background-color: #2080f7;
7 months ago
.main {
margin-top: 50px;
}
7 months ago
7 months ago
.container {
width: $base-container-width;
margin: 0 auto;
7 months ago
display: flex;
7 months ago
7 months ago
.left-group {
position: relative;
width: 918px;
height: 623px;
background-color: pink;
background: url('../../assets/images/crous-card.png') no-repeat;
background-size: cover;
7 months ago
7 months ago
.group {
position: absolute;
top: 58px;
right: 13px;
width: 848px;
height: 470px;
background-color: pink;
border-radius: 10px;
overflow: hidden;
7 months ago
}
7 months ago
7 months ago
.footer {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 90px;
display: flex;
7 months ago
7 months ago
.go-info {
height: 100%;
width: 185px;
cursor: pointer;
}
7 months ago
7 months ago
.left-title {
flex: 1;
height: 100%;
font-size: 32px;
// text-align: center;
padding-left: 90px;
line-height: 90px;
color: #fff;
}
7 months ago
}
}
7 months ago
7 months ago
.right-info {
flex: 1;
// background-color: skyblue;
margin-left: 20px;
padding: 20px;
7 months ago
7 months ago
.title {
7 months ago
position: relative;
height: 72px;
line-height: 45px;
font-size: 32px;
color: #3374ff;
7 months ago
font-weight: 700;
7 months ago
margin-left: 30px;
7 months ago
}
7 months ago
7 months ago
.title::after {
position: absolute;
top: 5px;
left: -30px;
content: ' ';
display: block;
width: 5px;
height: 40px;
background-color: #3374ff;
}
7 months ago
7 months ago
.info {
color: #888888;
font-size: 24px;
line-height: 35px;
height: 390px;
display: -webkit-box;
7 months ago
-webkit-line-clamp: 11;
/* 限制显示3行 */
7 months ago
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}
7 months ago
7 months ago
.crous-content {
width: 100%;
height: 100px;
margin-top: 60px;
7 months ago
7 months ago
ul {
width: 100%;
height: 100%;
display: flex;
flex-wrap: wrap;
li {
height: 40px;
width: 50%;
color: #555555;
font-size: 24px;
}
}
7 months ago
}
}
}
7 months ago
7 months ago
.get-more {
width: 100%;
height: 200px;
display: flex;
align-items: center;
justify-content: center;
7 months ago
7 months ago
.btn {
width: 120px;
height: 40px;
border: 1px solid #3374ff;
text-align: center;
line-height: 40px;
border-radius: 5px;
color: #3374ff;
cursor: pointer;
transition: all 0.3s;
}
7 months ago
7 months ago
.btn:hover {
transform: scale(1.1);
}
}
7 months ago
7 months ago
.banner {
width: 100%;
height: 410px;
background: url('../../assets/images/banner2.png') no-repeat;
background-size: cover;
7 months ago
7 months ago
.title {
position: absolute;
top: 200px;
right: 200px;
font-size: 48px;
font-weight: 700;
color: #fff;
}
7 months ago
}
}
</style>