Skip to content

Instantly share code, notes, and snippets.

@ZhouHansen
Last active August 15, 2019 04:15
Show Gist options
  • Save ZhouHansen/8bf0a9a5f7ca0ad8edfe10c1d8a959fa to your computer and use it in GitHub Desktop.
Save ZhouHansen/8bf0a9a5f7ca0ad8edfe10c1d8a959fa to your computer and use it in GitHub Desktop.
省市区级联文件格式
// 现在要实现一个级联选择省市区的功能,需要提供下面的数据。
[
{
value: '浙江',
label: '浙江',
searchId: 300000, // json中应包含搜索条件,根据后端的具体实现,返回
children: [
{
value: '杭州',
label: '杭州',
searchId: 310000
children: [
{
value: '西湖区',
label: '西湖区',
searchId: 311000
},
],
},
],
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment