From fcb6cfdbdb5fbce7d02d8513719237e65a72f474 Mon Sep 17 00:00:00 2001
From: odc.xiaohui <xiaohui@Q1>
Date: 星期四, 09 三月 2023 16:45:20 +0800
Subject: [PATCH] 修改报案人材料图片

---
 src/api/common.js |   16 ++++++++++------
 1 files changed, 10 insertions(+), 6 deletions(-)

diff --git a/src/api/common.js b/src/api/common.js
index fd002a4..c914421 100644
--- a/src/api/common.js
+++ b/src/api/common.js
@@ -10,12 +10,8 @@
 
 
 export function getImgUrl(val) {
-    return request({
-        url: '/minio/getUrl',
-        method: 'get',
-        params: {
-            fileName: val
-        }
+    return new Promise(resolve => {
+        resolve("/minio/img/" + val)
     })
 }
 
@@ -33,3 +29,11 @@
         method: 'get',
     })
 }
+
+export function checkPass(params) {
+    return request({
+        url: `/report/audit`,
+        method: 'post',
+        data: params
+    })
+}
\ No newline at end of file

--
Gitblit v1.8.0