From 3db80e5ff793b611c57dde1fca0e75057a23fd04 Mon Sep 17 00:00:00 2001 From: 86156 <823267011@qq.com> Date: Mon, 20 Apr 2026 15:57:26 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=BC=BA=E5=8A=9E=E5=85=AC=EF=BC=8C?= =?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=AE=A1=E6=89=B9=EF=BC=8C=E7=BC=BA=E5=B0=91?= =?UTF-8?q?=E7=94=B5=E5=AD=90=E7=AD=BE=E7=AB=A0=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/fad/city.js | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 api/fad/city.js diff --git a/api/fad/city.js b/api/fad/city.js new file mode 100644 index 0000000..e5a664b --- /dev/null +++ b/api/fad/city.js @@ -0,0 +1,19 @@ +import request from '@/util/oaRequest' + +// 分页查询城市列表,支持国家/城市模糊搜索 +export function listCities(params) { + return request({ + url: '/oa/city/list', + method: 'get', + params + }) +} + +// 新增城市 +export function addCity(data) { + return request({ + url: '/oa/city', + method: 'post', + data + }) +}