• Stars
    star
    866
  • Rank 52,675 (Top 2 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created over 6 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

提供 5 种应用形式的 4 级行政区划选择器 A simple region cascade selector, provide 4 levels Chinese administrative division data

v-region

CircleCI code coverage npm version JavaScript Style Guide npm download

简洁强大的中国行政区划选择器,可选择 “省/直辖市”、“市”、“区/县”、“乡/镇/街道” 4 级行政区域 A simple region cascade selector for vue, provide 4 levels Chinese administrative division data

行政区划数据源更新日期:2022年05月18日

如果你的项目正在使用 vue 2.x 版本,请使用 v-region 2.x 版本

文档与实例(Documentation and Examples)

更多的文档与实例请浏览(Explorer on)

功能特性(Features)

  • “省/直辖市”、“市”、“区/县”、“乡/镇/街道” 4 级行政区域选择
  • 丰富的使用形式,提供了
    • 下拉列表级联模式 RegionSelects
    • 分组模式 RegionGroup
    • 多列竖排模式 RegionColumns
    • 城市选择器模式 RegionCityPicker
    • 纯文本模式 RegionText
  • 分组 Group 与多列 Columns 模式可直接使用核心模块 RegionGroupCore 与 RegionColumnsCore,结合其他交互形式可自由组合更多种多样的使用形式,例如结合抽屉 Drawer、气泡 Popover 或对话框 Dialog 使用
  • 部分模式允许使用作用域插槽 Scoped Slots 的方式自定义触发对象,让组件更方便于整合在业务场景中
  • 除省级以外,其它行政区域级别可通过参数进行切换
  • 支持 “直辖市”、“特别行政区” 、“地级市(直筒子市)” 和 “省辖县/省辖县级市” 等特殊行政区域的数据和内容处理

安装插件(Installation)

https://nodei.co/npm/v-region.png?downloads=true&downloadRank=true&stars=true

npm i v-region

在项目里全局安装所有功能模块

import { createApp } from 'vue'
import App from './app.vue'
import Region from 'v-region'
// 全局安装
// RegionGroup
// RegionSelects
// RegionColumns
// RegionCityPicker
// RegionText
// 模块
const app = createApp(App)
app.use(Region)
app.mount('#app')

自定义全局安装模块

import { RegionSelects } from 'v-region'

const app = createApp(App)
app.component('v-region-selects', RegionSelects)

在页面中使用(Usage)

<template>
  <RegionSelects
    v-model="region"
    @change="change"
  />
</template>

<script setup>
import { ref } from 'vue'
import { RegionSelects } from 'v-region'

const region = ref({
  province: '350000',
  city: '350100',
  area: '350104',
  town: '350104008'
})
function change (data) {
  console.log(data)
}
</script>

License

FOSSA Status

Star数趋势(Stargazers over time)

Stargazers over time

数据源(Data Source)

Region data come from repo: mumuy/data_location

原仓库数据说明 省、市、区数据来自于民政局、国务院公告、国家统计局,确保及时更新和权威; 街道(镇、乡)数据由于数据庞大,各地各级之前公函较多,无法保证及时有效(最新数据2016年7月31日); 数据是以行政区为单位的行政区划数据。行政管理区与行政区存在重合,不予收录; (行政管理区通常包含:***经济特区/经济开发区/高新区/新区/工业区;亦有部分行政管理区升为行政区,需加以区分)

More Repositories

1

SelectPage

A simple style and powerful selector, including ajax remote data, autocomplete, pagination, tags, i18n and keyboard navigation features
JavaScript
731
star
2

SelectMenu

Simple, easily and diversity menu solution
JavaScript
297
star
3

v-uploader

A Vue2 plugin make files upload simple and easier, single file upload with image preview, multiple upload with drag and drop
Vue
238
star
4

v-selectpage

SelectPage for Vue2, list or table view of pagination, use tags for multiple selection, i18n and server side resources supports
JavaScript
236
star
5

v-selectmenu

SelectMenu for Vuejs, A simple, easier and highly customized menu solution
JavaScript
187
star
6

bDialog

Extend the Bootstrap Modal features, making dialog more functions and easier to use, dialog type including modal, alert, mask and toast types
JavaScript
175
star
7

v-dialogs

A simple and clean instructional dialog plugin for Vue2, dialog type including Modal, Alert, Mask and Toast
JavaScript
128
star
8

bTabs

A jQuery plugin open pages in tab, based on Bootstrap2,3
JavaScript
127
star
9

frontend-develops-skill-summary

Development experience with javascript, jQuery, Vuejs, Wechat MiniProgram and so on
122
star
10

bPage

Based on bootstrap style, static page jump can also be asynchronous page processing pagination plugin
JavaScript
102
star
11

v-page

A simple and useful pagination component for vue2 and vue3
JavaScript
90
star
12

v-suggest

A Vue2 plugin for input content suggestions, support using keyboard to navigate and quick pick, it make use experience like search engine input element
JavaScript
75
star
13

v-gallery

A Vue2 plugin for images show in gallery or carousel
Vue
62
star
14

vuepress-login

Add user authorization for VuePress
JavaScript
41
star
15

v-ztree

A simple tree for Vue2, support single or multiple(check) select tree, and support server side data
Vue
36
star
16

v-playback

A Vue2 plugin to make video play easier
Vue
18
star
17

v-dropdown

A dropdown container layer plugin for vue
JavaScript
15
star
18

vue-plugins

vue plugins development environment
JavaScript
11
star
19

v-tablegrid

A simpler to use and practical datatable
Vue
9
star
20

TerryZ.github.io

Main Page
HTML
5
star
21

grid-improve

grid-improve
HTML
1
star