1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| import request from '@/utils/request'
|
| // 获取系统名称信息
| export function systemName(query) {
| return request({
| url: '/system/nameconfig',
| method: 'get',
| })
| }
|
| // 保存系统名称设置
| export function systemNameSave(data) {
| return request({
| url: '/system/nameconfig',
| method: 'post',
| data: data
| })
| }
|
|