chat.ts 227 B

123456789101112
  1. import { handle } from '../../index'
  2. const suffix = 'sww-api'
  3. // 查询字典项
  4. export const dictGetAllSysDictsByValue = (params) => handle({
  5. url: `/${suffix}/api/dict/getAllSysDictsByValue`,
  6. method: 'get',
  7. params
  8. })