From 696c62b5bc19065fdc3632f7c2daf7360992a183 Mon Sep 17 00:00:00 2001 From: 张钢 <floatgang@163.com> Date: 星期五, 23 八月 2024 13:34:40 +0800 Subject: [PATCH] 修改apk下载链接的域名 --- ruoyi-ui/src/api/clean/index.js | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++---- 1 files changed, 55 insertions(+), 4 deletions(-) diff --git a/ruoyi-ui/src/api/clean/index.js b/ruoyi-ui/src/api/clean/index.js index e1ad97d..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 }) @@ -69,11 +69,62 @@ } -//涓婁紶鏂囦欢 +//瀵煎叆 export function enload(data) { return request({ - url: '/family/property/importData', + url: '/zfClean/importData', method: 'post', 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