You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
216 B

7 months ago
  1. import request from '@/sheep/request';
  2. const AreaApi = {
  3. // 获得地区树
  4. getAreaTree: () => {
  5. return request({
  6. url: '/system/area/tree',
  7. method: 'GET'
  8. });
  9. },
  10. };
  11. export default AreaApi;