whj před 1 rokem
rodič
revize
9050411766

+ 3 - 1
src/views/repair/application-form/RepairForm.vue

@@ -611,9 +611,11 @@ export default {
       const parameter = {
         ...this.queryParam,
         searchStartTime: this.queryParam.searchStartTime,
-        searchEndTime: this.queryParam.searchEndTime
+        searchEndTime: this.queryParam.searchEndTime,
+        repairIds: this.selectedRows.map(item => item.id)
       }
       exportRepairApplicationForm(parameter).then(file => {
+        this.$refs.table.clearSelected()
         this.BaseTool.UPLOAD.downLoadExportExcel(file)
       })
     },