Blame view

HHECS.Web/src/api/common.js 188 Bytes
胡菁 authored
1
2
3
import request from '@/utils/request'

// 数据字典
胡菁 authored
4
5
6
7
8
9
10
export function getDictDetails(data) {
  return request({
    url: '/api/System/GetDictDetails',
    method: 'post',
    data
  })
}