请求接口

This commit is contained in:
gyq
2025-01-06 17:52:45 +08:00
parent f782216775
commit 0eadb01746
3 changed files with 33 additions and 8 deletions

11
api/me/me.js Normal file
View File

@@ -0,0 +1,11 @@
import http from '@/http/http.js'
/**
* 获取最近观看
*/
export const selectByUserId = (data) => {
return http.request({
url: '/courseCollect/selectByUserId',
data: data
})
}