From 620be424cd664037b9f15f1b12ec74d2048aa2c1 Mon Sep 17 00:00:00 2001
From: 鲁班七号 <9159450+luban-71@user.noreply.gitee.com>
Date: 星期四, 05 一月 2023 15:56:47 +0800
Subject: [PATCH] 顶部导航展示优化。

---
 src/api/specialCheck.js |   56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 56 insertions(+), 0 deletions(-)

diff --git a/src/api/specialCheck.js b/src/api/specialCheck.js
index 822313e..4d84ddb 100644
--- a/src/api/specialCheck.js
+++ b/src/api/specialCheck.js
@@ -96,3 +96,59 @@
         data
     })
 }
+
+// 点击栏目数字跳转到监管机构抽查情况
+export function getSpotCheckRecord(data){
+    return request({
+        headers:{
+            'Authorization':getToken()
+        },
+        url:process.env.BASE_API+ '/taskSpotCheck/select/getSpotCheckRecordWithHiddendangerCount',
+        method:'post',
+        data
+    })
+}
+
+// 上传文件
+export function uploadFile(data){
+    return request({
+        headers:{
+            'Authorization':getToken()
+        },
+        url:process.env.BASE_API+ '/checkTask/upload/taskDescFile',
+        method:'post',
+        data
+    })
+}
+
+// 删除文件
+export function delateFile(data){
+    return request({
+        headers:{
+            'Authorization':getToken()
+        },
+        url:process.env.BASE_API+ '/checkTask/delete/deleteTaskDescFile',
+        method:'post',
+        data
+    })
+}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

--
Gitblit v1.9.2