/** * 省市 * */ export async function getCity() { return { address: [ { value: '220100', label: '长春市', children: [ { label: '南关区' }, { label: '宽城区' }, { label: '朝阳区' }, { label: '二道区' }, { label: '绿园区' }, { label: '双阳区' }, { label: '九台区' } ] }, { value: '220200', label: '吉林市', children: [] }, { value: '220300', label: '四平市', children: [] }, { value: '220400', label: '辽源市', children: [] }, { value: '220500', label: '通化市', children: [] }, { value: '220600', label: '白山市', children: [] }, { value: '220700', label: '松原市', children: [] }, { value: '220800', label: '白城市', children: [] }, { value: '222400', label: '延边朝鲜族自治州', children: [] } ] } }