Bug记录:001《BUG之一千零一个》

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: '保存失败!'
        })
      })
    },
上一篇:建议收藏 手把手教你SpringBoot集成EasyExcel的使用的基础教学


下一篇:Day 001