From 37b4f209ee57db1677c448a72fce5699f6b9209e Mon Sep 17 00:00:00 2001
From: spring <2396852758@qq.com>
Date: 星期一, 17 二月 2025 09:36:11 +0800
Subject: [PATCH] 修改分页
---
src/api/system/customer.js | 34 +++++++++++++++++-----------------
1 files changed, 17 insertions(+), 17 deletions(-)
diff --git a/src/api/system/customer.js b/src/api/system/customer.js
index f64f3e2..90f7330 100644
--- a/src/api/system/customer.js
+++ b/src/api/system/customer.js
@@ -1,35 +1,35 @@
-import request from '@/utils/request'
+import request from "@/utils/request";
import { parseStrEmpty } from "@/utils/ruoyi";
// 鏌ヨ瀹㈡埛鍒楄〃
export function selectCustomPageList(query) {
return request({
- url: '/system/user/selectCustomPageList',
- method: 'get',
- params: query
- })
+ url: "/system/user/selectCustomPageList",
+ method: "get",
+ params: query,
+ });
}
// 鏂板瀹㈡埛
export function addCustom(query) {
return request({
- url: '/system/user/addCustom',
- method: 'post',
- params: query
- })
+ url: "/system/user/addCustom",
+ method: "post",
+ params: query,
+ });
}
// 淇敼瀹㈡埛
export function upCustom(query) {
return request({
- url: '/system/user/upCustom',
- method: 'post',
- params: query
- })
+ url: "/system/user/upCustom",
+ method: "post",
+ params: query,
+ });
}
// 鍒犻櫎瀹㈡埛
export function delCustomById(query) {
return request({
- url: '/system/user/delCustomById',
- method: 'post',
- params: query
- })
+ url: "/system/user/delCustomById",
+ method: "post",
+ params: query,
+ });
}
--
Gitblit v1.9.3