问题修复

This commit is contained in:
李东进1
2023-02-24 00:28:09 +08:00
parent 4241f7646e
commit d62f390669
3 changed files with 21 additions and 3 deletions

View File

@@ -266,9 +266,10 @@ export default {
const getStuProgress = () => {
state.loading = true
let obj = {
routerId:props.routerId==null?props.studentId:props.routerId
// routerId:props.studentId
routerId:props.routerId,
id:props.studentId
}
console.log("obj",obj);
stuProgress(obj).then(res => {
console.log("查询当前学员进度信息success",res)
state.pro = res.data.data

View File

@@ -377,7 +377,7 @@
onClick={
() => {
{/* 当前学员 用来查看学员详情 */}
state.routerId = value.record.routerId;
state.routerId = value.record.pid;
state.studentId = value.record.studentId;
state.CheckStuvisible = true;
console.log(value);