GuLiMmo
2024-01-10 ce91922852ee1ea2bf7631071c0cfd155b84e01a
1
2
3
4
5
6
7
8
9
10
11
import request from '@/axios';
 
export const getDict = (code) => {
  return request({
    url: '/blade-system/dict/dictionary',
    method: 'get',
    params: {
        code
    }
  })
};