修改内容

This commit is contained in:
2025-09-23 15:48:38 +08:00
parent cb26ec9abe
commit baa8a81015
10 changed files with 90 additions and 98 deletions

View File

@@ -1862,7 +1862,7 @@ import {mz_list} from "@/api/helpFunc";
},
fdySave(){
// 添加保存确认提示
this.$confirm('保存后还能继续修改表单信息是否继续', '提示', {
this.$confirm('保存后,还能继续修改表单信息,是否继续?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'info'
@@ -1895,11 +1895,11 @@ import {mz_list} from "@/api/helpFunc";
// 根据操作类型显示不同的确认提示
let confirmMessage = '';
if (stu == 0) {
confirmMessage = '保存后还能继续修改表单信息是否继续';
confirmMessage = '保存后,还能继续修改表单信息,是否继续?';
} else if (stu == 1) {
confirmMessage = '即将提交提交后将不能修改是否继续';
confirmMessage = '即将提交,提交后,将不能修改,是否继续?';
} else {
confirmMessage = '即将提交提交后将不能修改是否继续';
confirmMessage = '即将提交,提交后,将不能修改,是否继续?';
}
this.$confirm(confirmMessage, '提示', {