Merge branch 'master' of http://git.luyuan.tk/luyuan/beelink into zj

This commit is contained in:
asd
2020-10-26 12:01:08 +08:00
5 changed files with 35 additions and 3 deletions

View File

@@ -943,4 +943,13 @@ export async function feedback(text: string) {
}else{
message.error(res.msg)
}
}
}
export async function livestart(id: string) {
const res = await put("live/" + id, {status : 1})
if(res.code == 0){
message.success(res.msg)
}else{
message.error(res.msg)
}
}