Administrator
2022-04-11 79d9fc857559982b00b68b2d709807bdc4cd286f
src/api/system/dict.js
@@ -1,89 +1,97 @@
import request from '@/router/axios';
export const getList = (current, size, params) => {
  return request({
    url: '/api/blade-system/dict/list',
    method: 'get',
    params: {
      ...params,
      current,
      size,
    }
  })
    return request({
        url: '/api/blade-system/dict/list',
        method: 'get',
        params: {
            ...params,
            current,
            size,
        }
    })
}
export const getParentList = (current, size, params) => {
  return request({
    url: '/api/blade-system/dict/parent-list',
    method: 'get',
    params: {
      ...params,
      current,
      size,
    }
  })
    return request({
        url: '/api/blade-system/dict/parent-list',
        method: 'get',
        params: {
            ...params,
            current,
            size,
        }
    })
}
export const getChildList = (current, size, parentId, params) => {
  return request({
    url: '/api/blade-system/dict/child-list',
    method: 'get',
    params: {
      ...params,
      current,
      size,
      parentId: parentId,
    }
  })
    return request({
        url: '/api/blade-system/dict/child-list',
        method: 'get',
        params: {
            ...params,
            current,
            size,
            parentId: parentId,
        }
    })
}
export const remove = (ids) => {
  return request({
    url: '/api/blade-system/dict/remove',
    method: 'post',
    params: {
      ids,
    }
  })
    return request({
        url: '/api/blade-system/dict/remove',
        method: 'post',
        params: {
            ids,
        }
    })
}
export const add = (row) => {
  return request({
    url: '/api/blade-system/dict/submit',
    method: 'post',
    data: row
  })
    return request({
        url: '/api/blade-system/dict/submit',
        method: 'post',
        data: row
    })
}
export const update = (row) => {
  return request({
    url: '/api/blade-system/dict/submit',
    method: 'post',
    data: row
  })
    return request({
        url: '/api/blade-system/dict/submit',
        method: 'post',
        data: row
    })
}
export const getDict = (id) => {
  return request({
    url: '/api/blade-system/dict/detail',
    method: 'get',
    params: {
      id,
    }
  })
    return request({
        url: '/api/blade-system/dict/detail',
        method: 'get',
        params: {
            id,
        }
    })
}
export const getDictTree = () => {
  return request({
    url: '/api/blade-system/dict/tree?code=DICT',
    method: 'get'
  })
    return request({
        url: '/api/blade-system/dict/tree?code=DICT',
        method: 'get'
    })
}
export const getDictionary = (params) => {
  return request({
    url: '/api/blade-system/dict/dictionary',
    method: 'get',
    params,
  })
    return request({
        url: '/api/blade-system/dict/dictionary',
        method: 'get',
        params,
    })
}
export const getDictionaryBiz = (params) => {
    return request({
        url: '/api/blade-system/dict-biz/dictionary',
        method: 'get',
        params,
    })
}