保存提示语修改

This commit is contained in:
zhanglipeng 2021-09-02 18:10:47 +08:00
parent 49652d78ba
commit d654ccb791
4 changed files with 4 additions and 4 deletions

View File

@ -643,7 +643,7 @@ export default {
} else {
addPlanweek(this.form).then((response) => {
if (response.code === 200) {
this.msgSuccess("保存成功,记得去<活动>按钮设置每天活动。");
this.msgSuccess("新增成功,记得去<活动>按钮设置每天活动。");
this.open = false;
this.getList();
}

View File

@ -544,7 +544,7 @@ export default {
} else {
addMonthplan(this.form).then((response) => {
if (response.code === 200) {
this.msgSuccess("新增成功");
this.msgSuccess("新增成功,记得点击<设置>每周的活动。");
this.open = false;
this.getList();
}

View File

@ -464,7 +464,7 @@ export default {
} else {
addTermplan(this.form).then((response) => {
if (response.code === 200) {
this.msgSuccess("新增成功");
this.msgSuccess("新增成功,记得点击<设置>每月的主题。");
this.open = false;
this.getList();
}

View File

@ -499,7 +499,7 @@ export default {
} else {
addWeekplan(this.form).then((response) => {
if (response.code === 200) {
this.msgSuccess("新增成功");
this.msgSuccess("新增成功,记得点击<设置>每天的活动。");
this.open = false;
this.getList();
}