Bug描述:
路由跳转,出现404页面;
Bug解决:
path里面的单词拼写错误;
// 修改讲师
updateTeacher() {
this.saveBtnDisabled = true
teacherApi.updateById(this.teacher).then(response => {
return this.$message({
type: 'success',
message: '修改成功!'
})
}).then(response => {
this.$router.push({ path: '/edu/teacher/list' })
}).catch((response) => {
// consle.log(response)
this.$message({
type: 'error',
message: '保存失败!'
})
})
},