7 lines
162 B
TypeScript
7 lines
162 B
TypeScript
import httpClient from "../utils/request";
|
|
|
|
export const getDict = (dictType: string) =>
|
|
httpClient.request({
|
|
url: `/mini-app/dict/type/${dictType}`,
|
|
});
|