标签:pat 成功 turn message path return type 页面 The
// 保存
saveData() {
teacher.save(this.teacher).then(response => {
return this.$message({
type: ‘success‘,
message: ‘保存成功!‘
})
}).then(resposne => {
// 路由跳转,添加完成后跳转到列表页面
this.$router.push({ path: ‘/edu/teacher‘ })
}).catch((response) => {
// console.log(response)
this.$message({
type: ‘error‘,
message: ‘保存失败‘
})
})
}
标签:pat 成功 turn message path return type 页面 The
原文地址:https://www.cnblogs.com/yxyuanxiang/p/13985107.html