-
-
Save ZhouHansen/8bf0a9a5f7ca0ad8edfe10c1d8a959fa to your computer and use it in GitHub Desktop.
省市区级联文件格式
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 现在要实现一个级联选择省市区的功能,需要提供下面的数据。 | |
[ | |
{ | |
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