From 2800fa4f32f3900509cb4d6eefaf2bfaf54efdd7 Mon Sep 17 00:00:00 2001
From: 罗广辉 <guanghui.luo@foxmail.com>
Date: Mon, 21 Apr 2025 18:29:09 +0800
Subject: [PATCH] fix: 天气显示

---
 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