mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-11 03:46:45 +08:00
-- fix bug
This commit is contained in:
@@ -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;
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user