| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 | 
							- import request from '@/utils/request'
 
- // 查询字典数据列表
 
- export function listData(query) {
 
-   return request({
 
-     url: '/system/dict/data/list',
 
-     method: 'get',
 
-     params: query
 
-   })
 
- }
 
- // 查询字典数据详细
 
- export function getData(dictCode) {
 
-   return request({
 
-     url: '/system/dict/data/' + dictCode,
 
-     method: 'get'
 
-   })
 
- }
 
- // 根据字典类型查询字典数据信息
 
- export function getDicts(dictType) {
 
-   return request({
 
-     url: '/system/dict/data/type/' + dictType,
 
-     method: 'get'
 
-   })
 
- }
 
- // 根据资产类别查询设备分类
 
- export function getDeviceType(assetType) {
 
-   return request({
 
-     url: '/system/dict/data/deviceType/' + assetType,
 
-     method: 'get'
 
-   })
 
- }
 
- // 新增字典数据
 
- export function addData(data) {
 
-   return request({
 
-     url: '/system/dict/data',
 
-     method: 'post',
 
-     data: data
 
-   })
 
- }
 
- // 修改字典数据
 
- export function updateData(data) {
 
-   return request({
 
-     url: '/system/dict/data',
 
-     method: 'put',
 
-     data: data
 
-   })
 
- }
 
- // 删除字典数据
 
- export function delData(dictCode) {
 
-   return request({
 
-     url: '/system/dict/data/' + dictCode,
 
-     method: 'delete'
 
-   })
 
- }
 
 
  |