| 1234567891011121314 |
- import axios from '@/utils/request';
- /**
- * 获取字典数据列表
- * @param {string} type - 字典类型
- * @returns {Promise} - 返回包含字典数据的Promise
- */
- export function getSimpleDictDataList(type) {
- return axios({
- url: "/system/dict-data/simple-list",
- method: 'get',
- data: type ? { dictType: type } : {},
- })
- }
|