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