Compare commits
2 Commits
c1f59292ef
...
bbd7fa492c
Author | SHA1 | Date | |
---|---|---|---|
bbd7fa492c | |||
89b7b140bb |
@@ -1,19 +1,27 @@
|
|||||||
import request from '@/utils/request'
|
import request from "@/utils/request";
|
||||||
|
|
||||||
// 获取学生AI对话消息列表(管理员查看)
|
// 获取学生AI对话消息列表(管理员查看)
|
||||||
export function getMessagesToAdmin(params) {
|
export function getMessagesToAdmin(params) {
|
||||||
return request({
|
return request({
|
||||||
url: '/aitutor/aichat/getMessagesToAdmin',
|
url: "/aitutor/aichat/getMessagesToAdmin",
|
||||||
method: 'get',
|
method: "get",
|
||||||
params: params
|
params: params,
|
||||||
})
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
// 获取心理评估数据
|
// 获取心理评估数据
|
||||||
export function getPsychologicalRatings(query) {
|
export function getPsychologicalRatings(query) {
|
||||||
return request({
|
return request({
|
||||||
url: '/api/wechat/rating/all',
|
url: "/api/wechat/rating/all",
|
||||||
method: 'get',
|
method: "get",
|
||||||
params: query
|
params: query,
|
||||||
})
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 获取单个学生的历史心理记录
|
||||||
|
export function getStudentRatingHistory(stuNo) {
|
||||||
|
return request({
|
||||||
|
url: `/api/wechat/rating/${stuNo}`,
|
||||||
|
method: "get",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user