Compare commits
2 Commits
8663aadfb3
...
e894c20b98
Author | SHA1 | Date |
---|---|---|
|
e894c20b98 | |
|
a4a642b8b6 |
124
src/api/video.ts
124
src/api/video.ts
|
@ -41,7 +41,7 @@ const mockVideos: Video[] = [
|
|||
duration: '15:30',
|
||||
category: 'health',
|
||||
views: 2345,
|
||||
description: '专业<EFBFBD><EFBFBD>生讲解养生知识',
|
||||
description: '专业医生讲解养生知识',
|
||||
uploadTime: '2024-03-19',
|
||||
likes: 342,
|
||||
comments: 67,
|
||||
|
@ -99,54 +99,108 @@ export const videoCategories = [
|
|||
{ label: '新闻资讯', value: 'news' }
|
||||
]
|
||||
|
||||
// 模拟 API 接口
|
||||
// 视频相关接口
|
||||
export const videoApi = {
|
||||
// 获取视频列表
|
||||
async getVideoList(category: string = ''): Promise<Video[]> {
|
||||
await delay(500) // 模拟网络延迟
|
||||
return mockVideos.filter(video =>
|
||||
category ? video.category === category : true
|
||||
)
|
||||
async getList(params: {
|
||||
pageNum?: number
|
||||
pageSize?: number
|
||||
keyword?: string
|
||||
}) {
|
||||
const res = await request.get('/videos', { params })
|
||||
return res.data
|
||||
},
|
||||
|
||||
// 获取视频详情
|
||||
async getVideoDetail(id: number): Promise<Video | undefined> {
|
||||
await delay(300)
|
||||
return mockVideos.find(video => video.id === id)
|
||||
async getDetail(id: number) {
|
||||
const res = await request.get(`/videos/${id}`)
|
||||
return res.data
|
||||
},
|
||||
|
||||
// 更新观看次数
|
||||
async updateViews(id: number): Promise<void> {
|
||||
await delay(200)
|
||||
const video = mockVideos.find(v => v.id === id)
|
||||
if (video) {
|
||||
video.views += 1
|
||||
// 上传视频
|
||||
async upload(data: FormData) {
|
||||
const res = await request.post('/videos/upload', data, {
|
||||
headers: {
|
||||
'Content-Type': 'multipart/form-data'
|
||||
}
|
||||
})
|
||||
return res.data
|
||||
},
|
||||
|
||||
// 点赞视频
|
||||
async likeVideo(id: number): Promise<void> {
|
||||
await delay(200)
|
||||
const video = mockVideos.find(v => v.id === id)
|
||||
if (video) {
|
||||
video.likes += 1
|
||||
}
|
||||
// 更新视频信息
|
||||
async update(id: number, data: {
|
||||
title: string
|
||||
description: string
|
||||
tags?: string
|
||||
}) {
|
||||
const res = await request.put(`/videos/${id}`, data)
|
||||
return res.data
|
||||
},
|
||||
|
||||
// 删除视频
|
||||
async delete(id: number) {
|
||||
await request.delete(`/videos/${id}`)
|
||||
},
|
||||
|
||||
// 点赞/取消点赞
|
||||
async toggleLike(id: number) {
|
||||
await request.post(`/videos/${id}/like`)
|
||||
},
|
||||
|
||||
// 增加观看次数
|
||||
async addView(id: number) {
|
||||
await request.post(`/videos/${id}/view`)
|
||||
},
|
||||
|
||||
// 获取推荐视频
|
||||
async getRecommendedVideos(currentId: number): Promise<Video[]> {
|
||||
await delay(300)
|
||||
return mockVideos
|
||||
.filter(video => video.id !== currentId)
|
||||
.sort(() => Math.random() - 0.5)
|
||||
.slice(0, 3)
|
||||
async getRecommend(limit: number = 10) {
|
||||
const res = await request.get('/videos/recommend', {
|
||||
params: { limit }
|
||||
})
|
||||
return res.data
|
||||
},
|
||||
|
||||
// 获取热门视频
|
||||
async getHotVideos(): Promise<Video[]> {
|
||||
await delay(300)
|
||||
return [...mockVideos]
|
||||
.sort((a, b) => b.views - a.views)
|
||||
.slice(0, 5)
|
||||
// 获取相似视频
|
||||
async getSimilar(id: number, limit: number = 10) {
|
||||
const res = await request.get(`/videos/${id}/similar`, {
|
||||
params: { limit }
|
||||
})
|
||||
return res.data
|
||||
}
|
||||
}
|
||||
|
||||
// 视频DTO类型定义
|
||||
export interface VideoDTO {
|
||||
id: number
|
||||
title: string
|
||||
description: string
|
||||
url: string
|
||||
coverUrl: string
|
||||
duration: number
|
||||
size: number
|
||||
status: 'DRAFT' | 'PUBLISHED' | 'DELETED'
|
||||
userId: number
|
||||
username: string
|
||||
createdTime: string
|
||||
updatedTime: string
|
||||
viewCount: number
|
||||
likeCount: number
|
||||
tags: string
|
||||
hasLiked: boolean
|
||||
}
|
||||
|
||||
// 分页响应类型
|
||||
export interface PageResponse<T> {
|
||||
records: T[]
|
||||
total: number
|
||||
size: number
|
||||
current: number
|
||||
pages: number
|
||||
}
|
||||
|
||||
// 响应类型
|
||||
export interface ApiResponse<T> {
|
||||
code: number
|
||||
message: string
|
||||
data: T
|
||||
}
|
|
@ -6,12 +6,7 @@
|
|||
|
||||
<div class="right">
|
||||
<template v-if="userStore.userInfo">
|
||||
<el-popover
|
||||
:width="200"
|
||||
trigger="click"
|
||||
placement="bottom-end"
|
||||
>
|
||||
<template #reference>
|
||||
<el-dropdown trigger="click">
|
||||
<div class="user-info">
|
||||
<el-avatar
|
||||
:size="32"
|
||||
|
@ -20,24 +15,23 @@
|
|||
<span class="nickname">{{ userStore.userInfo.nickname || '用户' }}</span>
|
||||
<el-icon class="el-icon--right"><arrow-down /></el-icon>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<div class="menu-items">
|
||||
<div class="menu-item" @click="handleProfile">
|
||||
<template #dropdown>
|
||||
<el-dropdown-menu>
|
||||
<el-dropdown-item @click="handleProfile">
|
||||
<el-icon><User /></el-icon>
|
||||
<span>个人中心</span>
|
||||
</div>
|
||||
<div class="menu-item" @click="handleSettings">
|
||||
个人中心
|
||||
</el-dropdown-item>
|
||||
<el-dropdown-item @click="handleSettings">
|
||||
<el-icon><Setting /></el-icon>
|
||||
<span>设置</span>
|
||||
</div>
|
||||
<div class="divider"></div>
|
||||
<div class="menu-item" @click="handleLogout">
|
||||
设置
|
||||
</el-dropdown-item>
|
||||
<el-dropdown-item divided @click="handleLogout">
|
||||
<el-icon><SwitchButton /></el-icon>
|
||||
<span>退出登录</span>
|
||||
</div>
|
||||
</div>
|
||||
</el-popover>
|
||||
退出登录
|
||||
</el-dropdown-item>
|
||||
</el-dropdown-menu>
|
||||
</template>
|
||||
</el-dropdown>
|
||||
</template>
|
||||
<template v-else>
|
||||
<router-link to="/login" class="login-btn">
|
||||
|
@ -142,31 +136,14 @@ const handleLogout = async () => {
|
|||
text-decoration: none;
|
||||
}
|
||||
|
||||
.menu-items {
|
||||
padding: 4px 0;
|
||||
}
|
||||
|
||||
.menu-item {
|
||||
display: flex;
|
||||
.el-dropdown-menu__item {
|
||||
display: flex !important;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
padding: 8px 16px;
|
||||
cursor: pointer;
|
||||
transition: background-color 0.3s;
|
||||
}
|
||||
|
||||
.menu-item:hover {
|
||||
background-color: #f5f7fa;
|
||||
}
|
||||
|
||||
.divider {
|
||||
height: 1px;
|
||||
background-color: #ebeef5;
|
||||
margin: 4px 0;
|
||||
}
|
||||
|
||||
.el-icon {
|
||||
font-size: 16px;
|
||||
margin-right: 4px;
|
||||
}
|
||||
|
||||
.el-icon--right {
|
||||
|
|
14
src/main.ts
14
src/main.ts
|
@ -1,16 +1,22 @@
|
|||
import './assets/styles/global.css'
|
||||
import { createApp } from 'vue'
|
||||
import { createApp, type Component } from 'vue'
|
||||
import { createPinia } from 'pinia'
|
||||
import ElementPlus from 'element-plus'
|
||||
import * as ElementPlusIconsVue from '@element-plus/icons-vue'
|
||||
import 'element-plus/dist/index.css'
|
||||
|
||||
import App from './App.vue'
|
||||
import router from './router'
|
||||
import { createPinia } from 'pinia'
|
||||
|
||||
const app = createApp(App)
|
||||
const pinia = createPinia()
|
||||
|
||||
// 注册 Element Plus 图标
|
||||
for (const [key, component] of Object.entries(ElementPlusIconsVue)) {
|
||||
app.component(key, component as Component)
|
||||
}
|
||||
|
||||
app.use(createPinia())
|
||||
app.use(ElementPlus)
|
||||
app.use(pinia)
|
||||
app.use(router)
|
||||
|
||||
app.mount('#app')
|
||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue