10 lines
185 B
JavaScript
10 lines
185 B
JavaScript
import http from './index.js';
|
|
|
|
// 读取字典数据
|
|
export const getDictionaryOptions = (params) => http.get('/system/dict-data', {params})
|
|
|
|
|
|
export default {
|
|
getDictionaryOptions
|
|
}
|