删除修改

This commit is contained in:
shidongli 2022-09-26 09:58:10 +08:00
parent e023e3ae7f
commit 63bd139913
3 changed files with 9 additions and 9 deletions

View File

@ -906,7 +906,7 @@ export default {
handleDelete(row) { handleDelete(row) {
const ids = row.id || this.ids; const ids = row.id || this.ids;
this.$modal this.$modal
.confirm('是否确认删除居住社区信息编号为"' + ids + '"的数据项?') .confirm('是否确认删除居住社区信息的数据项?')
.then(function () { .then(function () {
return delCommunityInfo(ids); return delCommunityInfo(ids);
}) })

View File

@ -580,7 +580,7 @@ export default {
/** 删除按钮操作 */ /** 删除按钮操作 */
handleDelete(row) { handleDelete(row) {
const ids = row.id || this.ids; const ids = row.id || this.ids;
this.$modal.confirm('是否确认删除被护理人基本信息编号为"' + ids + '"的数据项?').then(function() { this.$modal.confirm('是否确认删除被护理人基本信息的数据项?').then(function() {
return delPatientArchives(ids); return delPatientArchives(ids);
}).then(() => { }).then(() => {
this.getList(); this.getList();

View File

@ -1647,7 +1647,7 @@ export default {
handleDelete(row) { handleDelete(row) {
const ids = row.id || this.ids; const ids = row.id || this.ids;
this.$modal this.$modal
.confirm('是否确认删除护理站人员信息编号为"' + ids + '"的数据项?') .confirm('是否确认删除护理站人员信息的数据项?')
.then(function () { .then(function () {
return delPerson(ids); return delPerson(ids);
}) })