1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
| import request from "@/utils/request";
| import { parseStrEmpty } from "@/utils/ruoyi";
|
| // 查询客户列表
| export function selectCustomPageList(query) {
| return request({
| url: "/system/user/selectCustomPageList",
| method: "get",
| params: query,
| });
| }
| // 新增客户
| export function addCustom(query) {
| return request({
| url: "/system/user/addCustom",
| method: "post",
| params: query,
| });
| }
| // 修改客户
| export function upCustom(query) {
| return request({
| url: "/system/user/upCustom",
| method: "post",
| params: query,
| });
| }
| // 删除客户
| export function delCustomById(query) {
| return request({
| url: "/system/user/delCustomById",
| method: "post",
| params: query,
| });
| }
|
|