zhuo
2025-04-18 68f8cfbf950f7a751be125af39897e2e42231764
src/views/CNAS/resourceDemand/device/component/equipmentMaintenance.vue
@@ -62,7 +62,7 @@
<script>
import {
  addDeviceMaintenance,
  deleteDeviceMaintenance,
  deleteDeviceMaintenance, exportDeviceMaintenance,
  selectDeviceMaintenancePage
} from "@/api/cnas/resourceDemand/device";
import limsTable from "@/components/Table/lims-table.vue";
@@ -215,6 +215,14 @@
      });
    },
    openHandleOut () {
      this.outLoading = true
      exportDeviceMaintenance({
        deviceId: this.clickNodeVal.value
      }).then(res => {
        this.outLoading = false
        const blob = new Blob([res], { type: 'application/octet-stream' });
        this.$download.saveAs(blob, '设备维护保养.doc')
      })
    },
    handleDeleteClick(row) {