mall-uniapp/sheep/api/system/area.js

14 lines
227 B
JavaScript
Raw Normal View History

2023-12-16 12:02:31 +00:00
import request2 from '@/sheep/request2';
const AreaApi = {
// 获得地区树
getAreaTree: () => {
return request2({
url: '/app-api/system/area/tree',
method: 'GET'
});
},
};
export default AreaApi;