diff --git a/src/views/inspection/cw/inspectionCw.vue b/src/views/inspection/cw/inspectionCw.vue
index baf1e6f..7371d1b 100644
--- a/src/views/inspection/cw/inspectionCw.vue
+++ b/src/views/inspection/cw/inspectionCw.vue
@@ -38,20 +38,20 @@
-
-
- 导出
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -396,7 +396,7 @@ export default {
this.queryParams.pageNo = 1
this.queryParams.pageSize = 500
this.$modal.msgError("系统故障,联系管理员")
- // const data = await exportManagement(this.queryParams)
+ const data = await exportManagement(this.queryParams)
// this.$download.excel(data, `救援财务报表_${new Date().getTime()}.xlsx`)
} catch {
} finally {
diff --git a/src/views/partner/device.vue b/src/views/partner/device.vue
index c7d2c64..991d589 100644
--- a/src/views/partner/device.vue
+++ b/src/views/partner/device.vue
@@ -238,7 +238,7 @@
this.queryParams.params["endNextCheckTime"] = this.daterangeNextCheckTime[1];
}
listEquInfo(this.queryParams).then(response => {
- this.equInfoList = response.rows;
+ this.equInfoList = response.data.records;
this.total = response.total;
this.loading = false;
});
diff --git a/src/views/partner/file/file.vue b/src/views/partner/file/file.vue
index 380bee7..71bd6c5 100644
--- a/src/views/partner/file/file.vue
+++ b/src/views/partner/file/file.vue
@@ -232,8 +232,8 @@
this.queryParams.params["endWarnTime"] = this.daterangeWarnTime[1];
}
listInspectionFile(this.queryParams).then(response => {
- this.inspectionFileList = response.rows;
- this.queryParams.fatherId = response.rows[0].fatherId;
+ this.inspectionFileList = response.data.records;
+ this.queryParams.fatherId = response.data.records[0].fatherId;
this.total = response.total;
this.loading = false;
});