diff --git a/src/api/order/order.js b/src/api/order/order.js index 9c7e600..83bf693 100644 --- a/src/api/order/order.js +++ b/src/api/order/order.js @@ -9,7 +9,7 @@ } const order_area = (Str, data) => { - return instance.get(`/ext/area/list?${Str}`, data) + return instance.get(`/sys/area/list?${Str}`, data) } // 详情 diff --git a/src/api/order/order.js b/src/api/order/order.js index 9c7e600..83bf693 100644 --- a/src/api/order/order.js +++ b/src/api/order/order.js @@ -9,7 +9,7 @@ } const order_area = (Str, data) => { - return instance.get(`/ext/area/list?${Str}`, data) + return instance.get(`/sys/area/list?${Str}`, data) } // 详情 diff --git a/src/api/system/area.js b/src/api/system/area.js index 343579b..3b707c2 100644 --- a/src/api/system/area.js +++ b/src/api/system/area.js @@ -6,7 +6,7 @@ // 区域查询 export function getAreaListPage(params) { return request({ - url: 'ext/area/listPage', + url: 'sys/area/listPage', method: 'get', params }) @@ -25,7 +25,7 @@ // 区域查询 export function getAreaList(pid) { return request({ - url: 'ext/area/list', + url: 'sys/area/list', method: 'get', params: { pid: pid @@ -36,7 +36,7 @@ // 区域查询,非分页,加载树用 export function getAreaTree(params) { return request({ - url: 'ext/area/list', + url: 'sys/area/list', method: 'get', params })