-- fix bug

This commit is contained in:
yuping
2023-02-23 19:35:29 +08:00
parent a599e5bd06
commit 45fc5683b7

View File

@@ -920,7 +920,7 @@ export default {
{/* 获取课程审核记录 */}
const getCourseRecord = (courseId) => {
state.loading2.value = true;
state.loading2 = true;
editCourseRecord(courseId)
.then((res) => {
console.log("获取修改记录", res);
@@ -928,11 +928,11 @@ export default {
state.tableData2 = res.data.data.records;
// console.log("state.tableData", state.tableData);
}
state.loading2.value = false;
state.loading2 = false;
})
.catch((err) => {
console.log("获取修改记录失败", err);
state.loading2.value = false;
state.loading2 = false;
});
}