From 80e0b09695493b7f811f746dfb7158244088afe3 Mon Sep 17 00:00:00 2001 From: feige <791364011@qq.com> Date: 星期日, 22 九月 2024 11:02:56 +0800 Subject: [PATCH] 修改了多个bug --- ruoyi-ui/src/api/clean/index.js | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 files changed, 53 insertions(+), 2 deletions(-) diff --git a/ruoyi-ui/src/api/clean/index.js b/ruoyi-ui/src/api/clean/index.js index faa4bf8..5ce77fd 100644 --- a/ruoyi-ui/src/api/clean/index.js +++ b/ruoyi-ui/src/api/clean/index.js @@ -28,7 +28,7 @@ // 鍒犻櫎璧勪骇淇℃伅 export function delClean(Ids) { return request({ - url: '/zfClean' + Ids, + url: '/zfClean/' + Ids, method: 'delete' }) } @@ -43,7 +43,7 @@ //涓婁紶鏂囦欢 export function uploadPic(data) { return request({ - url: '/common/upload', + url: '/common/uploads', method: 'post', data: data }) @@ -77,3 +77,54 @@ data: data }) } + +// ------------------------------- +// 鍒嗕韩 +export function share(data) { + return request({ + url: '/zfCleanShare/share', + method: 'post', + data: data + }) +} +// 鏌ョ湅鍒嗕韩缁欒皝浜嗕粈涔堟暟鎹� +export function shareToWho(data,query) { + return request({ + url: '/zfCleanShare/getInfoByUserId', + method: 'post', + data: data, + params: query + }) +} +// 鏌ョ湅璋佸垎浜簡鏁版嵁 +export function getWhoShare(query) { + return request({ + url: '/zfCleanShare/getInfoByShareId', + method: 'get', + params: query + }) +} +// 涓嬭浇鍒嗕韩鐨勬暟鎹� +export function downShareData(data) { + return request({ + url: '/zfCleanShare/downloadDate', + method: 'post', + data: data + }) +} +// 鏀跺洖鍒嗕韩鏁版嵁 +export function deleteShareData(data) { + return request({ + url: '/zfCleanShare/deleteInfoByUserId', + method: 'post', + data: data + }) +} +// 灞曠ず涓嬭浇鐨勬暟鎹� +export function showShareData(query) { + return request({ + url: '/zfCleanShare/all', + method: 'get', + params: query + }) +} -- Gitblit v1.9.1