1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| import request from "@/common/untils/request.js"
|
| // 获取系统设置
| export function getSystemSet(data) {
| return request({
| url: "/api/system/getSystemSet",
| method: "get",
| data,
| });
| }
| // 保存系统设置
| export function saveSystemSet(data) {
| return request({
| url: "/api/system/saveSystemSet",
| method: "post",
| data,
| });
| }
|
|