Commit db06dac2 authored by 小费同学阿's avatar 小费同学阿 💬

67559 全局,返回二次提示修改

parent 695f4339
...@@ -477,7 +477,7 @@ export default { ...@@ -477,7 +477,7 @@ export default {
exportList.medicalId = this.ids.reverse() exportList.medicalId = this.ids.reverse()
console.log('exportListaaaaaaaaaaaaaaaaaaaaaaaaa' + exportList.medicalId) console.log('exportListaaaaaaaaaaaaaaaaaaaaaaaaa' + exportList.medicalId)
console.log('this.ids' + this.ids.reverse()) console.log('this.ids' + this.ids.reverse())
this.download('business/record/export', exportList, `病历管理-${this.exportFormatTime(new Date())}.xlsx`).then(res => { this.download('business/record/export', { exportId: this.ids.join(',') }, `病历管理-${this.exportFormatTime(new Date())}.xlsx`).then(res => {
this.$refs.table.clearSelection() this.$refs.table.clearSelection()
this.ids = [] this.ids = []
}) })
......
...@@ -550,7 +550,7 @@ export default { ...@@ -550,7 +550,7 @@ export default {
if (this.ids.length !== 0) { if (this.ids.length !== 0) {
const exportTable = {} const exportTable = {}
exportTable.inHospitalIds = this.ids exportTable.inHospitalIds = this.ids
this.download('business/hospital/export', exportTable, `住院管理-${this.exportFormatTime(new Date())}.xlsx`).then(res => { this.download('business/hospital/export', { exportId: this.ids.join(',') }, `住院管理-${this.exportFormatTime(new Date())}.xlsx`).then(res => {
this.$refs.table.clearSelection() this.$refs.table.clearSelection()
}) })
} else { } else {
......
...@@ -535,7 +535,7 @@ export default { ...@@ -535,7 +535,7 @@ export default {
if (this.ids.length !== 0) { if (this.ids.length !== 0) {
const exportTable = {} const exportTable = {}
exportTable.regIds = this.ids exportTable.regIds = this.ids
this.download('business/register/export', exportTable, `挂号管理-${this.exportFormatTime(new Date())}.xlsx`) this.download('business/register/export', { exportId: this.ids.join(',') }, `挂号管理-${this.exportFormatTime(new Date())}.xlsx`)
.then(res => { .then(res => {
this.$refs.table.clearSelection() this.$refs.table.clearSelection()
this.ids = [] this.ids = []
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment