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

14 lines
216 B
JavaScript
Raw Normal View History

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