Browse Source

删除参数调整-数组

newMaster
liuzhipeng 4 months ago
parent
commit
33c4f0e6f1
  1. 2
      acupuncture-ui/src/views/followFile/index.vue
  2. 2
      acupuncture-ui/src/views/followFile/subjects.vue
  3. 2
      acupuncture-ui/src/views/followFile/work.vue
  4. 2
      acupuncture-ui/src/views/medicalFile/index.vue
  5. 2
      acupuncture-ui/src/views/patientFile/index.vue

2
acupuncture-ui/src/views/followFile/index.vue

@ -403,7 +403,7 @@ export default {
handleDelete(row) {
const idList = row.id ? [row.id] : this.ids;
this.$modal
.confirm("是否确认删除当前选择的患者数据?")
.confirm("是否确认删除当前选择的数据?")
.then(function () {
return followupDel({ idList: idList });
})

2
acupuncture-ui/src/views/followFile/subjects.vue

@ -352,7 +352,7 @@ export default {
handleDelete(row) {
const idList = row.id ? [row.id] : this.ids;
this.$modal
.confirm("是否确认删除当前选择的患者数据?")
.confirm("是否确认删除当前选择的数据?")
.then(function () {
return patientDel({ idList: idList });
})

2
acupuncture-ui/src/views/followFile/work.vue

@ -353,7 +353,7 @@ export default {
handleDelete(row) {
const idList = row.id ? [row.id] : this.ids;
this.$modal
.confirm("是否确认删除当前选择的患者数据?")
.confirm("是否确认删除当前选择的数据?")
.then(function () {
return patientDel({ idList: idList });
})

2
acupuncture-ui/src/views/medicalFile/index.vue

@ -1596,7 +1596,7 @@ export default {
handleDelete(row) {
const idList = row.id ? [row.id] : this.ids;
this.$modal
.confirm("是否确认删除当前选择的患者数据?")
.confirm("是否确认删除当前选择的数据?")
.then(function () {
return treatmentDel({
idList: idList,

2
acupuncture-ui/src/views/patientFile/index.vue

@ -654,7 +654,7 @@ export default {
handleDelete(row) {
const idList = row.id ? [row.id] : this.ids;
this.$modal
.confirm("是否确认删除当前选择的患者数据?")
.confirm("是否确认删除当前选择的数据?")
.then(function () {
return patientDel({ idList: idList });
})

Loading…
Cancel
Save