GuLiMmo
2024-01-23 1e36aba92dc35c1ea98e5585ff8011376d7f71b5
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
    }
  })
};