From 81065e2e4c933db33e95e6a8183bf62c5e731643 Mon Sep 17 00:00:00 2001 From: khalil Date: Fri, 30 May 2025 16:36:43 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=86=E5=8C=BA-=E5=9C=B0=E5=8C=BA-=E5=85=AC?= =?UTF-8?q?=E5=85=B1=E7=BB=84=E4=BB=B6select?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/partition/regionInfo.js | 16 +++ src/views/common/partitionRegionSelect.vue | 108 +++++++++++++++++++++ 2 files changed, 124 insertions(+) create mode 100644 src/api/partition/regionInfo.js create mode 100644 src/views/common/partitionRegionSelect.vue diff --git a/src/api/partition/regionInfo.js b/src/api/partition/regionInfo.js new file mode 100644 index 0000000..67418cf --- /dev/null +++ b/src/api/partition/regionInfo.js @@ -0,0 +1,16 @@ +import request from '@/utils/request'; + +export const listByPartitionId = query => { + return request({ + url: '/admin/regionInfo/listByPartitionId', + method: 'get', + params: query + }); +}; +export const listAll = query => { + return request({ + url: '/admin/regionInfo/list', + method: 'get', + params: query + }); +}; \ No newline at end of file diff --git a/src/views/common/partitionRegionSelect.vue b/src/views/common/partitionRegionSelect.vue new file mode 100644 index 0000000..f4625d3 --- /dev/null +++ b/src/views/common/partitionRegionSelect.vue @@ -0,0 +1,108 @@ + + + \ No newline at end of file