zyejMAll-mobile/sheep/api/system/area.js

14 lines
217 B
JavaScript
Raw Normal View History

2024-08-07 10:31:42 +08:00
import request from '@/sheep/request';
const AreaApi = {
// 获得地区树
getAreaTree: () => {
return request({
url: '/system/area/tree',
2024-08-07 21:40:27 +08:00
method: 'GET',
2024-08-07 10:31:42 +08:00
});
},
};
export default AreaApi;