From 46b328deebfc604ecfe6e34afe08403d95356614 Mon Sep 17 00:00:00 2001
From: guoshipeng <3194674006@qq.com>
Date: Wed, 12 Apr 2023 09:52:51 +0800
Subject: [PATCH] 1、设备详情显示修改 2、监测因子对比改成监测因子相关性对比 3、监测因子相关性对比显示修改

---
 src/views/dailyreport/index.vue |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/src/views/dailyreport/index.vue b/src/views/dailyreport/index.vue
index aba7a46..475e685 100644
--- a/src/views/dailyreport/index.vue
+++ b/src/views/dailyreport/index.vue
@@ -882,12 +882,16 @@
         upObj.time = this.upTime
         var objJson = JSON.stringify(upObj)
         console.log(objJson, 'objJson')
+        // const formData = new FormData()
+        // formData.append(`objJson`, objJson)
         // ������������
         this.openBox = false
         this.$request({
           url: 'uav/getUavDaily',
+          // data: formData,
           data: { objJson: objJson },
-          method: 'post'
+          method: 'post',
+          contentType: 'application/json'
         }).then(res => {
           this.isDisplay = false
           if (res.code === 0) {
@@ -1397,7 +1401,6 @@
     },
     // ������������������������upload
     handleChange1(file, fileList) {
-      // console.log(file, fileList)
       this.fileList1 = fileList
       this.fileLists[0] = fileList
     },

--
Gitblit v1.8.0