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