案例的问题

This commit is contained in:
daihh
2022-12-28 22:06:57 +08:00
parent 453b08a22e
commit 4c7be8e669
4 changed files with 109 additions and 10 deletions

View File

@@ -195,7 +195,7 @@ export default {
});
},
open(item) {
this.$confirm('是否推荐该案例为优秀案例?', '提示', {
this.$confirm('是否设置此案例为优秀案例?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
@@ -210,7 +210,7 @@ export default {
if(res.status == 200){
this.$message({
type: 'success',
message: '推荐成功!'
message: '设置优秀案例成功!'
});
this.getData()
}
@@ -218,7 +218,7 @@ export default {
}).catch(() => {
this.$message({
type: 'info',
message: '已取消推荐'
message: '已取消优秀案例设置'
});
});
},