mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-09 19:06:45 +08:00
---fix bug
This commit is contained in:
@@ -407,7 +407,10 @@ export default {
|
|||||||
showAudit(
|
showAudit(
|
||||||
value.record.createrId,
|
value.record.createrId,
|
||||||
value.record.creater,
|
value.record.creater,
|
||||||
value.record.offId
|
value.record.offId,
|
||||||
|
value.record.type,
|
||||||
|
value.record.id,
|
||||||
|
value.record.courseId
|
||||||
);
|
);
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
@@ -422,7 +425,10 @@ export default {
|
|||||||
showInvitationAudit(
|
showInvitationAudit(
|
||||||
value.record.createrId,
|
value.record.createrId,
|
||||||
value.record.creater,
|
value.record.creater,
|
||||||
value.record.offId
|
value.record.offId,
|
||||||
|
value.record.type,
|
||||||
|
value.record.id,
|
||||||
|
value.record.courseId
|
||||||
)
|
)
|
||||||
}}>
|
}}>
|
||||||
邀请审核
|
邀请审核
|
||||||
@@ -807,23 +813,29 @@ export default {
|
|||||||
state.currentPage = pagina;
|
state.currentPage = pagina;
|
||||||
getFaceList();
|
getFaceList();
|
||||||
};
|
};
|
||||||
const showAudit = (createId, creater, offId) => {
|
const showAudit = (createId, creater, offId,type,id,courseId) => {
|
||||||
console.log("参数",createId, creater, offId)
|
console.log("参数",createId, creater, offId)
|
||||||
state.courAuditModal = true;
|
state.courAuditModal = true;
|
||||||
state.createId = createId;
|
state.createId = createId;
|
||||||
state.chooseCreater = creater;
|
state.chooseCreater = creater;
|
||||||
state.chooseOffId = offId;
|
state.chooseOffId = offId;
|
||||||
|
state.type = type;
|
||||||
|
state.id = id;
|
||||||
|
state.courseId = courseId;
|
||||||
{/* 获取当前课程的审核记录 */}
|
{/* 获取当前课程的审核记录 */}
|
||||||
getCourseRecord(offId);
|
getCourseRecord(offId);
|
||||||
};
|
};
|
||||||
|
|
||||||
// 显示邀请审核弹框
|
// 显示邀请审核弹框
|
||||||
const showInvitationAudit = (createId, creater, offId) => {
|
const showInvitationAudit = (createId, creater, offId,type,id,courseId) => {
|
||||||
console.log("参数",createId, creater, offId)
|
console.log("参数",createId, creater, offId)
|
||||||
state.courInvitationAuditModal = true;
|
state.courInvitationAuditModal = true;
|
||||||
state.inviteReview.offcourseId = offId;
|
state.inviteReview.offcourseId = offId;
|
||||||
state.inviteReview.teacherId = createId;
|
state.inviteReview.teacherId = createId;
|
||||||
state.inviteReview.teacherName = creater;
|
state.inviteReview.teacherName = creater;
|
||||||
|
state.type = type;
|
||||||
|
state.id = id;
|
||||||
|
state.courseId = courseId;
|
||||||
};
|
};
|
||||||
// 关闭邀请审核弹框
|
// 关闭邀请审核弹框
|
||||||
const closeInvitationCourAuditModal = () => {
|
const closeInvitationCourAuditModal = () => {
|
||||||
|
|||||||
Reference in New Issue
Block a user