直播学生列表

This commit is contained in:
asd
2020-10-23 09:00:02 +08:00
parent bf3ba7228e
commit a97f2448e7
7 changed files with 281 additions and 21 deletions

View File

@@ -611,6 +611,7 @@ export async function editsystemsetting(e?: any): Promise<boolean> {
console.log(res)
if(res.code == 0){
message.success("修改成功")
store.dispatch("setUserInfo");
return true;
}else{
message.error(res.msg);
@@ -621,7 +622,10 @@ export async function editsystemsetting(e?: any): Promise<boolean> {
/**
* 货币列表
*/
export async function getcurrencys(){
const res=await get("currencys")
return res.data
}
/**
* 发送验证码
@@ -765,6 +769,13 @@ export async function getliveinfo(id: number){
return {...liveinfo,studentlist}
}
/**
* 参与直播的学生列表
*/
export async function getstudentlist(data?: any) {
const studentlist = (await get<StudentList[]>("studentLive",data)).data;
return studentlist
}
/**
* 直播日历