1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| import request from "@/utils/request";
|
| export function getProvinceListData(params){
| return request({
| url: '/districtByName',
| method:'get',
| params:params || {},
| })
| }
|
| export function getCityListData(params){
| return request({
| url:'/district?type=' + params.type + '&parentname=' + params.parentname + '&parenttype=' + params.parenttype,
| method:'get',
| })
| }
|
|