11 lines
215 B
TypeScript
11 lines
215 B
TypeScript
![]() |
import request from '@/utils/request';
|
||
|
|
||
|
|
||
|
/**
|
||
|
* 地市
|
||
|
*/
|
||
|
interface getChildParams {
|
||
|
pId: string | number;
|
||
|
}
|
||
|
|
||
|
export const getChild = (params: getChildParams) => request.get(`/v1/dictRegion/getChild`, {params});
|