import request from '@/utils/request' /* 获取全部字典数据 */ export function getAllDict () { return request({ url: '/sys/dict/getAllDict', method: 'post' }) } export function getQlxxDictList (data) { return request({ url: '/sys/dict/getQlxxDictList', method: 'post', data, showLoading: true }) } /* 获取字典子级列表 */ export function getChildDictList (bsmDict) { return request({ url: '/sys/dict/getChildDictList', method: 'get', params: { bsmDict: bsmDict } }) } /* 编辑字典数据 */ export function editDictNode (data) { return request({ url: '/sys/dict/editDictNode', method: 'post', data, showLoading: true, loadingTarget: '正在提交中...' }) }