From 3a8d7ebd8475106965081c1dde022ea3642e9d93 Mon Sep 17 00:00:00 2001
From: chenyao <1219716595@qq.com>
Date: Mon, 14 Apr 2025 17:56:28 +0800
Subject: [PATCH] feat: 当前任务和历史任务分页传参改成地址后传参

---
 src/api/system/param.js |   78 +++++++++++++++++++-------------------
 1 files changed, 39 insertions(+), 39 deletions(-)

diff --git a/src/api/system/param.js b/src/api/system/param.js
index be23977..baa2f2f 100644
--- a/src/api/system/param.js
+++ b/src/api/system/param.js
@@ -1,49 +1,49 @@
-import request from '@/axios';
+import request from '@/axios'
 
 export const getList = (current, size, params) => {
-  return request({
-    url: '/blade-system/param/list',
-    method: 'get',
-    params: {
-      ...params,
-      current,
-      size,
-    },
-  });
-};
+	return request({
+		url: '/blade-system/param/list',
+		method: 'get',
+		params: {
+			...params,
+			current,
+			size,
+		},
+	})
+}
 
 export const getDetail = id => {
-  return request({
-    url: '/blade-system/param/detail',
-    method: 'get',
-    params: {
-      id,
-    },
-  });
-};
+	return request({
+		url: '/blade-system/param/detail',
+		method: 'get',
+		params: {
+			id,
+		},
+	})
+}
 
 export const remove = ids => {
-  return request({
-    url: '/blade-system/param/remove',
-    method: 'post',
-    params: {
-      ids,
-    },
-  });
-};
+	return request({
+		url: '/blade-system/param/remove',
+		method: 'post',
+		params: {
+			ids,
+		},
+	})
+}
 
 export const add = row => {
-  return request({
-    url: '/blade-system/param/submit',
-    method: 'post',
-    data: row,
-  });
-};
+	return request({
+		url: '/blade-system/param/submit',
+		method: 'post',
+		data: row,
+	})
+}
 
 export const update = row => {
-  return request({
-    url: '/blade-system/param/submit',
-    method: 'post',
-    data: row,
-  });
-};
+	return request({
+		url: '/blade-system/param/submit',
+		method: 'post',
+		data: row,
+	})
+}

--
Gitblit v1.9.3