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