This commit is contained in:
闫晓茹 2022-11-17 13:36:42 +08:00
parent e69dd3b500
commit bd07b0cfd7

View File

@ -1190,16 +1190,16 @@ export default {
this.$modal this.$modal
.confirm("是否确认删除此护理站护理项目?") .confirm("是否确认删除此护理站护理项目?")
.then(function () { .then(function () {
delNurseItem(ids); return delNurseItem(ids);
}) })
.then(() => { .then(() => {
var obj = { pictureUrlList: [] }; var obj = { pictureUrlList: [] };
obj.pictureUrlList.push(row.itemPictureUrl); obj.pictureUrlList.push(row.itemPictureUrl);
updatePicture(obj).then((res) => { updatePicture(obj).then((res) => {
}); });
this.$modal.msgSuccess("删除成功");
this.getList(); this.getList();
this.$modal.msgSuccess("删除成功");
}) })
.catch(() => {}); .catch(() => {});
}, },