托费管理修改按钮

This commit is contained in:
sk1551 2021-01-04 10:11:26 +08:00
parent 3089c8368d
commit 0c546f53e1

View File

@ -60,7 +60,7 @@
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['benyi:schoolcharge:edit']"
>修改</el-button
>设置</el-button
>
<el-button
size="mini"
@ -247,7 +247,7 @@ export default {
getSchoolcharge(id).then((response) => {
this.form = response.data;
this.open = true;
this.title = "修改园所收费标准";
this.title = "设置园所收费标准";
});
}
},
@ -258,7 +258,7 @@ export default {
if (this.form.id != undefined) {
updateSchoolcharge(this.form).then((response) => {
if (response.code === 200) {
this.msgSuccess("修改成功");
this.msgSuccess("设置成功");
this.open = false;
this.getList();
}