4.3 删除课程章节 //删除章节 removeById(chapterId) { this.$confirm("此操作将永久删除章节信息, 是否继续?", "提示", { confirmButtonText: "确定", cancelButtonText: "取消", type: "warning", }).then(() => { //点击确定,执行then方法 chapter.deleteChapter(chapterId).then((resp) =...