|
@@ -267,7 +267,7 @@ export default {
|
|
|
this.$toast("修改成功")
|
|
|
setTimeout(res => {
|
|
|
if (this.isInside) {
|
|
|
- this.$router.push({ path: "/manageEvaluation" });
|
|
|
+ this.$router.replace({ path: "/manageEvaluation" });
|
|
|
} else {
|
|
|
this.onAppBack();
|
|
|
}
|
|
@@ -290,7 +290,7 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
onWork() {
|
|
|
- this.$router.push({
|
|
|
+ this.$router.replace({
|
|
|
path: '/arrangeWork',
|
|
|
query: {
|
|
|
courseId: this.courseId
|
|
@@ -299,7 +299,7 @@ export default {
|
|
|
},
|
|
|
onClose() { // 关闭弹窗
|
|
|
if (this.isInside) {
|
|
|
- this.$router.push({ path: "/manageEvaluation" });
|
|
|
+ this.$router.replace({ path: "/manageEvaluation" });
|
|
|
} else {
|
|
|
this.onAppBack();
|
|
|
}
|