You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tanghe-report/report-ui/src/api/dict.js

76 lines
1.3 KiB
JavaScript

import request from '@/utils/request'
// 字典管理查询
export function getDictList(params) {
return request({
url: '/gaeaDict/pageList',
method: 'GET',
params,
})
}
// 获取单个字典数据
export function getDictItems(dictCode) {
return request({
url: `/gaeaDict/select/${dictCode}`,
method: 'get',
})
}
// 字典管理新增
export function dictAdd(data) {
return request({
url: '/gaeaDict',
method: 'POST',
data,
})
}
// 字典管理编辑
export function dictEdit(data) {
return request({
url: '/gaeaDict',
method: 'PUT',
data,
})
}
export function dictDetail(data) {
return request({
url: '/gaeaDict/' + data.id,
method: 'get',
params: { accessKey: data.accessKey },
})
}
// 字典管理批量删除
export function dictsDelect(data) {
return request({
url: `/gaeaDict/delete/batch`,
method: 'POST',
data,
})
}
/**
* 刷新数据字典
* @param data
*/
export function freshDict(data) {
return request({
url: '/gaeaDict/freshDict',
method: 'POST',
data,
})
}
// 获取国家省份城市
export function queryCountryCity(value) {
return request({
url: `/countryCity/select`,
method: 'get',
params: {
value: value,
},
})
}
export default { dictDetail, getDictList, dictAdd, dictEdit, dictsDelect }