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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
| import request, {download, requestType} from "@/utils/request";
| import {BaseEntityInterface} from "@/utils/globalInterface";
|
| export interface ConfigI extends BaseEntityInterface {
| configId?: number,
| configName?: string,
| configKey?: string,
| configValue?: string,
| configType?: string,
| createBy?: string,
| createTime?: string,
| updateBy?: string,
| updateTime?: string,
| remark?: string
| }
|
| // 查询参数列表
| export const listConfig: requestType = (query) => {
| return request({
| url: '/system/config/list',
| method: 'get',
| params: query
| })
| }
|
| // 查询参数详细
| export const getConfig: requestType = (configId) => {
| return request({
| url: '/system/config/' + configId,
| method: 'get'
| })
| }
|
| // 根据参数键名查询参数值
| export const getConfigKey: requestType = (configKey) => {
| return request({
| url: '/system/config/configKey/' + configKey,
| method: 'get'
| })
| }
|
| // 新增参数配置
| export const addConfig: requestType = (data) => {
| return request({
| url: '/system/config',
| method: 'post',
| data: data
| })
| }
|
| // 修改参数配置
| export const updateConfig: requestType = (data) => {
| return request({
| url: '/system/config',
| method: 'put',
| data: data
| })
| }
|
| // 删除参数配置
| export const delConfig: requestType = (configId) => {
| return request({
| url: '/system/config/' + configId,
| method: 'delete'
| })
| }
|
| // 刷新参数缓存
| export const refreshCache: requestType = () => {
| return request({
| url: '/system/config/refreshCache',
| method: 'delete'
| })
| }
|
| /**
| * 导出参数配置
| */
| export const exportConfig: requestType = (query) => {
| return new Promise<any>(() => {
| download('/system/config/export', query);
| })
| }
|
|