12345678910111213141516171819 |
- import req from '../../utils/request.js'
- /**
- * 获取字典信息
- * @param {Object} data
- */
- export function getDictInfoByType(data) {
- return req.request({
- url: '/system/dict/data/type/' + data,
- method: 'GET',
- })
- }
- export function getDictInfoByTypes(data) {
- return req.request({
- url: '/system/dict/data/dictTypes',
- method: 'POST',
- data: data
- })
- }
|