From e1699c4851f6ca397cd0ad1ff63f32c737654836 Mon Sep 17 00:00:00 2001
From: 罗广辉 <guanghui.luo@foxmail.com>
Date: Wed, 02 Apr 2025 19:14:54 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'
---
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