From e14358f85a7d32a753225f253ff223d17cf36c25 Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Wed, 02 Apr 2025 19:10:00 +0800
Subject: [PATCH] style: 风格处理
---
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