city.js 126 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935
  1. // -------------地址信息
  2. const myCityTemp = [
  3. {
  4. name: '北京市',
  5. city: [
  6. {
  7. name: '北京市',
  8. districtAndCounty: [
  9. '东城区',
  10. '西城区',
  11. '崇文区',
  12. '宣武区',
  13. '朝阳区',
  14. '丰台区',
  15. '石景山区',
  16. '海淀区',
  17. '门头沟区',
  18. '房山区',
  19. '通州区',
  20. '顺义区',
  21. '昌平区',
  22. '大兴区',
  23. '怀柔区',
  24. '平谷区',
  25. '密云县',
  26. '延庆县',
  27. '延庆镇'
  28. ]
  29. }
  30. ]
  31. },
  32. {
  33. name: '天津市',
  34. city: [
  35. {
  36. name: '天津市',
  37. districtAndCounty: [
  38. '和平区',
  39. '河东区',
  40. '河西区',
  41. '南开区',
  42. '河北区',
  43. '红桥区',
  44. '塘沽区',
  45. '汉沽区',
  46. '大港区',
  47. '东丽区',
  48. '西青区',
  49. '津南区',
  50. '北辰区',
  51. '武清区',
  52. '宝坻区',
  53. '蓟县',
  54. '宁河县',
  55. '芦台镇',
  56. '静海县',
  57. '静海镇',
  58. '蓟州区',
  59. '滨海新区'
  60. ]
  61. }
  62. ]
  63. },
  64. {
  65. name: '上海市',
  66. city: [
  67. {
  68. name: '上海市',
  69. districtAndCounty: [
  70. '黄浦区',
  71. '卢湾区',
  72. '徐汇区',
  73. '长宁区',
  74. '静安区',
  75. '普陀区',
  76. '闸北区',
  77. '虹口区',
  78. '杨浦区',
  79. '闵行区',
  80. '宝山区?',
  81. '嘉定区',
  82. '浦东新区',
  83. '金山区',
  84. '松江区',
  85. '青浦区',
  86. '南汇区',
  87. '奉贤区',
  88. '崇明县',
  89. '城桥镇'
  90. ]
  91. }
  92. ]
  93. },
  94. {
  95. name: '重庆市',
  96. city: [
  97. {
  98. name: '重庆市',
  99. districtAndCounty: [
  100. '渝中区',
  101. '大渡口区',
  102. '江北区',
  103. '沙坪坝区',
  104. '九龙坡区',
  105. '南岸区',
  106. '北碚区',
  107. '万盛区',
  108. '双桥区',
  109. '渝北区',
  110. '巴南区',
  111. '万州区',
  112. '涪陵区',
  113. '黔江区',
  114. '长寿区',
  115. '合川市',
  116. '永川区市',
  117. '江津市',
  118. '南川市',
  119. '綦江县',
  120. '潼南县',
  121. '铜梁县',
  122. '大足县',
  123. '荣昌县',
  124. '璧山县',
  125. '垫江县',
  126. '武隆县',
  127. '丰都县',
  128. '城口县',
  129. '梁平县',
  130. '开县',
  131. '巫溪县',
  132. '巫山县',
  133. '奉节县',
  134. '云阳县',
  135. '忠县',
  136. '石柱土家族自治县',
  137. '彭水苗族土家族自治县',
  138. '酉阳土家族苗族自治县',
  139. '秀山土家族苗族自治县'
  140. ]
  141. }
  142. ]
  143. },
  144. {
  145. name: '河北省',
  146. city: [
  147. {
  148. name: '石家庄市',
  149. districtAndCounty: [
  150. '长安区',
  151. '桥东区',
  152. '桥西区',
  153. '新华区',
  154. '裕华区',
  155. '井陉矿区',
  156. '辛集市',
  157. '藁城市',
  158. '晋州市',
  159. '新乐市',
  160. '鹿泉市',
  161. '井陉县',
  162. '微水镇',
  163. '正定县',
  164. '正定镇',
  165. '栾城县',
  166. '栾城镇',
  167. '行唐县',
  168. '龙州镇',
  169. '灵寿县',
  170. '灵寿镇',
  171. '高邑县',
  172. '高邑镇',
  173. '深泽县',
  174. '深泽镇',
  175. '赞皇县',
  176. '赞皇镇',
  177. '无极县',
  178. '无极镇',
  179. '平山县',
  180. '平山镇',
  181. '元氏县',
  182. '槐阳镇',
  183. '赵县',
  184. '赵州镇'
  185. ]
  186. },
  187. {
  188. name: '张家口市',
  189. districtAndCounty: [
  190. '桥西区',
  191. '桥东区',
  192. '宣化区',
  193. '下花园区',
  194. '宣化县',
  195. '张家口市宣化区',
  196. '张北县',
  197. '张北镇',
  198. '康保县',
  199. '康保镇',
  200. '沽源县',
  201. '平定堡镇',
  202. '尚义县',
  203. '南壕堑镇',
  204. '蔚县',
  205. '蔚州镇',
  206. '阳原县',
  207. '西城镇',
  208. '怀安县',
  209. '柴沟堡镇',
  210. '万全县',
  211. '孔家庄镇',
  212. '怀来县',
  213. '沙城镇',
  214. '涿鹿县',
  215. '涿鹿镇',
  216. '赤城县',
  217. '赤城镇',
  218. '崇礼县',
  219. '西湾子镇'
  220. ]
  221. },
  222. {
  223. name: '承德市',
  224. districtAndCounty: [
  225. '双桥区',
  226. '双滦区',
  227. '鹰手营子矿区',
  228. '承德县',
  229. '下板城镇',
  230. '兴隆县',
  231. '兴隆镇',
  232. '平泉县',
  233. '平泉镇',
  234. '滦平县',
  235. '滦平镇',
  236. '隆化县',
  237. '隆化镇',
  238. '丰宁满族自治县',
  239. '大阁镇',
  240. '宽城满族自治县',
  241. '宽城镇',
  242. '围场满族蒙古族自治县',
  243. '围场镇'
  244. ]
  245. },
  246. {
  247. name: '秦皇岛市',
  248. districtAndCounty: [
  249. '海港区',
  250. '山海关区',
  251. '北戴河区',
  252. '昌黎县',
  253. '昌黎镇',
  254. '抚宁县',
  255. '抚宁镇',
  256. '卢龙县',
  257. '卢龙镇',
  258. '青龙满族自治县',
  259. '青龙镇'
  260. ]
  261. },
  262. {
  263. name: '唐山市',
  264. districtAndCounty: [
  265. '路北区',
  266. '路南区',
  267. '古冶区',
  268. '开平区',
  269. '丰润区',
  270. '丰南区',
  271. '遵化市',
  272. '迁安市',
  273. '滦县',
  274. '滦州镇',
  275. '滦南县',
  276. '倴城镇',
  277. '乐亭县',
  278. '乐亭镇',
  279. '迁西县',
  280. '兴城镇',
  281. '玉田县',
  282. '玉田镇',
  283. '唐海县',
  284. '唐海镇'
  285. ]
  286. },
  287. {
  288. name: '廊坊市',
  289. districtAndCounty: [
  290. '安次区',
  291. '广阳区',
  292. '霸州市',
  293. '三河市',
  294. '固安县',
  295. '固安镇',
  296. '永清县',
  297. '永清镇',
  298. '香河县',
  299. '淑阳镇',
  300. '大城县',
  301. '平舒镇',
  302. '文安县',
  303. '文安镇',
  304. '大厂回族自治县',
  305. '大厂镇'
  306. ]
  307. },
  308. {
  309. name: '保定市',
  310. districtAndCounty: [
  311. '新市区',
  312. '北市区',
  313. '南市区',
  314. '定州市',
  315. '涿州市',
  316. '安国市',
  317. '高碑店市',
  318. '满城县',
  319. '满城镇',
  320. '清苑县',
  321. '清苑镇',
  322. '易县',
  323. '易州镇',
  324. '徐水县',
  325. '安肃镇',
  326. '涞源县',
  327. '涞源镇',
  328. '定兴县',
  329. '定兴镇',
  330. '顺平县',
  331. '蒲阳镇',
  332. '唐县',
  333. '仁厚镇',
  334. '望都县',
  335. '望都镇',
  336. '涞水县',
  337. '涞水镇',
  338. '高阳县',
  339. '高阳镇',
  340. '安新县',
  341. '安新镇',
  342. '雄县',
  343. '雄州镇',
  344. '容城县',
  345. '容城镇',
  346. '曲阳县',
  347. '恒州镇',
  348. '阜平县',
  349. '阜平镇',
  350. '博野县',
  351. '博陵镇',
  352. '蠡县',
  353. '蠡吾镇'
  354. ]
  355. },
  356. {
  357. name: '衡水市',
  358. districtAndCounty: [
  359. '桃城区',
  360. '冀州市',
  361. '深州市',
  362. '枣强县',
  363. '枣强镇',
  364. '武邑县',
  365. '武邑镇',
  366. '武强县',
  367. '武强镇',
  368. '饶阳县',
  369. '饶阳镇',
  370. '安平县',
  371. '安平镇',
  372. '故城县',
  373. '郑口镇',
  374. '景县',
  375. '景州镇',
  376. '阜城县',
  377. '阜城镇'
  378. ]
  379. },
  380. {
  381. name: '沧州市',
  382. districtAndCounty: [
  383. '运河区',
  384. '新华区',
  385. '泊头市',
  386. '任丘市',
  387. '黄骅市',
  388. '河间市',
  389. '沧县',
  390. '沧州市新华区',
  391. '青县',
  392. '清州镇',
  393. '东光县',
  394. '东光镇',
  395. '海兴县',
  396. '苏基镇',
  397. '盐山县',
  398. '盐山镇',
  399. '肃宁县',
  400. '肃宁镇',
  401. '南皮县',
  402. '南皮镇',
  403. '吴桥县',
  404. '桑园镇',
  405. '献县',
  406. '乐寿镇',
  407. '孟村回族自治县',
  408. '孟村镇'
  409. ]
  410. },
  411. {
  412. name: '邢台市',
  413. districtAndCounty: [
  414. '桥东区',
  415. '桥西区',
  416. '南宫市',
  417. '沙河市',
  418. '邢台县',
  419. '邢台市桥东区',
  420. '临城县',
  421. '临城镇',
  422. '内丘县',
  423. '内丘镇',
  424. '柏乡县',
  425. '柏乡镇',
  426. '隆尧县',
  427. '隆尧镇',
  428. '任县',
  429. '任城镇',
  430. '南和县',
  431. '和阳镇',
  432. '宁晋县',
  433. '凤凰镇',
  434. '巨鹿县',
  435. '巨鹿镇',
  436. '新河县',
  437. '新河镇',
  438. '广宗县',
  439. '广宗镇',
  440. '平乡县',
  441. '丰州镇',
  442. '威县',
  443. '洺州镇',
  444. '清河县',
  445. '葛仙庄镇',
  446. '临西县',
  447. '临西镇'
  448. ]
  449. },
  450. {
  451. name: '邯郸市',
  452. districtAndCounty: [
  453. '丛台区',
  454. '邯山区',
  455. '复兴区',
  456. '峰峰矿区',
  457. '武安市',
  458. '邯郸县',
  459. '南堡乡东小屯村',
  460. '临漳县',
  461. '临漳镇',
  462. '成安县',
  463. '成安镇',
  464. '大名县',
  465. '大名镇',
  466. '涉县',
  467. '涉城镇',
  468. '磁县',
  469. '磁州镇',
  470. '肥乡县',
  471. '肥乡镇',
  472. '永年县',
  473. '临洺关镇',
  474. '邱县',
  475. '新马头镇',
  476. '鸡泽县',
  477. '鸡泽镇',
  478. '广平县',
  479. '广平镇',
  480. '馆陶县',
  481. '馆陶镇',
  482. '魏县',
  483. '魏城镇',
  484. '曲周县',
  485. '曲周镇'
  486. ]
  487. }
  488. ]
  489. },
  490. {
  491. name: '山西省',
  492. city: [
  493. {
  494. name: '太原市',
  495. districtAndCounty: [
  496. '杏花岭区',
  497. '小店区',
  498. '迎泽区',
  499. '尖草坪区',
  500. '万柏林区',
  501. '晋源区',
  502. '古交市',
  503. '清徐县',
  504. '清源镇',
  505. '阳曲县',
  506. '黄寨镇',
  507. '娄烦县',
  508. '娄烦镇'
  509. ]
  510. },
  511. {
  512. name: '朔州市',
  513. districtAndCounty: [
  514. '朔城区',
  515. '平鲁区',
  516. '山阴县',
  517. '岱岳乡',
  518. '应县',
  519. '金城镇',
  520. '右玉县',
  521. '新城镇',
  522. '怀仁县',
  523. '云中镇'
  524. ]
  525. },
  526. {
  527. name: '大同市',
  528. districtAndCounty: [
  529. '城区',
  530. '矿区',
  531. '南郊区',
  532. '新荣区',
  533. '阳高县',
  534. '龙泉镇',
  535. '天镇县',
  536. '玉泉镇',
  537. '广灵县',
  538. '壶泉镇',
  539. '灵丘县',
  540. '武灵镇',
  541. '浑源县',
  542. '永安镇',
  543. '左云县',
  544. '云兴镇',
  545. '大同县',
  546. '西坪镇'
  547. ]
  548. },
  549. {
  550. name: '阳泉市',
  551. districtAndCounty: ['城区', '矿区', '郊区', '平定县', '冠山镇', '盂县', '秀水镇']
  552. },
  553. {
  554. name: '长治市',
  555. districtAndCounty: [
  556. '城区',
  557. '郊区',
  558. '潞城市',
  559. '长治县',
  560. '韩店镇',
  561. '襄垣县',
  562. '古韩镇',
  563. '屯留县',
  564. '麟绛镇',
  565. '平顺县',
  566. '青羊镇',
  567. '黎城县',
  568. '黎侯镇',
  569. '壶关县',
  570. '龙泉镇',
  571. '长子县',
  572. '丹朱镇',
  573. '武乡县',
  574. '丰州镇',
  575. '沁县',
  576. '定昌镇',
  577. '沁源县',
  578. '沁河镇'
  579. ]
  580. },
  581. {
  582. name: '晋城市',
  583. districtAndCounty: [
  584. '城区',
  585. '高平市',
  586. '泽州县',
  587. '南村镇',
  588. '沁水县',
  589. '龙港镇',
  590. '阳城县',
  591. '凤城镇',
  592. '陵川县',
  593. '崇文镇'
  594. ]
  595. },
  596. {
  597. name: '忻州市',
  598. districtAndCounty: [
  599. '忻府区',
  600. '原平市',
  601. '定襄县',
  602. '晋昌镇',
  603. '五台县',
  604. '台城镇',
  605. '代县',
  606. '上馆镇',
  607. '繁峙县',
  608. '繁城镇',
  609. '宁武县',
  610. '凤凰镇',
  611. '静乐县',
  612. '鹅城镇',
  613. '神池县',
  614. '龙泉镇',
  615. '五寨县',
  616. '砚城镇',
  617. '岢岚县',
  618. '岚漪镇',
  619. '河曲县',
  620. '文笔镇',
  621. '保德县',
  622. '东关镇',
  623. '偏关县',
  624. '新关镇'
  625. ]
  626. },
  627. {
  628. name: '晋中市',
  629. districtAndCounty: [
  630. '榆次区',
  631. '介休市',
  632. '榆社县',
  633. '箕城镇',
  634. '左权县',
  635. '辽阳镇',
  636. '和顺县',
  637. '义兴镇',
  638. '昔阳县',
  639. '乐平镇',
  640. '寿阳县',
  641. '朝阳镇',
  642. '太谷县',
  643. '明星镇',
  644. '祁县',
  645. '昭余镇',
  646. '平遥县',
  647. '古陶镇',
  648. '灵石县',
  649. '翠峰镇'
  650. ]
  651. },
  652. {
  653. name: '临汾市',
  654. districtAndCounty: [
  655. '尧都区',
  656. '侯马市',
  657. '霍州市',
  658. '曲沃县',
  659. '乐昌镇',
  660. '翼城县',
  661. '唐兴镇',
  662. '襄汾县',
  663. '新城镇',
  664. '洪洞县',
  665. '大槐树镇',
  666. '古县',
  667. '岳阳镇',
  668. '安泽县',
  669. '府城镇',
  670. '浮山县',
  671. '天坛镇',
  672. '吉县',
  673. '吉昌镇',
  674. '乡宁县',
  675. '昌宁镇',
  676. '蒲县',
  677. '蒲城镇',
  678. '大宁县',
  679. '昕水镇',
  680. '永和县',
  681. '芝河镇',
  682. '隰县',
  683. '龙泉镇',
  684. '汾西县',
  685. '永安镇'
  686. ]
  687. },
  688. {
  689. name: '吕梁市',
  690. districtAndCounty: [
  691. '离石区',
  692. '孝义市',
  693. '汾阳市',
  694. '文水县',
  695. '凤城镇',
  696. '中阳县',
  697. '宁乡镇',
  698. '兴县',
  699. '蔚汾镇',
  700. '临县',
  701. '临泉镇',
  702. '方山县',
  703. '圪洞镇',
  704. '柳林县',
  705. '柳林镇',
  706. '岚县',
  707. '东村镇',
  708. '交口县',
  709. '水头镇',
  710. '交城县',
  711. '天宁镇',
  712. '石楼县',
  713. '灵泉镇'
  714. ]
  715. },
  716. {
  717. name: '运城市',
  718. districtAndCounty: [
  719. '盐湖区',
  720. '永济市',
  721. '河津市',
  722. '芮城县',
  723. '古魏镇',
  724. '临猗县',
  725. '猗氏镇',
  726. '万荣县',
  727. '解店镇',
  728. '新绛县',
  729. '龙兴镇',
  730. '稷山县',
  731. '稷峰镇',
  732. '闻喜县',
  733. '桐城镇',
  734. '夏县',
  735. '瑶峰镇',
  736. '绛县',
  737. '古绛镇',
  738. '平陆县',
  739. '圣人涧镇',
  740. '垣曲县',
  741. '新城镇'
  742. ]
  743. }
  744. ]
  745. },
  746. {
  747. name: '内蒙古',
  748. city: [
  749. {
  750. name: '呼和浩特市',
  751. districtAndCounty: [
  752. '回民区',
  753. '新城区',
  754. '玉泉区',
  755. '赛罕区',
  756. '托克托县',
  757. '双河镇',
  758. '武川县',
  759. '可可以力更镇',
  760. '和林格尔县',
  761. '清水河县',
  762. '土默特左旗',
  763. '察素齐镇'
  764. ]
  765. },
  766. {
  767. name: '包头市',
  768. districtAndCounty: [
  769. '昆都仑区',
  770. '东河区',
  771. '青山区',
  772. '石拐区',
  773. '白云矿区',
  774. '九原区',
  775. '固阳县',
  776. '金山镇',
  777. '土默特右旗',
  778. '萨拉齐镇',
  779. '达尔罕茂明安联合旗',
  780. '百灵庙镇'
  781. ]
  782. },
  783. {
  784. name: '乌海市',
  785. districtAndCounty: ['海勃湾区', '海南区', '乌达区']
  786. },
  787. {
  788. name: '赤峰市',
  789. districtAndCounty: [
  790. '红山区',
  791. '元宝山区',
  792. '松山区',
  793. '宁城县',
  794. '天义镇',
  795. '林西县',
  796. '林西镇',
  797. '阿鲁科尔沁旗',
  798. '天山镇',
  799. '巴林左旗',
  800. '林东镇',
  801. '巴林右旗',
  802. '大板镇',
  803. '克什克腾旗',
  804. '经棚镇',
  805. '翁牛特旗',
  806. '乌丹镇',
  807. '喀喇沁旗',
  808. '锦山镇',
  809. '敖汉旗',
  810. '新惠镇'
  811. ]
  812. },
  813. {
  814. name: '通辽市',
  815. districtAndCounty: [
  816. '科尔沁区',
  817. '霍林郭勒市',
  818. '开鲁县',
  819. '开鲁镇',
  820. '库伦旗',
  821. '库伦镇',
  822. '奈曼旗',
  823. '大沁他拉镇',
  824. '扎鲁特旗',
  825. '鲁北镇',
  826. '科尔沁左翼中旗',
  827. '保康镇',
  828. '科尔沁左翼后旗',
  829. '甘旗卡镇'
  830. ]
  831. },
  832. {
  833. name: '呼伦贝尔市',
  834. districtAndCounty: [
  835. '海拉尔区',
  836. '满洲里市',
  837. '扎兰屯市',
  838. '牙克石市',
  839. '根河市',
  840. '额尔古纳市',
  841. '阿荣旗',
  842. '那吉镇',
  843. '新巴尔虎右旗',
  844. '阿拉坦额莫勒镇',
  845. '新巴尔虎左旗',
  846. '阿穆古郎镇',
  847. '陈巴尔虎旗',
  848. '巴彦库仁镇',
  849. '鄂伦春自治旗',
  850. '阿里河镇',
  851. '鄂温克族自治旗',
  852. '巴彦托海镇',
  853. '莫力达瓦达斡尔族自治旗',
  854. '尼尔基镇'
  855. ]
  856. },
  857. {
  858. name: '鄂尔多斯市',
  859. districtAndCounty: [
  860. '东胜区',
  861. '达拉特旗',
  862. '树林召镇',
  863. '准格尔旗',
  864. '薛家湾镇',
  865. '鄂托克前旗',
  866. '敖勒召其镇',
  867. '鄂托克旗',
  868. '乌兰镇',
  869. '杭锦旗',
  870. '锡尼镇',
  871. '乌审旗',
  872. '嘎鲁图镇',
  873. '伊金霍洛旗',
  874. '阿勒腾席热镇'
  875. ]
  876. },
  877. {
  878. name: '乌兰察布市',
  879. districtAndCounty: [
  880. '集宁区',
  881. '丰镇市',
  882. '卓资县',
  883. '卓资山镇',
  884. '化德县',
  885. '长顺镇',
  886. '商都县',
  887. '商都镇',
  888. '兴和县',
  889. '凉城县',
  890. '岱海镇',
  891. '察哈尔右翼前旗',
  892. '土贵乌拉镇',
  893. '察哈尔右翼中旗',
  894. '科布尔镇',
  895. '察哈尔右翼后旗',
  896. '白音察干镇',
  897. '四子王旗',
  898. '乌兰花镇'
  899. ]
  900. },
  901. {
  902. name: '巴彦淖尔市',
  903. districtAndCounty: [
  904. '临河区',
  905. '五原县',
  906. '隆兴昌镇',
  907. '磴口县',
  908. '巴彦高勒镇',
  909. '乌拉特前旗',
  910. '乌拉山镇',
  911. '乌拉特中旗',
  912. '海流图镇',
  913. '乌拉特后旗',
  914. '巴音宝力格镇',
  915. '杭锦后旗',
  916. '陕坝镇'
  917. ]
  918. },
  919. {
  920. name: '兴安盟',
  921. districtAndCounty: [
  922. '乌兰浩特市',
  923. '阿尔山市',
  924. '突泉县',
  925. '突泉镇',
  926. '科尔沁右翼前旗',
  927. '大坝沟镇',
  928. '科尔沁右翼中旗',
  929. '巴彦呼硕镇',
  930. '扎赉特旗',
  931. '音德尔镇'
  932. ]
  933. },
  934. {
  935. name: '锡林郭勒盟',
  936. districtAndCounty: [
  937. '锡林浩特市',
  938. '二连浩特市',
  939. '多伦县',
  940. '多伦淖尔镇',
  941. '阿巴嘎旗',
  942. '别力古台镇',
  943. '苏尼特左旗',
  944. '满都拉图镇',
  945. '苏尼特右旗',
  946. '赛汉塔拉镇',
  947. '东乌珠穆沁旗',
  948. '乌里雅斯太镇',
  949. '西乌珠穆沁旗',
  950. '巴拉嘎尔郭勒镇',
  951. '太仆寺旗',
  952. '宝昌镇',
  953. '镶黄旗',
  954. '新宝拉格镇',
  955. '正镶白旗',
  956. '明安图镇',
  957. '正蓝旗',
  958. '上都镇'
  959. ]
  960. },
  961. {
  962. name: '阿拉善盟',
  963. districtAndCounty: ['巴彦浩特镇', '阿拉善右旗', '额肯呼都格镇', '额济纳旗', '达来呼布镇']
  964. }
  965. ]
  966. },
  967. {
  968. name: '辽宁省',
  969. city: [
  970. {
  971. name: '沈阳市',
  972. districtAndCounty: [
  973. '沈河区',
  974. '和平区',
  975. '大东区',
  976. '皇姑区',
  977. '铁西区',
  978. '苏家屯区',
  979. '东陵区',
  980. '新城子区',
  981. '于洪区',
  982. '新民市',
  983. '辽中县',
  984. '辽中镇',
  985. '康平县',
  986. '康平镇',
  987. '法库县',
  988. '法库镇'
  989. ]
  990. },
  991. {
  992. name: '朝阳市',
  993. districtAndCounty: [
  994. '双塔区',
  995. '龙城区',
  996. '北票市',
  997. '凌源市',
  998. '朝阳县',
  999. '朝阳市双塔区',
  1000. '建平县',
  1001. '喀喇沁左翼蒙古族自治县',
  1002. '大城子镇'
  1003. ]
  1004. },
  1005. {
  1006. name: '阜新市',
  1007. districtAndCounty: [
  1008. '海州区',
  1009. '新邱区',
  1010. '太平区',
  1011. '清河门区',
  1012. '细河区',
  1013. '彰武县',
  1014. '彰武镇',
  1015. '阜新蒙古族自治县',
  1016. '阜新镇'
  1017. ]
  1018. },
  1019. {
  1020. name: '铁岭市',
  1021. districtAndCounty: [
  1022. '银州区',
  1023. '清河区',
  1024. '调兵山市',
  1025. '开原市',
  1026. '铁岭县',
  1027. '铁岭市银州区',
  1028. '西丰县',
  1029. '西丰镇',
  1030. '昌图县',
  1031. '昌图镇'
  1032. ]
  1033. },
  1034. {
  1035. name: '抚顺市',
  1036. districtAndCounty: [
  1037. '顺城区',
  1038. '新抚区',
  1039. '东洲区',
  1040. '望花区',
  1041. '抚顺县',
  1042. '抚顺市顺城区',
  1043. '新宾满族自治县',
  1044. '新宾镇',
  1045. '清原满族自治县',
  1046. '清原镇'
  1047. ]
  1048. },
  1049. {
  1050. name: '本溪市',
  1051. districtAndCounty: [
  1052. '平山区',
  1053. '溪湖区',
  1054. '明山区',
  1055. '南芬区',
  1056. '本溪满族自治县',
  1057. '小市镇',
  1058. '桓仁满族自治县',
  1059. '桓仁镇'
  1060. ]
  1061. },
  1062. {
  1063. name: '辽阳市',
  1064. districtAndCounty: [
  1065. '白塔区',
  1066. '文圣区',
  1067. '宏伟区',
  1068. '弓长岭区',
  1069. '太子河区',
  1070. '灯塔市',
  1071. '辽阳县',
  1072. '首山镇'
  1073. ]
  1074. },
  1075. {
  1076. name: '鞍山市',
  1077. districtAndCounty: [
  1078. '铁东区',
  1079. '铁西区',
  1080. '立山区',
  1081. '千山区',
  1082. '海城市',
  1083. '台安县',
  1084. '台安镇',
  1085. '岫岩满族自治县',
  1086. '岫岩镇'
  1087. ]
  1088. },
  1089. {
  1090. name: '丹东市',
  1091. districtAndCounty: [
  1092. '振兴区',
  1093. '元宝区',
  1094. '振安区',
  1095. '凤城市',
  1096. '东港市',
  1097. '宽甸满族自治县',
  1098. '宽甸镇'
  1099. ]
  1100. },
  1101. {
  1102. name: '大连市',
  1103. districtAndCounty: [
  1104. '西岗区',
  1105. '中山区',
  1106. '沙河口区',
  1107. '甘井子区',
  1108. '旅顺口区',
  1109. '金州区',
  1110. '瓦房店市',
  1111. '普兰店市',
  1112. '庄河市',
  1113. '长海县',
  1114. '大长山岛镇'
  1115. ]
  1116. },
  1117. {
  1118. name: '营口市',
  1119. districtAndCounty: ['站前区', '西市区', '鲅鱼圈区', '老边区', '大石桥市', '盖州市']
  1120. },
  1121. {
  1122. name: '盘锦市',
  1123. districtAndCounty: ['兴隆台区', '双台子区', '大洼县', '大洼镇', '盘山县', '盘锦市双台子区']
  1124. },
  1125. {
  1126. name: '锦州市',
  1127. districtAndCounty: [
  1128. '太和区',
  1129. '古塔区',
  1130. '凌河区',
  1131. '凌海市',
  1132. '北宁市',
  1133. '黑山县',
  1134. '黑山镇',
  1135. '义县',
  1136. '义州镇',
  1137. '滨海新区',
  1138. '北镇市'
  1139. ]
  1140. },
  1141. {
  1142. name: '葫芦岛市',
  1143. districtAndCounty: [
  1144. '龙港区',
  1145. '连山区',
  1146. '南票区',
  1147. '兴城市',
  1148. '绥中县',
  1149. '绥中镇',
  1150. '建昌县',
  1151. '建昌镇'
  1152. ]
  1153. }
  1154. ]
  1155. },
  1156. {
  1157. name: '吉林省',
  1158. city: [
  1159. {
  1160. name: '长春市',
  1161. districtAndCounty: [
  1162. '朝阳区',
  1163. '南关区',
  1164. '宽城区',
  1165. '二道区',
  1166. '绿园区',
  1167. '双阳区',
  1168. '德惠市',
  1169. '九台市',
  1170. '榆树市',
  1171. '农安县',
  1172. '农安镇'
  1173. ]
  1174. },
  1175. {
  1176. name: '白城市',
  1177. districtAndCounty: ['洮北区', '大安市', '洮南市', '镇赉县', '镇赉镇', '通榆县', '开通镇']
  1178. },
  1179. {
  1180. name: '松原市',
  1181. districtAndCounty: [
  1182. '宁江区',
  1183. '扶余县',
  1184. '三岔河镇',
  1185. '长岭县',
  1186. '长岭镇',
  1187. '乾安县',
  1188. '乾安镇',
  1189. '前郭尔罗斯蒙古族自治县',
  1190. '前郭镇'
  1191. ]
  1192. },
  1193. {
  1194. name: '吉林市',
  1195. districtAndCounty: [
  1196. '船营区',
  1197. '龙潭区',
  1198. '昌邑区',
  1199. '丰满区',
  1200. '磐石市',
  1201. '蛟河市',
  1202. '桦甸市',
  1203. '舒兰市',
  1204. '永吉县',
  1205. '口前镇'
  1206. ]
  1207. },
  1208. {
  1209. name: '四平市',
  1210. districtAndCounty: [
  1211. '铁西区',
  1212. '铁东区',
  1213. '双辽市',
  1214. '公主岭市',
  1215. '梨树县',
  1216. '梨树镇',
  1217. '伊通满族自治县',
  1218. '伊通镇'
  1219. ]
  1220. },
  1221. {
  1222. name: '辽源市',
  1223. districtAndCounty: ['龙山区', '西安区', '东丰县', '东丰镇', '东辽县', '白泉镇']
  1224. },
  1225. {
  1226. name: '通化市',
  1227. districtAndCounty: [
  1228. '东昌区',
  1229. '二道江区',
  1230. '梅河口市',
  1231. '集安市',
  1232. '通化县',
  1233. '快大茂镇',
  1234. '辉南县',
  1235. '朝阳镇',
  1236. '柳河县',
  1237. '柳河镇'
  1238. ]
  1239. },
  1240. {
  1241. name: '白山市',
  1242. districtAndCounty: [
  1243. '八道江区',
  1244. '临江市',
  1245. '江源县',
  1246. '孙家堡子镇',
  1247. '抚松县',
  1248. '抚松镇',
  1249. '靖宇县',
  1250. '靖宇镇',
  1251. '长白朝鲜族自治县',
  1252. '长白镇'
  1253. ]
  1254. },
  1255. {
  1256. name: '延边州',
  1257. districtAndCounty: [
  1258. '延吉市',
  1259. '图们市',
  1260. '敦化市',
  1261. '珲春市',
  1262. '龙井市',
  1263. '和龙市',
  1264. '汪清县',
  1265. '汪清镇',
  1266. '安图县',
  1267. '明月镇'
  1268. ]
  1269. }
  1270. ]
  1271. },
  1272. {
  1273. name: '黑龙江省',
  1274. city: [
  1275. {
  1276. name: '哈尔滨市',
  1277. districtAndCounty: [
  1278. '松北区',
  1279. '道里区',
  1280. '南岗区',
  1281. '道外区',
  1282. '香坊区',
  1283. '动力区',
  1284. '平房区',
  1285. '呼兰区',
  1286. '双城市',
  1287. '尚志市',
  1288. '五常市',
  1289. '阿城市',
  1290. '依兰县',
  1291. '依兰镇',
  1292. '方正县',
  1293. '方正镇',
  1294. '宾县',
  1295. '宾州镇',
  1296. '巴彦县',
  1297. '巴彦镇',
  1298. '木兰县',
  1299. '木兰镇',
  1300. '通河县',
  1301. '通河镇',
  1302. '延寿县',
  1303. '延寿镇'
  1304. ]
  1305. },
  1306. {
  1307. name: '齐齐哈尔市',
  1308. districtAndCounty: [
  1309. '建华区',
  1310. '龙沙区',
  1311. '铁锋区',
  1312. '昂昂溪区',
  1313. '富拉尔基区',
  1314. '碾子山区',
  1315. '梅里斯达斡尔族区',
  1316. '讷河市',
  1317. '龙江县',
  1318. '龙江镇',
  1319. '依安县',
  1320. '依安镇',
  1321. '泰来县',
  1322. '泰来镇',
  1323. '甘南县',
  1324. '甘南镇',
  1325. '富裕县',
  1326. '富裕镇',
  1327. '克山县',
  1328. '克山镇',
  1329. '克东县',
  1330. '克东镇',
  1331. '拜泉县',
  1332. '拜泉镇'
  1333. ]
  1334. },
  1335. {
  1336. name: '七台河市',
  1337. districtAndCounty: ['桃山区', '新兴区', '茄子河区', '勃利县', '勃利镇']
  1338. },
  1339. {
  1340. name: '黑河市',
  1341. districtAndCounty: [
  1342. '爱辉区',
  1343. '北安市',
  1344. '五大连池市',
  1345. '嫩江县',
  1346. '嫩江镇',
  1347. '逊克县',
  1348. '边疆镇',
  1349. '孙吴县',
  1350. '孙吴镇'
  1351. ]
  1352. },
  1353. {
  1354. name: '大庆市',
  1355. districtAndCounty: [
  1356. '萨尔图区',
  1357. '龙凤区',
  1358. '让胡路区',
  1359. '大同区',
  1360. '红岗区',
  1361. '肇州县',
  1362. '肇州镇',
  1363. '肇源县',
  1364. '肇源镇',
  1365. '林甸县',
  1366. '林甸镇',
  1367. '杜尔伯特蒙古族自治县',
  1368. '泰康镇'
  1369. ]
  1370. },
  1371. {
  1372. name: '鹤岗市',
  1373. districtAndCounty: [
  1374. '兴山区',
  1375. '向阳区',
  1376. '工农区',
  1377. '南山区',
  1378. '兴安区',
  1379. '东山区',
  1380. '萝北县',
  1381. '凤翔镇',
  1382. '绥滨县',
  1383. '绥滨镇'
  1384. ]
  1385. },
  1386. {
  1387. name: '伊春市',
  1388. districtAndCounty: [
  1389. '伊春区',
  1390. '南岔区',
  1391. '友好区',
  1392. '西林区',
  1393. '翠峦区',
  1394. '新青区',
  1395. '美溪区',
  1396. '金山屯区',
  1397. '五营区',
  1398. '乌马河区',
  1399. '汤旺河区',
  1400. '带岭区',
  1401. '乌伊岭区',
  1402. '红星区',
  1403. '上甘岭区',
  1404. '铁力市',
  1405. '嘉荫县',
  1406. '朝阳镇'
  1407. ]
  1408. },
  1409. {
  1410. name: '佳木斯市',
  1411. districtAndCounty: [
  1412. '前进区',
  1413. '永红区',
  1414. '向阳区',
  1415. '东风区',
  1416. '郊区',
  1417. '同江市',
  1418. '富锦市',
  1419. '桦南县',
  1420. '桦南镇',
  1421. '桦川县',
  1422. '悦来镇',
  1423. '汤原县',
  1424. '汤原镇',
  1425. '抚远县',
  1426. '抚远镇'
  1427. ]
  1428. },
  1429. {
  1430. name: '双鸭山市',
  1431. districtAndCounty: [
  1432. '尖山区',
  1433. '岭东区',
  1434. '四方台区',
  1435. '宝山区',
  1436. '集贤县',
  1437. '福利镇',
  1438. '友谊县',
  1439. '友谊镇',
  1440. '宝清县',
  1441. '宝清镇',
  1442. '饶河县',
  1443. '饶河镇'
  1444. ]
  1445. },
  1446. {
  1447. name: '鸡西市',
  1448. districtAndCounty: [
  1449. '鸡冠区',
  1450. '恒山区',
  1451. '滴道区',
  1452. '梨树区',
  1453. '城子河区',
  1454. '麻山区',
  1455. '虎林市',
  1456. '密山市',
  1457. '鸡东县',
  1458. '鸡东镇'
  1459. ]
  1460. },
  1461. {
  1462. name: '牡丹江市',
  1463. districtAndCounty: [
  1464. '爱民区',
  1465. '东安区',
  1466. '阳明区',
  1467. '西安区',
  1468. '穆棱市',
  1469. '绥芬河市',
  1470. '海林市',
  1471. '宁安市',
  1472. '东宁县',
  1473. '东宁镇',
  1474. '林口县',
  1475. '林口镇'
  1476. ]
  1477. },
  1478. {
  1479. name: '绥化市',
  1480. districtAndCounty: [
  1481. '北林区',
  1482. '安达市',
  1483. '肇东市',
  1484. '海伦市',
  1485. '望奎县',
  1486. '望奎镇',
  1487. '兰西县',
  1488. '兰西镇',
  1489. '青冈县',
  1490. '青冈镇',
  1491. '庆安县',
  1492. '庆安镇',
  1493. '明水县',
  1494. '明水镇',
  1495. '绥棱县',
  1496. '绥棱镇'
  1497. ]
  1498. },
  1499. {
  1500. name: '大兴安岭地区',
  1501. districtAndCounty: ['呼玛县', '呼玛镇', '塔河县', '塔河镇', '漠河县', '西林吉镇']
  1502. }
  1503. ]
  1504. },
  1505. {
  1506. name: '江苏省',
  1507. city: [
  1508. {
  1509. name: '南京市',
  1510. districtAndCounty: [
  1511. '玄武区',
  1512. '白下区',
  1513. '秦淮区',
  1514. '建邺区',
  1515. '鼓楼区',
  1516. '下关区',
  1517. '浦口区',
  1518. '六合区',
  1519. '栖霞区',
  1520. '雨花台区',
  1521. '江宁区',
  1522. '溧水县',
  1523. '永阳镇',
  1524. '高淳县',
  1525. '淳溪镇'
  1526. ]
  1527. },
  1528. {
  1529. name: '徐州市',
  1530. districtAndCounty: [
  1531. '云龙区',
  1532. '鼓楼区',
  1533. '九里区',
  1534. '贾汪区',
  1535. '泉山区',
  1536. '邳州市',
  1537. '新沂市',
  1538. '铜山县',
  1539. '铜山镇',
  1540. '睢宁县',
  1541. '睢城镇',
  1542. '沛县',
  1543. '沛城镇',
  1544. '丰县',
  1545. '凤城镇'
  1546. ]
  1547. },
  1548. {
  1549. name: '连云港市',
  1550. districtAndCounty: [
  1551. '新浦区',
  1552. '连云区',
  1553. '海州区',
  1554. '赣榆县',
  1555. '青口镇',
  1556. '灌云县',
  1557. '伊山镇',
  1558. '东海县',
  1559. '牛山镇',
  1560. '灌南县',
  1561. '新安镇'
  1562. ]
  1563. },
  1564. {
  1565. name: '宿迁市',
  1566. districtAndCounty: [
  1567. '宿城区',
  1568. '宿豫区',
  1569. '沭阳县',
  1570. '沭城镇',
  1571. '泗阳县',
  1572. '众兴镇',
  1573. '泗洪县',
  1574. '青阳镇'
  1575. ]
  1576. },
  1577. {
  1578. name: '淮安市',
  1579. districtAndCounty: [
  1580. '清河区',
  1581. '清浦区',
  1582. '楚州区',
  1583. '淮阴区',
  1584. '金湖县',
  1585. '黎城镇',
  1586. '盱眙县',
  1587. '盱城镇',
  1588. '洪泽县',
  1589. '高良涧镇',
  1590. '涟水县',
  1591. '涟城镇'
  1592. ]
  1593. },
  1594. {
  1595. name: '盐城市',
  1596. districtAndCounty: [
  1597. '亭湖区',
  1598. '盐都区',
  1599. '东台市',
  1600. '大丰市',
  1601. '射阳县',
  1602. '合德镇',
  1603. '阜宁县',
  1604. '阜城镇',
  1605. '滨海县',
  1606. '东坎镇',
  1607. '响水县',
  1608. '响水镇',
  1609. '建湖县',
  1610. '近湖镇'
  1611. ]
  1612. },
  1613. {
  1614. name: '扬州市',
  1615. districtAndCounty: [
  1616. '维扬区',
  1617. '广陵区',
  1618. '邗江区',
  1619. '仪征市',
  1620. '江都市',
  1621. '高邮市',
  1622. '宝应县',
  1623. '安宜镇'
  1624. ]
  1625. },
  1626. {
  1627. name: '泰州市',
  1628. districtAndCounty: ['海陵区', '高港区', '靖江市', '泰兴市', '姜堰市', '兴化市']
  1629. },
  1630. {
  1631. name: '南通市',
  1632. districtAndCounty: [
  1633. '崇川区',
  1634. '港闸区',
  1635. '海门市',
  1636. '启东市',
  1637. '通州市',
  1638. '如皋市',
  1639. '如东县',
  1640. '掘港镇',
  1641. '海安县',
  1642. '海安镇'
  1643. ]
  1644. },
  1645. {
  1646. name: '镇江市',
  1647. districtAndCounty: ['京口区', '润州区', '丹徒区', '扬中市', '丹阳市', '句容市']
  1648. },
  1649. {
  1650. name: '常州市',
  1651. districtAndCounty: ['钟楼区', '天宁区', '戚墅堰区', '新北区', '武进区', '金坛市', '溧阳市']
  1652. },
  1653. {
  1654. name: '无锡市',
  1655. districtAndCounty: [
  1656. '崇安区',
  1657. '南长区',
  1658. '北塘区',
  1659. '滨湖区',
  1660. '惠山区',
  1661. '锡山区',
  1662. '江阴市',
  1663. '宜兴市'
  1664. ]
  1665. },
  1666. {
  1667. name: '苏州市',
  1668. districtAndCounty: [
  1669. '金阊区',
  1670. '沧浪区',
  1671. '平江区',
  1672. '虎丘区',
  1673. '吴中区',
  1674. '相城区',
  1675. '吴江市',
  1676. '昆山市',
  1677. '太仓市',
  1678. '常熟市',
  1679. '张家港市'
  1680. ]
  1681. }
  1682. ]
  1683. },
  1684. {
  1685. name: '浙江省',
  1686. city: [
  1687. {
  1688. name: '杭州市',
  1689. districtAndCounty: [
  1690. '拱墅区',
  1691. '上城区',
  1692. '下城区',
  1693. '江干区',
  1694. '西湖区',
  1695. '滨江区',
  1696. '余杭区',
  1697. '萧山区',
  1698. '临安市',
  1699. '富阳市',
  1700. '建德市',
  1701. '桐庐县',
  1702. '淳安县',
  1703. '千岛湖镇'
  1704. ]
  1705. },
  1706. {
  1707. name: '湖州市',
  1708. districtAndCounty: [
  1709. '吴兴区',
  1710. '南浔区',
  1711. '长兴县',
  1712. '雉城镇',
  1713. '德清县',
  1714. '武康镇',
  1715. '安吉县',
  1716. '递铺镇'
  1717. ]
  1718. },
  1719. {
  1720. name: '嘉兴市',
  1721. districtAndCounty: [
  1722. '南湖区',
  1723. '秀洲区',
  1724. '平湖市',
  1725. '海宁市',
  1726. '桐乡市',
  1727. '嘉善县',
  1728. '魏塘镇',
  1729. '海盐县',
  1730. '武原镇'
  1731. ]
  1732. },
  1733. {
  1734. name: '舟山市',
  1735. districtAndCounty: ['定海区', '普陀区', '岱山县', '高亭镇', '嵊泗县', '菜园镇']
  1736. },
  1737. {
  1738. name: '宁波市',
  1739. districtAndCounty: [
  1740. '海曙区',
  1741. '江东区',
  1742. '江北区',
  1743. '北仑区',
  1744. '镇海区',
  1745. '鄞州区',
  1746. '慈溪市',
  1747. '余姚市',
  1748. '奉化市',
  1749. '宁海县',
  1750. '象山县'
  1751. ]
  1752. },
  1753. {
  1754. name: '绍兴市',
  1755. districtAndCounty: ['越城区', '诸暨市', '上虞市', '嵊州市', '绍兴县', '新昌县']
  1756. },
  1757. {
  1758. name: '衢州市',
  1759. districtAndCounty: ['柯城区', '衢江区', '江山市', '常山县', '天马镇', '开化县', '龙游县']
  1760. },
  1761. {
  1762. name: '金华市',
  1763. districtAndCounty: [
  1764. '婺城区',
  1765. '金东区',
  1766. '兰溪市',
  1767. '永康市',
  1768. '义乌市',
  1769. '东阳市',
  1770. '武义县',
  1771. '浦江县',
  1772. '磐安县',
  1773. '安文镇'
  1774. ]
  1775. },
  1776. {
  1777. name: '台州市',
  1778. districtAndCounty: [
  1779. '椒江区',
  1780. '黄岩区',
  1781. '路桥区',
  1782. '临海市',
  1783. '温岭市',
  1784. '三门县',
  1785. '海游镇',
  1786. '天台县',
  1787. '仙居县',
  1788. '玉环县',
  1789. '珠港镇'
  1790. ]
  1791. },
  1792. {
  1793. name: '温州市',
  1794. districtAndCounty: [
  1795. '鹿城区',
  1796. '龙湾区',
  1797. '瓯海区',
  1798. '瑞安市',
  1799. '乐清市',
  1800. '永嘉县',
  1801. '上塘镇',
  1802. '文成县',
  1803. '大峃镇',
  1804. '平阳县',
  1805. '昆阳镇',
  1806. '泰顺县',
  1807. '罗阳镇',
  1808. '洞头县',
  1809. '北岙镇',
  1810. '苍南县',
  1811. '灵溪镇'
  1812. ]
  1813. },
  1814. {
  1815. name: '丽水市',
  1816. districtAndCounty: [
  1817. '莲都区',
  1818. '龙泉市',
  1819. '缙云县',
  1820. '五云镇',
  1821. '青田县',
  1822. '鹤城镇',
  1823. '云和县',
  1824. '云和镇',
  1825. '遂昌县',
  1826. '妙高镇',
  1827. '松阳县',
  1828. '西屏镇',
  1829. '庆元县',
  1830. '松源镇',
  1831. '景宁畲族自治县',
  1832. '鹤溪镇'
  1833. ]
  1834. }
  1835. ]
  1836. },
  1837. {
  1838. name: '安徽省',
  1839. city: [
  1840. {
  1841. name: '合肥市',
  1842. districtAndCounty: [
  1843. '庐阳区',
  1844. '瑶海区',
  1845. '蜀山区',
  1846. '包河区',
  1847. '长丰县',
  1848. '水湖镇',
  1849. '肥东县',
  1850. '店埠镇',
  1851. '肥西县',
  1852. '上派镇'
  1853. ]
  1854. },
  1855. {
  1856. name: '宿州市',
  1857. districtAndCounty: [
  1858. '埇桥区',
  1859. '砀山县',
  1860. '砀城镇',
  1861. '萧县',
  1862. '龙城镇',
  1863. '灵璧县',
  1864. '灵城镇',
  1865. '泗县',
  1866. '泗城镇'
  1867. ]
  1868. },
  1869. {
  1870. name: '淮北市',
  1871. districtAndCounty: ['相山区', '杜集区', '烈山区', '濉溪县', '濉溪镇']
  1872. },
  1873. {
  1874. name: '亳州市',
  1875. districtAndCounty: ['谯城区', '涡阳县', '蒙城县', '利辛县']
  1876. },
  1877. {
  1878. name: '阜阳市',
  1879. districtAndCounty: [
  1880. '颍州区',
  1881. '颍东区',
  1882. '颍泉区',
  1883. '界首市',
  1884. '临泉县',
  1885. '太和县',
  1886. '阜南县',
  1887. '颍上县',
  1888. '慎城镇'
  1889. ]
  1890. },
  1891. {
  1892. name: '蚌埠市',
  1893. districtAndCounty: ['蚌山区', '龙子湖区', '禹会区', '淮上区', '怀远县', '五河县', '固镇县']
  1894. },
  1895. {
  1896. name: '淮南市',
  1897. districtAndCounty: ['田家庵区', '大通区', '谢家集区', '八公山区', '潘集区', '凤台县']
  1898. },
  1899. {
  1900. name: '滁州市',
  1901. districtAndCounty: [
  1902. '琅区',
  1903. '南谯区',
  1904. '明光市',
  1905. '天长市',
  1906. '来安县',
  1907. '新安镇',
  1908. '全椒县',
  1909. '襄河镇',
  1910. '定远县',
  1911. '定城镇',
  1912. '凤阳县',
  1913. '府城镇'
  1914. ]
  1915. },
  1916. {
  1917. name: '马鞍山市',
  1918. districtAndCounty: ['雨山区', '花山区', '金家庄区', '当涂县', '姑孰镇']
  1919. },
  1920. {
  1921. name: '芜湖市',
  1922. districtAndCounty: [
  1923. '镜湖区',
  1924. '弋江区',
  1925. '三山区',
  1926. '鸠江区',
  1927. '芜湖县',
  1928. '湾镇',
  1929. '繁昌县',
  1930. '繁阳镇',
  1931. '南陵县',
  1932. '籍山镇'
  1933. ]
  1934. },
  1935. {
  1936. name: '铜陵市',
  1937. districtAndCounty: ['铜官山区', '狮子山区', '郊区', '铜陵县', '五松镇']
  1938. },
  1939. {
  1940. name: '安庆市',
  1941. districtAndCounty: [
  1942. '迎江区',
  1943. '大观区',
  1944. '宜秀区',
  1945. '桐城市',
  1946. '怀宁县',
  1947. '高河镇',
  1948. '枞阳县',
  1949. '枞阳镇',
  1950. '潜山县',
  1951. '梅城镇',
  1952. '太湖县',
  1953. '晋熙镇',
  1954. '宿松县',
  1955. '孚玉镇',
  1956. '望江县',
  1957. '雷阳镇',
  1958. '岳西县',
  1959. '天堂镇'
  1960. ]
  1961. },
  1962. {
  1963. name: '黄山市',
  1964. districtAndCounty: [
  1965. '屯溪区',
  1966. '黄山区',
  1967. '徽州区',
  1968. '歙县',
  1969. '徽城镇',
  1970. '休宁县',
  1971. '海阳镇',
  1972. '黟县',
  1973. '碧阳镇',
  1974. '祁门县',
  1975. '祁山镇'
  1976. ]
  1977. },
  1978. {
  1979. name: '六安市',
  1980. districtAndCounty: [
  1981. '金安区',
  1982. '裕安区',
  1983. '寿县',
  1984. '寿春镇',
  1985. '霍邱县',
  1986. '舒城县',
  1987. '金寨县',
  1988. '梅山镇',
  1989. '霍山县',
  1990. '衡山镇'
  1991. ]
  1992. },
  1993. {
  1994. name: '巢湖市',
  1995. districtAndCounty: [
  1996. '居巢区',
  1997. '庐江县',
  1998. '庐城镇',
  1999. '无为县',
  2000. '无城镇',
  2001. '含山县',
  2002. '环峰镇',
  2003. '和县',
  2004. '历阳镇'
  2005. ]
  2006. },
  2007. {
  2008. name: '池州市',
  2009. districtAndCounty: ['贵池区', '东至县', '尧渡镇', '石台县', '七里镇', '青阳县', '蓉城镇']
  2010. },
  2011. {
  2012. name: '宣城市',
  2013. districtAndCounty: [
  2014. '宣州区',
  2015. '宁国市',
  2016. '郎溪县',
  2017. '建平镇',
  2018. '广德县',
  2019. '桃州镇',
  2020. '泾县',
  2021. '泾川镇',
  2022. '旌德县',
  2023. '旌阳镇',
  2024. '绩溪县',
  2025. '华阳镇'
  2026. ]
  2027. }
  2028. ]
  2029. },
  2030. {
  2031. name: '福建省',
  2032. city: [
  2033. {
  2034. name: '福州市',
  2035. districtAndCounty: [
  2036. '鼓楼区',
  2037. '台江区',
  2038. '仓山区',
  2039. '马尾区',
  2040. '晋安区',
  2041. '福清市',
  2042. '长乐市',
  2043. '闽侯县',
  2044. '连江县',
  2045. '凤城镇',
  2046. '罗源县',
  2047. '凤山镇',
  2048. '闽清县',
  2049. '梅城镇',
  2050. '永泰县',
  2051. '樟城镇',
  2052. '平潭县',
  2053. '潭城镇'
  2054. ]
  2055. },
  2056. {
  2057. name: '南平市',
  2058. districtAndCounty: [
  2059. '延平区',
  2060. '邵武市',
  2061. '武夷山市',
  2062. '建瓯市',
  2063. '建阳市',
  2064. '顺昌县',
  2065. '浦城县',
  2066. '光泽县',
  2067. '杭川镇',
  2068. '松溪县',
  2069. '松源镇',
  2070. '政和县',
  2071. '熊山镇'
  2072. ]
  2073. },
  2074. {
  2075. name: '莆田市',
  2076. districtAndCounty: ['城厢区', '涵江区', '荔城区', '秀屿区', '仙游县']
  2077. },
  2078. {
  2079. name: '三明市',
  2080. districtAndCounty: [
  2081. '梅列区',
  2082. '三元区',
  2083. '永安市',
  2084. '明溪县',
  2085. '雪峰镇',
  2086. '清流县',
  2087. '龙津镇',
  2088. '宁化县',
  2089. '翠江镇',
  2090. '大田县',
  2091. '均溪镇',
  2092. '尤溪县',
  2093. '沙县',
  2094. '将乐县',
  2095. '古镛镇',
  2096. '泰宁县',
  2097. '杉城镇',
  2098. '建宁县',
  2099. '濉城镇'
  2100. ]
  2101. },
  2102. {
  2103. name: '泉州市',
  2104. districtAndCounty: [
  2105. '鲤城区',
  2106. '丰泽区',
  2107. '洛江区',
  2108. '泉港区',
  2109. '石狮市',
  2110. '晋江市',
  2111. '南安市',
  2112. '惠安县',
  2113. '螺城镇',
  2114. '安溪县',
  2115. '凤城镇',
  2116. '永春县',
  2117. '桃城镇',
  2118. '德化县',
  2119. '浔中镇',
  2120. '金门县',
  2121. '☆'
  2122. ]
  2123. },
  2124. {
  2125. name: '厦门市',
  2126. districtAndCounty: ['思明区', '海沧区', '湖里区', '集美区', '同安区', '翔安区']
  2127. },
  2128. {
  2129. name: '漳州市',
  2130. districtAndCounty: [
  2131. '芗城区',
  2132. '龙文区',
  2133. '龙海市',
  2134. '云霄县',
  2135. '云陵镇',
  2136. '漳浦县',
  2137. '绥安镇',
  2138. '诏安县',
  2139. '南诏镇',
  2140. '长泰县',
  2141. '武安镇',
  2142. '东山县',
  2143. '西埔镇',
  2144. '南靖县',
  2145. '山城镇',
  2146. '平和县',
  2147. '小溪镇',
  2148. '华安县',
  2149. '华丰镇'
  2150. ]
  2151. },
  2152. {
  2153. name: '龙岩市',
  2154. districtAndCounty: [
  2155. '新罗区',
  2156. '漳平市',
  2157. '长汀县',
  2158. '汀州镇',
  2159. '永定县',
  2160. '凤城镇',
  2161. '上杭县',
  2162. '临江镇',
  2163. '武平县',
  2164. '平川镇',
  2165. '连城县',
  2166. '莲峰镇'
  2167. ]
  2168. },
  2169. {
  2170. name: '宁德市',
  2171. districtAndCounty: [
  2172. '蕉城区',
  2173. '福安市',
  2174. '福鼎市',
  2175. '寿宁县',
  2176. '鳌阳镇',
  2177. '霞浦县',
  2178. '柘荣县',
  2179. '双城镇',
  2180. '屏南县',
  2181. '古峰镇',
  2182. '古田县',
  2183. '周宁县',
  2184. '狮城镇'
  2185. ]
  2186. }
  2187. ]
  2188. },
  2189. {
  2190. name: '江西省',
  2191. city: [
  2192. {
  2193. name: '南昌市',
  2194. districtAndCounty: [
  2195. '东湖区',
  2196. '西湖区',
  2197. '青云谱区',
  2198. '湾里区',
  2199. '青山湖区',
  2200. '南昌县',
  2201. '莲塘镇',
  2202. '新建县',
  2203. '长堎镇',
  2204. '安义县',
  2205. '龙津镇',
  2206. '进贤县',
  2207. '民和镇'
  2208. ]
  2209. },
  2210. {
  2211. name: '九江市',
  2212. districtAndCounty: [
  2213. '浔阳区',
  2214. '庐山区',
  2215. '瑞昌市',
  2216. '九江县',
  2217. '沙河街镇',
  2218. '武宁县',
  2219. '新宁镇',
  2220. '修水县',
  2221. '义宁镇',
  2222. '永修县',
  2223. '涂埠镇',
  2224. '德安县',
  2225. '蒲亭镇',
  2226. '星子县',
  2227. '南康镇',
  2228. '都昌县',
  2229. '都昌镇',
  2230. '湖口县',
  2231. '双钟镇',
  2232. '彭泽县',
  2233. '龙城镇'
  2234. ]
  2235. },
  2236. {
  2237. name: '景德镇市',
  2238. districtAndCounty: ['珠山区', '昌江区', '乐平市', '浮梁县', '浮梁镇']
  2239. },
  2240. {
  2241. name: '鹰潭市',
  2242. districtAndCounty: ['月湖区', '贵溪市', '余江县', '邓埠镇']
  2243. },
  2244. {
  2245. name: '新余市',
  2246. districtAndCounty: ['渝水区', '分宜县', '分宜镇']
  2247. },
  2248. {
  2249. name: '萍乡市',
  2250. districtAndCounty: [
  2251. '安源区',
  2252. '湘东区',
  2253. '莲花县',
  2254. '琴亭镇',
  2255. '上栗县',
  2256. '上栗镇',
  2257. '芦溪县',
  2258. '芦溪镇'
  2259. ]
  2260. },
  2261. {
  2262. name: '赣州市',
  2263. districtAndCounty: [
  2264. '章贡区',
  2265. '瑞金市',
  2266. '南康市',
  2267. '赣县',
  2268. '梅林镇',
  2269. '信丰县',
  2270. '嘉定镇',
  2271. '大余县',
  2272. '南安镇',
  2273. '上犹县',
  2274. '东山镇',
  2275. '崇义县',
  2276. '横水镇',
  2277. '安远县',
  2278. '欣山镇',
  2279. '龙南县',
  2280. '龙南镇',
  2281. '定南县',
  2282. '历市镇',
  2283. '全南县',
  2284. '城厢镇',
  2285. '宁都县',
  2286. '梅江镇',
  2287. '于都县',
  2288. '贡江镇',
  2289. '兴国县',
  2290. '潋江镇',
  2291. '会昌县',
  2292. '文武坝镇',
  2293. '寻乌县',
  2294. '长宁镇',
  2295. '石城县',
  2296. '琴江镇'
  2297. ]
  2298. },
  2299. {
  2300. name: '上饶市',
  2301. districtAndCounty: [
  2302. '信州区',
  2303. '德兴市',
  2304. '上饶县',
  2305. '旭日镇',
  2306. '广丰县',
  2307. '永丰镇',
  2308. '玉山县',
  2309. '冰溪镇',
  2310. '铅山县',
  2311. '河口镇',
  2312. '横峰县',
  2313. '岑阳镇',
  2314. '弋阳县',
  2315. '弋江镇',
  2316. '余干县',
  2317. '玉亭镇',
  2318. '鄱阳县',
  2319. '鄱阳镇',
  2320. '万年县',
  2321. '陈营镇',
  2322. '婺源县',
  2323. '紫阳镇'
  2324. ]
  2325. },
  2326. {
  2327. name: '抚州市',
  2328. districtAndCounty: [
  2329. '临川区',
  2330. '南城县',
  2331. '建昌镇',
  2332. '黎川县',
  2333. '日峰镇',
  2334. '南丰县',
  2335. '琴城镇',
  2336. '崇仁县',
  2337. '巴山镇',
  2338. '乐安县',
  2339. '鳌溪镇',
  2340. '宜黄县',
  2341. '凤冈镇',
  2342. '金溪县',
  2343. '秀谷镇',
  2344. '资溪县',
  2345. '鹤城镇',
  2346. '东乡县',
  2347. '孝岗镇',
  2348. '广昌县',
  2349. '旴江镇'
  2350. ]
  2351. },
  2352. {
  2353. name: '宜春市',
  2354. districtAndCounty: [
  2355. '袁州区',
  2356. '丰城市',
  2357. '樟树市',
  2358. '高安市',
  2359. '奉新县',
  2360. '冯川镇',
  2361. '万载县',
  2362. '上高县',
  2363. '宜丰县',
  2364. '新昌镇',
  2365. '靖安县',
  2366. '双溪镇',
  2367. '铜鼓县',
  2368. '永宁镇'
  2369. ]
  2370. },
  2371. {
  2372. name: '吉安市',
  2373. districtAndCounty: [
  2374. '吉州区',
  2375. '青原区',
  2376. '井冈山市',
  2377. '厦坪镇',
  2378. '吉安县',
  2379. '敦厚镇',
  2380. '吉水县',
  2381. '文峰镇',
  2382. '峡江县',
  2383. '水边镇',
  2384. '新干县',
  2385. '金川镇',
  2386. '永丰县',
  2387. '恩江镇',
  2388. '泰和县',
  2389. '澄江镇',
  2390. '遂川县',
  2391. '泉江镇',
  2392. '万安县',
  2393. '芙蓉镇',
  2394. '安福县',
  2395. '平都镇',
  2396. '永新县',
  2397. '禾川镇'
  2398. ]
  2399. }
  2400. ]
  2401. },
  2402. {
  2403. name: '山东省',
  2404. city: [
  2405. {
  2406. name: '济南市',
  2407. districtAndCounty: [
  2408. '市中区',
  2409. '历下区',
  2410. '槐荫区',
  2411. '天桥区',
  2412. '历城区',
  2413. '长清区',
  2414. '章丘市',
  2415. '平阴县',
  2416. '平阴镇',
  2417. '济阳县',
  2418. '济阳镇',
  2419. '商河县'
  2420. ]
  2421. },
  2422. {
  2423. name: '青岛市',
  2424. districtAndCounty: [
  2425. '市南区',
  2426. '市北区',
  2427. '四方区',
  2428. '黄岛区',
  2429. '崂山区',
  2430. '城阳区',
  2431. '李沧区',
  2432. '胶州市',
  2433. '即墨市',
  2434. '平度市',
  2435. '胶南市',
  2436. '莱西市'
  2437. ]
  2438. },
  2439. {
  2440. name: '聊城市',
  2441. districtAndCounty: [
  2442. '东昌府区',
  2443. '临清市',
  2444. '阳谷县',
  2445. '莘县',
  2446. '茌平县',
  2447. '东阿县',
  2448. '冠县',
  2449. '冠城镇',
  2450. '高唐县'
  2451. ]
  2452. },
  2453. {
  2454. name: '德州市',
  2455. districtAndCounty: [
  2456. '德城区',
  2457. '乐陵市',
  2458. '禹城市',
  2459. '陵县',
  2460. '陵城镇',
  2461. '平原县',
  2462. '夏津县',
  2463. '夏津镇',
  2464. '武城县',
  2465. '武城镇',
  2466. '齐河县',
  2467. '晏城镇',
  2468. '临邑县',
  2469. '宁津县',
  2470. '宁津镇',
  2471. '庆云县',
  2472. '庆云镇'
  2473. ]
  2474. },
  2475. {
  2476. name: '东营市',
  2477. districtAndCounty: [
  2478. '东营区',
  2479. '河口区',
  2480. '垦利县',
  2481. '垦利镇',
  2482. '利津县',
  2483. '利津镇',
  2484. '广饶县',
  2485. '广饶镇'
  2486. ]
  2487. },
  2488. {
  2489. name: '淄博市',
  2490. districtAndCounty: [
  2491. '张店区',
  2492. '淄川区',
  2493. '博山区',
  2494. '临淄区',
  2495. '周村区',
  2496. '桓台县',
  2497. '索镇',
  2498. '高青县',
  2499. '田镇',
  2500. '沂源县',
  2501. '南麻镇'
  2502. ]
  2503. },
  2504. {
  2505. name: '潍坊市',
  2506. districtAndCounty: [
  2507. '潍城区',
  2508. '寒亭区',
  2509. '坊子区',
  2510. '奎文区',
  2511. '安丘市',
  2512. '昌邑市',
  2513. '高密市',
  2514. '青州市',
  2515. '诸城市',
  2516. '寿光市',
  2517. '临朐县',
  2518. '昌乐县'
  2519. ]
  2520. },
  2521. {
  2522. name: '烟台市',
  2523. districtAndCounty: [
  2524. '莱山区',
  2525. '芝罘区',
  2526. '福山区',
  2527. '牟平区',
  2528. '栖霞市',
  2529. '海阳市',
  2530. '龙口市',
  2531. '莱阳市',
  2532. '莱州市',
  2533. '蓬莱市',
  2534. '招远市',
  2535. '长岛县',
  2536. '南长山镇'
  2537. ]
  2538. },
  2539. {
  2540. name: '威海市',
  2541. districtAndCounty: ['环翠区', '荣成市', '乳山市', '文登市']
  2542. },
  2543. {
  2544. name: '日照市',
  2545. districtAndCounty: ['东港区', '岚山区', '五莲县', '洪凝镇', '莒县', '城阳镇']
  2546. },
  2547. {
  2548. name: '临沂市',
  2549. districtAndCounty: [
  2550. '兰山区',
  2551. '罗庄区',
  2552. '河东区',
  2553. '郯城县',
  2554. '郯城镇',
  2555. '苍山县',
  2556. '卞庄镇',
  2557. '莒南县',
  2558. '十字路镇',
  2559. '沂水县',
  2560. '沂水镇',
  2561. '蒙阴县',
  2562. '蒙阴镇',
  2563. '平邑县',
  2564. '平邑镇',
  2565. '费县',
  2566. '费城镇',
  2567. '沂南县',
  2568. '界湖镇',
  2569. '临沭县',
  2570. '临沭镇'
  2571. ]
  2572. },
  2573. {
  2574. name: '枣庄市',
  2575. districtAndCounty: ['薛城区', '市中区', '峄城区', '台儿庄区', '山亭区', '滕州市']
  2576. },
  2577. {
  2578. name: '济宁市',
  2579. districtAndCounty: [
  2580. '市中区',
  2581. '任城区',
  2582. '曲阜市',
  2583. '兖州市',
  2584. '邹城市',
  2585. '微山县',
  2586. '鱼台县',
  2587. '谷亭镇',
  2588. '金乡县',
  2589. '金乡镇',
  2590. '嘉祥县',
  2591. '嘉祥镇',
  2592. '汶上县',
  2593. '汶上镇',
  2594. '泗水县',
  2595. '梁山县',
  2596. '梁山镇'
  2597. ]
  2598. },
  2599. {
  2600. name: '泰安市',
  2601. districtAndCounty: [
  2602. '泰山区',
  2603. '岱岳区',
  2604. '新泰市',
  2605. '肥城市',
  2606. '宁阳县',
  2607. '宁阳镇',
  2608. '东平县',
  2609. '东平镇'
  2610. ]
  2611. },
  2612. {
  2613. name: '莱芜市',
  2614. districtAndCounty: ['莱城区', '钢城区']
  2615. },
  2616. {
  2617. name: '滨州市',
  2618. districtAndCounty: [
  2619. '滨城区',
  2620. '惠民县',
  2621. '惠民镇',
  2622. '阳信县',
  2623. '阳信镇',
  2624. '无棣县',
  2625. '无棣镇',
  2626. '沾化县',
  2627. '富国镇',
  2628. '博兴县',
  2629. '博兴镇',
  2630. '邹平县'
  2631. ]
  2632. },
  2633. {
  2634. name: '菏泽市',
  2635. districtAndCounty: [
  2636. '牡丹区',
  2637. '曹县',
  2638. '曹城镇',
  2639. '定陶县',
  2640. '定陶镇',
  2641. '成武县',
  2642. '成武镇',
  2643. '单县',
  2644. '单城镇',
  2645. '巨野县',
  2646. '巨野镇',
  2647. '郓城县',
  2648. '郓城镇',
  2649. '鄄城县',
  2650. '鄄城镇',
  2651. '东明县'
  2652. ]
  2653. }
  2654. ]
  2655. },
  2656. {
  2657. name: '河南省',
  2658. city: [
  2659. {
  2660. name: '郑州市',
  2661. districtAndCounty: [
  2662. '中原区',
  2663. '二七区',
  2664. '管城回族区',
  2665. '金水区',
  2666. '上街区',
  2667. '惠济区',
  2668. '新郑市',
  2669. '登封市',
  2670. '新密市',
  2671. '巩义市',
  2672. '荥阳市',
  2673. '中牟县',
  2674. '港区',
  2675. '东区'
  2676. ]
  2677. },
  2678. {
  2679. name: '开封市',
  2680. districtAndCounty: [
  2681. '鼓楼区',
  2682. '龙亭区',
  2683. '顺河回族区',
  2684. '禹王台区',
  2685. '金明区',
  2686. '杞县',
  2687. '通许县',
  2688. '尉氏县',
  2689. '开封县',
  2690. '兰考县'
  2691. ]
  2692. },
  2693. {
  2694. name: '三门峡市',
  2695. districtAndCounty: [
  2696. '湖滨区',
  2697. '义马市',
  2698. '灵宝市',
  2699. '渑池县',
  2700. '陕县',
  2701. '大营镇',
  2702. '卢氏县',
  2703. '陕州区'
  2704. ]
  2705. },
  2706. {
  2707. name: '洛阳市',
  2708. districtAndCounty: [
  2709. '西工区',
  2710. '老城区',
  2711. '瀍河回族区',
  2712. '涧西区',
  2713. '吉利区',
  2714. '洛龙区',
  2715. '偃师市',
  2716. '孟津县',
  2717. '新安县',
  2718. '栾川县',
  2719. '嵩县',
  2720. '汝阳县',
  2721. '宜阳县',
  2722. '洛宁县',
  2723. '伊川县'
  2724. ]
  2725. },
  2726. {
  2727. name: '焦作市',
  2728. districtAndCounty: [
  2729. '解放区',
  2730. '山阳区',
  2731. '中站区',
  2732. '马村区',
  2733. '孟州市',
  2734. '沁阳市',
  2735. '修武县',
  2736. '博爱县',
  2737. '清化镇',
  2738. '武陟县',
  2739. '木城镇',
  2740. '温县',
  2741. '温泉镇',
  2742. '焦作市'
  2743. ]
  2744. },
  2745. {
  2746. name: '新乡市',
  2747. districtAndCounty: [
  2748. '卫滨区',
  2749. '红旗区',
  2750. '凤泉区',
  2751. '牧野区',
  2752. '卫辉市',
  2753. '辉县市',
  2754. '新乡县',
  2755. '新乡市红旗区',
  2756. '获嘉县',
  2757. '原阳县',
  2758. '延津县',
  2759. '封丘县',
  2760. '长垣县'
  2761. ]
  2762. },
  2763. {
  2764. name: '鹤壁市',
  2765. districtAndCounty: ['淇滨区', '山城区', '鹤山区', '浚县', '淇县', '朝歌镇']
  2766. },
  2767. {
  2768. name: '安阳市',
  2769. districtAndCounty: [
  2770. '北关区',
  2771. '文峰区',
  2772. '殷都区',
  2773. '龙安区',
  2774. '林州市',
  2775. '安阳县',
  2776. '安阳市北关区',
  2777. '汤阴县',
  2778. '滑县',
  2779. '道口镇',
  2780. '内黄县',
  2781. '市区东',
  2782. '市区西'
  2783. ]
  2784. },
  2785. {
  2786. name: '濮阳市',
  2787. districtAndCounty: ['华龙区', '清丰县', '南乐县', '范县', '台前县', '濮阳县']
  2788. },
  2789. {
  2790. name: '商丘市',
  2791. districtAndCounty: [
  2792. '梁园区',
  2793. '睢阳区',
  2794. '永城市',
  2795. '虞城县',
  2796. '民权县',
  2797. '宁陵县',
  2798. '睢县',
  2799. '夏邑县',
  2800. '柘城县'
  2801. ]
  2802. },
  2803. {
  2804. name: '许昌市',
  2805. districtAndCounty: [
  2806. '魏都区',
  2807. '禹州市',
  2808. '长葛市',
  2809. '许昌县',
  2810. '许昌市魏都区',
  2811. '鄢陵县',
  2812. '安陵镇',
  2813. '襄城县'
  2814. ]
  2815. },
  2816. {
  2817. name: '漯河市',
  2818. districtAndCounty: ['源汇区', '郾城区', '召陵区', '舞阳县', '舞泉镇', '临颍县']
  2819. },
  2820. {
  2821. name: '平顶山市',
  2822. districtAndCounty: [
  2823. '新华区',
  2824. '卫东区',
  2825. '湛河区',
  2826. '石龙区',
  2827. '舞钢市',
  2828. '汝州市',
  2829. '宝丰县',
  2830. '叶县',
  2831. '昆阳镇',
  2832. '鲁山县',
  2833. '鲁阳镇',
  2834. '郏县'
  2835. ]
  2836. },
  2837. {
  2838. name: '南阳市',
  2839. districtAndCounty: [
  2840. '卧龙区',
  2841. '宛城区',
  2842. '邓州市',
  2843. '南召县',
  2844. '方城县',
  2845. '西峡县',
  2846. '镇平县',
  2847. '内乡县',
  2848. '淅川县',
  2849. '社旗县',
  2850. '赊店镇',
  2851. '唐河县',
  2852. '新野县',
  2853. '桐柏县'
  2854. ]
  2855. },
  2856. {
  2857. name: '信阳市',
  2858. districtAndCounty: [
  2859. '河区',
  2860. '平桥区',
  2861. '息县',
  2862. '淮滨县',
  2863. '潢川县',
  2864. '光山县',
  2865. '固始县',
  2866. '商城县',
  2867. '罗山县',
  2868. '新县',
  2869. '新集镇'
  2870. ]
  2871. },
  2872. {
  2873. name: '周口市',
  2874. districtAndCounty: [
  2875. '川汇区',
  2876. '项城市',
  2877. '扶沟县',
  2878. '西华县',
  2879. '商水县',
  2880. '太康县',
  2881. '鹿邑县',
  2882. '郸城县',
  2883. '淮阳县',
  2884. '沈丘县',
  2885. '槐店镇'
  2886. ]
  2887. },
  2888. {
  2889. name: '驻马店市',
  2890. districtAndCounty: [
  2891. '驿城区',
  2892. '确山县',
  2893. '盘龙镇',
  2894. '泌阳县',
  2895. '泌水镇',
  2896. '遂平县',
  2897. '灈阳镇',
  2898. '西平县',
  2899. '上蔡县',
  2900. '蔡都镇',
  2901. '汝南县',
  2902. '汝宁镇',
  2903. '平舆县',
  2904. '古槐镇',
  2905. '新蔡县',
  2906. '古吕镇',
  2907. '正阳县',
  2908. '真阳镇'
  2909. ]
  2910. },
  2911. {
  2912. name: '济源市',
  2913. districtAndCounty: ['济源西区', '济源东区']
  2914. }
  2915. ]
  2916. },
  2917. {
  2918. name: '湖北省',
  2919. city: [
  2920. {
  2921. name: '武汉市',
  2922. districtAndCounty: [
  2923. '江岸区',
  2924. '江汉区',
  2925. '硚口区',
  2926. '汉阳区',
  2927. '武昌区',
  2928. '青山区',
  2929. '洪山区',
  2930. '东西湖区',
  2931. '汉南区',
  2932. '蔡甸区',
  2933. '江夏区',
  2934. '黄陂区',
  2935. '新洲区'
  2936. ]
  2937. },
  2938. {
  2939. name: '十堰市',
  2940. districtAndCounty: [
  2941. '张湾区',
  2942. '茅箭区',
  2943. '丹江口市',
  2944. '郧县',
  2945. '竹山县',
  2946. '房县',
  2947. '郧西县',
  2948. '竹溪县'
  2949. ]
  2950. },
  2951. {
  2952. name: '襄樊市',
  2953. districtAndCounty: [
  2954. '襄城区',
  2955. '樊城区',
  2956. '襄阳区',
  2957. '老河口市',
  2958. '枣阳市',
  2959. '宜城市',
  2960. '南漳县',
  2961. '谷城县',
  2962. '保康县'
  2963. ]
  2964. },
  2965. {
  2966. name: '荆门市',
  2967. districtAndCounty: ['东宝区', '掇刀区', '钟祥市', '沙洋县', '沙洋镇', '京山县', '新市镇']
  2968. },
  2969. {
  2970. name: '孝感市',
  2971. districtAndCounty: [
  2972. '孝南区',
  2973. '应城市',
  2974. '安陆市',
  2975. '汉川市',
  2976. '孝昌县',
  2977. '花园镇',
  2978. '大悟县',
  2979. '云梦县'
  2980. ]
  2981. },
  2982. {
  2983. name: '黄冈市',
  2984. districtAndCounty: [
  2985. '黄州区',
  2986. '麻城市',
  2987. '武穴市',
  2988. '红安县',
  2989. '罗田县',
  2990. '凤山镇',
  2991. '英山县',
  2992. '温泉镇',
  2993. '浠水县',
  2994. '清泉镇',
  2995. '蕲春县',
  2996. '漕河镇',
  2997. '黄梅县',
  2998. '黄梅镇',
  2999. '团风县',
  3000. '团风镇'
  3001. ]
  3002. },
  3003. {
  3004. name: '鄂州市',
  3005. districtAndCounty: ['鄂城区', '梁子湖区', '华容区']
  3006. },
  3007. {
  3008. name: '黄石市',
  3009. districtAndCounty: [
  3010. '黄石港区',
  3011. '西塞山区',
  3012. '下陆区',
  3013. '铁山区',
  3014. '大冶市',
  3015. '阳新县',
  3016. '兴国镇'
  3017. ]
  3018. },
  3019. {
  3020. name: '咸宁市',
  3021. districtAndCounty: [
  3022. '咸安区',
  3023. '赤壁市',
  3024. '嘉鱼县',
  3025. '鱼岳镇',
  3026. '通城县',
  3027. '隽水镇',
  3028. '崇阳县',
  3029. '天城镇',
  3030. '通山县',
  3031. '通羊镇'
  3032. ]
  3033. },
  3034. {
  3035. name: '荆州市',
  3036. districtAndCounty: [
  3037. '沙市区',
  3038. '荆州区',
  3039. '石首市',
  3040. '洪湖市',
  3041. '松滋市',
  3042. '江陵县',
  3043. '郝穴镇',
  3044. '公安县',
  3045. '斗湖堤镇',
  3046. '监利县',
  3047. '容城镇'
  3048. ]
  3049. },
  3050. {
  3051. name: '宜昌市',
  3052. districtAndCounty: [
  3053. '西陵区',
  3054. '伍家岗区',
  3055. '点军区',
  3056. '猇亭区',
  3057. '夷陵区',
  3058. '枝江市',
  3059. '宜都市',
  3060. '当阳市',
  3061. '远安县',
  3062. '鸣凤镇',
  3063. '兴山县',
  3064. '古夫镇',
  3065. '秭归县',
  3066. '茅坪镇',
  3067. '长阳土家族自治县',
  3068. '龙舟坪镇',
  3069. '五峰土家族自治县',
  3070. '五峰镇'
  3071. ]
  3072. },
  3073. {
  3074. name: '随州市',
  3075. districtAndCounty: ['曾都区', '广水市']
  3076. },
  3077. {
  3078. name: '省直辖县级行政单位',
  3079. districtAndCounty: ['仙桃市', '天门市', '潜江市', '神农架林区', '松柏镇']
  3080. },
  3081. {
  3082. name: '恩施州',
  3083. districtAndCounty: [
  3084. '恩施市',
  3085. '利川市',
  3086. '建始县',
  3087. '业州镇',
  3088. '巴东县',
  3089. '信陵镇',
  3090. '宣恩县',
  3091. '珠山镇',
  3092. '咸丰县',
  3093. '高乐山镇',
  3094. '来凤县',
  3095. '翔凤镇',
  3096. '鹤峰县',
  3097. '容美镇'
  3098. ]
  3099. }
  3100. ]
  3101. },
  3102. {
  3103. name: '湖南省',
  3104. city: [
  3105. {
  3106. name: '长沙市',
  3107. districtAndCounty: [
  3108. '长沙市',
  3109. '岳麓区',
  3110. '芙蓉区',
  3111. '天心区',
  3112. '开福区',
  3113. '雨花区',
  3114. '浏阳市',
  3115. '长沙县',
  3116. '星沙镇',
  3117. '望城县',
  3118. '高塘岭镇',
  3119. '宁乡县',
  3120. '玉潭镇'
  3121. ]
  3122. },
  3123. {
  3124. name: '张家界市',
  3125. districtAndCounty: ['永定区', '武陵源区', '慈利县', '零阳镇', '桑植县', '澧源镇']
  3126. },
  3127. {
  3128. name: '常德市',
  3129. districtAndCounty: [
  3130. '武陵区',
  3131. '鼎城区',
  3132. '津市市',
  3133. '安乡县',
  3134. '汉寿县',
  3135. '龙阳镇',
  3136. '澧县',
  3137. '澧阳镇',
  3138. '临澧县',
  3139. '安福镇',
  3140. '桃源县',
  3141. '漳江镇',
  3142. '石门县',
  3143. '楚江镇'
  3144. ]
  3145. },
  3146. {
  3147. name: '益阳市',
  3148. districtAndCounty: [
  3149. '赫山区',
  3150. '资阳区',
  3151. '沅江市',
  3152. '南县',
  3153. '南洲镇',
  3154. '桃江县',
  3155. '桃花江镇',
  3156. '安化县',
  3157. '东坪镇'
  3158. ]
  3159. },
  3160. {
  3161. name: '岳阳市',
  3162. districtAndCounty: [
  3163. '岳阳楼区',
  3164. '君山区',
  3165. '云溪区',
  3166. '汨罗市',
  3167. '临湘市',
  3168. '岳阳县',
  3169. '荣家湾镇',
  3170. '华容县',
  3171. '湘阴县',
  3172. '文星镇',
  3173. '平江县',
  3174. '汉昌镇'
  3175. ]
  3176. },
  3177. {
  3178. name: '株洲市',
  3179. districtAndCounty: [
  3180. '天元区',
  3181. '荷塘区',
  3182. '芦淞区',
  3183. '石峰区',
  3184. '醴陵市',
  3185. '株洲县',
  3186. '渌口镇',
  3187. '攸县',
  3188. '茶陵县',
  3189. '炎陵县',
  3190. '霞阳镇'
  3191. ]
  3192. },
  3193. {
  3194. name: '湘潭市',
  3195. districtAndCounty: ['岳塘区', '雨湖区', '湘乡市', '韶山市', '湘潭县', '易俗河镇']
  3196. },
  3197. {
  3198. name: '衡阳市',
  3199. districtAndCounty: [
  3200. '雁峰区',
  3201. '珠晖区',
  3202. '石鼓区',
  3203. '蒸湘区',
  3204. '南岳区',
  3205. '常宁市',
  3206. '耒阳市',
  3207. '衡阳县',
  3208. '西渡镇',
  3209. '衡南县',
  3210. '云集镇',
  3211. '衡山县',
  3212. '开云镇',
  3213. '衡东县',
  3214. '祁东县',
  3215. '洪桥镇'
  3216. ]
  3217. },
  3218. {
  3219. name: '郴州市',
  3220. districtAndCounty: [
  3221. '北湖区',
  3222. '苏仙区',
  3223. '资兴市',
  3224. '桂阳县',
  3225. '永兴县',
  3226. '宜章县',
  3227. '嘉禾县',
  3228. '临武县',
  3229. '汝城县',
  3230. '桂东县',
  3231. '安仁县'
  3232. ]
  3233. },
  3234. {
  3235. name: '永州市',
  3236. districtAndCounty: [
  3237. '冷水滩区',
  3238. '零陵区',
  3239. '东安县',
  3240. '白牙市镇',
  3241. '道县',
  3242. '道江镇',
  3243. '宁远县',
  3244. '舜陵镇',
  3245. '江永县',
  3246. '潇浦镇',
  3247. '蓝山县',
  3248. '塔峰镇',
  3249. '新田县',
  3250. '龙泉镇',
  3251. '双牌县',
  3252. '泷泊镇',
  3253. '祁阳县',
  3254. '浯溪镇',
  3255. '江华瑶族自治县',
  3256. '沱江镇'
  3257. ]
  3258. },
  3259. {
  3260. name: '邵阳市',
  3261. districtAndCounty: [
  3262. '双清区',
  3263. '大祥区',
  3264. '北塔区',
  3265. '武冈市',
  3266. '邵东县',
  3267. '两市镇',
  3268. '邵阳县',
  3269. '塘渡口镇',
  3270. '新邵县',
  3271. '酿溪镇',
  3272. '隆回县',
  3273. '桃洪镇',
  3274. '洞口县',
  3275. '洞口镇',
  3276. '绥宁县',
  3277. '长铺镇',
  3278. '新宁县',
  3279. '金石镇',
  3280. '城步苗族自治县',
  3281. '儒林镇'
  3282. ]
  3283. },
  3284. {
  3285. name: '怀化市',
  3286. districtAndCounty: [
  3287. '鹤城区',
  3288. '洪江市',
  3289. '沅陵县',
  3290. '沅陵镇',
  3291. '辰溪县',
  3292. '辰阳镇',
  3293. '溆浦县',
  3294. '卢峰镇',
  3295. '中方县',
  3296. '中方镇',
  3297. '会同县',
  3298. '林城镇',
  3299. '麻阳苗族自治县',
  3300. '高村镇',
  3301. '新晃侗族自治县',
  3302. '新晃镇',
  3303. '芷江侗族自治县',
  3304. '芷江镇',
  3305. '靖州苗族侗族自治县',
  3306. '渠阳镇',
  3307. '通道侗族自治县',
  3308. '双江镇'
  3309. ]
  3310. },
  3311. {
  3312. name: '娄底市',
  3313. districtAndCounty: ['娄星区', '冷水江市', '涟源市', '双峰县', '永丰镇', '新化县', '上梅镇']
  3314. },
  3315. {
  3316. name: '湘西州',
  3317. districtAndCounty: [
  3318. '吉首市',
  3319. '泸溪县',
  3320. '白沙镇',
  3321. '凤凰县',
  3322. '沱江镇',
  3323. '花垣县',
  3324. '花垣镇',
  3325. '保靖县',
  3326. '迁陵镇',
  3327. '古丈县',
  3328. '古阳镇',
  3329. '永顺县',
  3330. '灵溪镇',
  3331. '龙山县'
  3332. ]
  3333. }
  3334. ]
  3335. },
  3336. {
  3337. name: '广东省',
  3338. city: [
  3339. {
  3340. name: '广州市',
  3341. districtAndCounty: [
  3342. '越秀区',
  3343. '荔湾区',
  3344. '海珠区',
  3345. '天河区',
  3346. '白云区',
  3347. '黄埔区',
  3348. '番禺区',
  3349. '花都区',
  3350. '南沙区',
  3351. '萝岗区',
  3352. '增城市',
  3353. '从化市'
  3354. ]
  3355. },
  3356. {
  3357. name: '深圳市',
  3358. districtAndCounty: ['福田区', '罗湖区', '南山区', '宝安区', '龙岗区', '盐田区']
  3359. },
  3360. {
  3361. name: '清远市',
  3362. districtAndCounty: [
  3363. '清城区',
  3364. '英德市',
  3365. '连州市',
  3366. '佛冈县',
  3367. '石角镇',
  3368. '阳山县',
  3369. '阳城镇',
  3370. '清新县',
  3371. '太和镇',
  3372. '连山壮族瑶族自治县',
  3373. '吉田镇',
  3374. '连南瑶族自治县',
  3375. '三江镇'
  3376. ]
  3377. },
  3378. {
  3379. name: '韶关市',
  3380. districtAndCounty: [
  3381. '浈江区',
  3382. '武江区',
  3383. '曲江区',
  3384. '乐昌市',
  3385. '南雄市',
  3386. '始兴县',
  3387. '太平镇',
  3388. '仁化县',
  3389. '仁化镇',
  3390. '翁源县',
  3391. '龙仙镇',
  3392. '新丰县',
  3393. '乳源瑶族自治县',
  3394. '乳城镇'
  3395. ]
  3396. },
  3397. {
  3398. name: '河源市',
  3399. districtAndCounty: [
  3400. '源城区',
  3401. '紫金县',
  3402. '紫城镇',
  3403. '龙川县',
  3404. '老隆镇',
  3405. '连平县',
  3406. '元善镇',
  3407. '和平县',
  3408. '阳明镇',
  3409. '东源县',
  3410. '仙塘镇'
  3411. ]
  3412. },
  3413. {
  3414. name: '梅州市',
  3415. districtAndCounty: [
  3416. '梅江区',
  3417. '兴宁市',
  3418. '梅县',
  3419. '程江镇',
  3420. '大埔县',
  3421. '湖寮镇',
  3422. '丰顺县',
  3423. '汤坑镇',
  3424. '五华县',
  3425. '水寨镇',
  3426. '平远县',
  3427. '大柘镇',
  3428. '蕉岭县',
  3429. '蕉城镇'
  3430. ]
  3431. },
  3432. {
  3433. name: '潮州市',
  3434. districtAndCounty: ['湘桥区', '潮安县', '庵埠镇', '饶平县', '黄冈镇']
  3435. },
  3436. {
  3437. name: '汕头市',
  3438. districtAndCounty: [
  3439. '金平区',
  3440. '濠江区',
  3441. '龙湖区',
  3442. '潮阳区',
  3443. '潮南区',
  3444. '澄海区',
  3445. '南澳县',
  3446. '后宅镇'
  3447. ]
  3448. },
  3449. {
  3450. name: '揭阳市',
  3451. districtAndCounty: [
  3452. '榕城区',
  3453. '普宁市',
  3454. '揭东县',
  3455. '曲溪镇',
  3456. '揭西县',
  3457. '河婆镇',
  3458. '惠来县',
  3459. '惠城镇'
  3460. ]
  3461. },
  3462. {
  3463. name: '汕尾市',
  3464. districtAndCounty: ['城区', '陆丰市', '海丰县', '海城镇', '陆河县', '河田镇']
  3465. },
  3466. {
  3467. name: '惠州市',
  3468. districtAndCounty: ['惠城区', '惠阳区', '博罗县', '罗阳镇', '惠东县', '龙门县']
  3469. },
  3470. {
  3471. name: '东莞市',
  3472. districtAndCounty: []
  3473. },
  3474. {
  3475. name: '珠海市',
  3476. districtAndCounty: ['香洲区', '斗门区', '金湾区']
  3477. },
  3478. {
  3479. name: '中山市',
  3480. districtAndCounty: []
  3481. },
  3482. {
  3483. name: '江门市',
  3484. districtAndCounty: ['江海区', '蓬江区', '新会区', '恩平市', '台山市', '开平市', '鹤山市']
  3485. },
  3486. {
  3487. name: '佛山市',
  3488. districtAndCounty: ['禅城区', '南海区', '顺德区', '三水区', '高明区']
  3489. },
  3490. {
  3491. name: '肇庆市',
  3492. districtAndCounty: [
  3493. '端州区',
  3494. '鼎湖区',
  3495. '高要市',
  3496. '四会市',
  3497. '广宁县',
  3498. '南街镇',
  3499. '怀集县',
  3500. '怀城镇',
  3501. '封开县',
  3502. '江口镇',
  3503. '德庆县'
  3504. ]
  3505. },
  3506. {
  3507. name: '云浮市',
  3508. districtAndCounty: [
  3509. '云城区',
  3510. '罗定市',
  3511. '云安县',
  3512. '六都镇',
  3513. '新兴县',
  3514. '新城镇',
  3515. '郁南县',
  3516. '都城镇'
  3517. ]
  3518. },
  3519. {
  3520. name: '阳江市',
  3521. districtAndCounty: ['江城区', '阳春市', '阳西县', '织镇', '阳东县', '东城镇']
  3522. },
  3523. {
  3524. name: '茂名市',
  3525. districtAndCounty: ['茂南区', '茂港区', '化州市', '信宜市', '高州市', '电白县', '水东镇']
  3526. },
  3527. {
  3528. name: '湛江市',
  3529. districtAndCounty: [
  3530. '赤坎区',
  3531. '霞山区',
  3532. '坡头区',
  3533. '麻章区',
  3534. '吴川市',
  3535. '廉江市',
  3536. '雷州市',
  3537. '遂溪县',
  3538. '遂城镇',
  3539. '徐闻县',
  3540. '撤销广州市东山区',
  3541. '芳村区',
  3542. '设立广州市南沙区',
  3543. '萝岗区'
  3544. ]
  3545. }
  3546. ]
  3547. },
  3548. {
  3549. name: '广西',
  3550. city: [
  3551. {
  3552. name: '南宁市',
  3553. districtAndCounty: [
  3554. '青秀区',
  3555. '兴宁区',
  3556. '江南区',
  3557. '西乡塘区',
  3558. '良庆区',
  3559. '邕宁区',
  3560. '武鸣县',
  3561. '横县',
  3562. '宾阳县',
  3563. '上林县',
  3564. '隆安县',
  3565. '马山县'
  3566. ]
  3567. },
  3568. {
  3569. name: '桂林市',
  3570. districtAndCounty: [
  3571. '象山区',
  3572. '叠彩区',
  3573. '秀峰区',
  3574. '七星区',
  3575. '雁山区',
  3576. '阳朔县',
  3577. '阳朔镇',
  3578. '临桂县',
  3579. '临桂镇',
  3580. '灵川县',
  3581. '灵川镇',
  3582. '全州县',
  3583. '全州镇',
  3584. '兴安县',
  3585. '兴安镇',
  3586. '永福县',
  3587. '永福镇',
  3588. '灌阳县',
  3589. '灌阳镇',
  3590. '资源县',
  3591. '资源镇',
  3592. '平乐县',
  3593. '平乐镇',
  3594. '荔浦县',
  3595. '荔城镇',
  3596. '龙胜各族自治县',
  3597. '龙胜镇',
  3598. '恭城瑶族自治县',
  3599. '恭城镇'
  3600. ]
  3601. },
  3602. {
  3603. name: '柳州市',
  3604. districtAndCounty: [
  3605. '城中区',
  3606. '鱼峰区',
  3607. '柳南区',
  3608. '柳北区',
  3609. '柳江县',
  3610. '拉堡镇',
  3611. '柳城县',
  3612. '大埔镇',
  3613. '鹿寨县',
  3614. '鹿寨镇',
  3615. '融安县',
  3616. '长安镇',
  3617. '三江侗族自治县',
  3618. '古宜镇',
  3619. '融水苗族自治县',
  3620. '融水镇'
  3621. ]
  3622. },
  3623. {
  3624. name: '梧州市',
  3625. districtAndCounty: [
  3626. '万秀区',
  3627. '蝶山区',
  3628. '长洲区',
  3629. '岑溪市',
  3630. '苍梧县',
  3631. '龙圩镇',
  3632. '藤县',
  3633. '藤州镇',
  3634. '蒙山县',
  3635. '蒙山镇'
  3636. ]
  3637. },
  3638. {
  3639. name: '贵港市',
  3640. districtAndCounty: ['港北区', '港南区', '覃塘区', '桂平市', '平南县', '平南镇']
  3641. },
  3642. {
  3643. name: '玉林市',
  3644. districtAndCounty: [
  3645. '玉州区',
  3646. '北流市',
  3647. '兴业县',
  3648. '石南镇',
  3649. '容县',
  3650. '容州镇',
  3651. '陆川县',
  3652. '陆城镇',
  3653. '博白县',
  3654. '博白镇'
  3655. ]
  3656. },
  3657. {
  3658. name: '钦州市',
  3659. districtAndCounty: ['钦南区', '钦北区', '灵山县', '灵城镇', '浦北县', '小江镇']
  3660. },
  3661. {
  3662. name: '北海市',
  3663. districtAndCounty: ['海城区', '银海区', '铁山港区', '合浦县', '廉州镇']
  3664. },
  3665. {
  3666. name: '防城港市',
  3667. districtAndCounty: ['港口区', '防城区', '东兴市', '上思县', '思阳镇']
  3668. },
  3669. {
  3670. name: '崇左市',
  3671. districtAndCounty: [
  3672. '江州区',
  3673. '凭祥市',
  3674. '扶绥县',
  3675. '新宁镇',
  3676. '大新县',
  3677. '桃城镇',
  3678. '天等县',
  3679. '天等镇',
  3680. '宁明县',
  3681. '城中镇',
  3682. '龙州县',
  3683. '龙州镇'
  3684. ]
  3685. },
  3686. {
  3687. name: '百色市',
  3688. districtAndCounty: [
  3689. '右江区',
  3690. '田阳县',
  3691. '田州镇',
  3692. '田东县',
  3693. '平马镇',
  3694. '平果县',
  3695. '马头镇',
  3696. '德保县',
  3697. '靖西县',
  3698. '新靖镇',
  3699. '那坡县',
  3700. '城厢镇',
  3701. '凌云县',
  3702. '泗城镇',
  3703. '乐业县',
  3704. '同乐镇',
  3705. '西林县',
  3706. '八达镇',
  3707. '田林县',
  3708. '乐里镇',
  3709. '隆林各族自治县',
  3710. '新州镇'
  3711. ]
  3712. },
  3713. {
  3714. name: '河池市',
  3715. districtAndCounty: [
  3716. '金城江区',
  3717. '宜州市',
  3718. '南丹县',
  3719. '天峨县',
  3720. '六排镇',
  3721. '凤山县',
  3722. '凤城镇',
  3723. '东兰县',
  3724. '东兰镇',
  3725. '巴马瑶族自治县',
  3726. '巴马镇',
  3727. '都安瑶族自治县',
  3728. '安阳镇',
  3729. '大化瑶族自治县',
  3730. '大化镇',
  3731. '罗城仫佬族自治县',
  3732. '东门镇',
  3733. '环江毛南族自治县',
  3734. '思恩镇'
  3735. ]
  3736. },
  3737. {
  3738. name: '来宾市',
  3739. districtAndCounty: [
  3740. '兴宾区',
  3741. '合山市',
  3742. '象州县',
  3743. '象州镇',
  3744. '武宣县',
  3745. '武宣镇',
  3746. '忻城县',
  3747. '金秀瑶族自治县',
  3748. '金秀镇'
  3749. ]
  3750. },
  3751. {
  3752. name: '贺州市',
  3753. districtAndCounty: [
  3754. '八步区',
  3755. '昭平县',
  3756. '昭平镇',
  3757. '钟山县',
  3758. '钟山镇',
  3759. '富川瑶族自治县',
  3760. '富阳镇'
  3761. ]
  3762. }
  3763. ]
  3764. },
  3765. {
  3766. name: '海南省',
  3767. city: [
  3768. {
  3769. name: '海口市',
  3770. districtAndCounty: ['龙华区', '秀英区', '琼山区', '美兰区']
  3771. },
  3772. {
  3773. name: '三亚市',
  3774. districtAndCounty: []
  3775. },
  3776. {
  3777. name: '省直辖行政单位',
  3778. districtAndCounty: [
  3779. '文昌市',
  3780. '琼海市',
  3781. '万宁市',
  3782. '五指山市',
  3783. '东方市',
  3784. '儋州市',
  3785. '临高县',
  3786. '临城镇',
  3787. '澄迈县',
  3788. '金江镇',
  3789. '定安县',
  3790. '定城镇',
  3791. '屯昌县',
  3792. '屯城镇',
  3793. '昌江黎族自治县',
  3794. '石碌镇',
  3795. '白沙黎族自治县',
  3796. '牙叉镇',
  3797. '琼中黎族苗族自治县',
  3798. '营根镇',
  3799. '陵水黎族自治县',
  3800. '椰林镇',
  3801. '保亭黎族苗族自治县',
  3802. '保城镇',
  3803. '乐东黎族自治县',
  3804. '抱由镇'
  3805. ]
  3806. }
  3807. ]
  3808. },
  3809. {
  3810. name: '四川省',
  3811. city: [
  3812. {
  3813. name: '成都市',
  3814. districtAndCounty: [
  3815. '青羊区',
  3816. '锦江区',
  3817. '金牛区',
  3818. '武侯区',
  3819. '成华区',
  3820. '龙泉驿区',
  3821. '青白江区',
  3822. '新都区',
  3823. '温江区',
  3824. '都江堰市',
  3825. '彭州市',
  3826. '邛崃市',
  3827. '崇州市',
  3828. '金堂县',
  3829. '赵镇',
  3830. '双流县',
  3831. '郫县',
  3832. '郫筒镇',
  3833. '大邑县',
  3834. '晋原镇',
  3835. '蒲江县',
  3836. '鹤山镇',
  3837. '新津县',
  3838. '五津镇'
  3839. ]
  3840. },
  3841. {
  3842. name: '广元市',
  3843. districtAndCounty: [
  3844. '市中区',
  3845. '元坝区',
  3846. '朝天区',
  3847. '旺苍县',
  3848. '东河镇',
  3849. '青川县',
  3850. '乔庄镇',
  3851. '剑阁县',
  3852. '下寺镇',
  3853. '苍溪县',
  3854. '陵江镇'
  3855. ]
  3856. },
  3857. {
  3858. name: '绵阳市',
  3859. districtAndCounty: [
  3860. '涪城区',
  3861. '游仙区',
  3862. '江油市',
  3863. '三台县',
  3864. '潼川镇',
  3865. '盐亭县',
  3866. '云溪镇',
  3867. '安县',
  3868. '花荄镇',
  3869. '梓潼县',
  3870. '文昌镇',
  3871. '北川羌族自治县',
  3872. '曲山镇',
  3873. '平武县',
  3874. '龙安镇'
  3875. ]
  3876. },
  3877. {
  3878. name: '德阳市',
  3879. districtAndCounty: [
  3880. '旌阳区',
  3881. '什邡市',
  3882. '广汉市',
  3883. '绵竹市',
  3884. '罗江县',
  3885. '罗江镇',
  3886. '中江县',
  3887. '凯江镇'
  3888. ]
  3889. },
  3890. {
  3891. name: '南充市',
  3892. districtAndCounty: [
  3893. '顺庆区',
  3894. '高坪区',
  3895. '嘉陵区',
  3896. '阆中市',
  3897. '南部县',
  3898. '南隆镇',
  3899. '营山县',
  3900. '朗池镇',
  3901. '蓬安县',
  3902. '周口镇',
  3903. '仪陇县',
  3904. '新政镇',
  3905. '西充县',
  3906. '晋城镇'
  3907. ]
  3908. },
  3909. {
  3910. name: '广安市',
  3911. districtAndCounty: [
  3912. '广安区',
  3913. '华蓥市',
  3914. '岳池县',
  3915. '九龙镇',
  3916. '武胜县',
  3917. '沿口镇',
  3918. '邻水县',
  3919. '鼎屏镇',
  3920. '前锋区'
  3921. ]
  3922. },
  3923. {
  3924. name: '遂宁市',
  3925. districtAndCounty: [
  3926. '船山区',
  3927. '安居区',
  3928. '蓬溪县',
  3929. '赤城镇',
  3930. '射洪县',
  3931. '太和镇',
  3932. '大英县',
  3933. '蓬莱镇'
  3934. ]
  3935. },
  3936. {
  3937. name: '内江市',
  3938. districtAndCounty: [
  3939. '市中区',
  3940. '东兴区',
  3941. '威远县',
  3942. '严陵镇',
  3943. '资中县',
  3944. '重龙镇',
  3945. '隆昌县',
  3946. '金鹅镇'
  3947. ]
  3948. },
  3949. {
  3950. name: '乐山市',
  3951. districtAndCounty: [
  3952. '市中区',
  3953. '沙湾区',
  3954. '五通桥区',
  3955. '金口河区',
  3956. '峨眉山市',
  3957. '犍为县',
  3958. '玉津镇',
  3959. '井研县',
  3960. '研城镇',
  3961. '夹江县',
  3962. '漹城镇',
  3963. '沐川县',
  3964. '沐溪镇',
  3965. '峨边彝族自治县',
  3966. '沙坪镇',
  3967. '马边彝族自治县',
  3968. '民建镇'
  3969. ]
  3970. },
  3971. {
  3972. name: '自贡市',
  3973. districtAndCounty: [
  3974. '自流井区',
  3975. '大安区',
  3976. '贡井区',
  3977. '沿滩区',
  3978. '荣县',
  3979. '旭阳镇',
  3980. '富顺县',
  3981. '富世镇'
  3982. ]
  3983. },
  3984. {
  3985. name: '泸州市',
  3986. districtAndCounty: [
  3987. '江阳区',
  3988. '纳溪区',
  3989. '龙马潭区',
  3990. '泸县',
  3991. '福集镇',
  3992. '合江县',
  3993. '合江镇',
  3994. '叙永县',
  3995. '叙永镇',
  3996. '古蔺县',
  3997. '古蔺镇'
  3998. ]
  3999. },
  4000. {
  4001. name: '宜宾市',
  4002. districtAndCounty: [
  4003. '翠屏区',
  4004. '宜宾县',
  4005. '柏溪镇',
  4006. '南溪县',
  4007. '南溪镇',
  4008. '江安县',
  4009. '江安镇',
  4010. '长宁县',
  4011. '长宁镇',
  4012. '高县',
  4013. '庆符镇',
  4014. '筠连县',
  4015. '筠连镇',
  4016. '珙县',
  4017. '巡场镇',
  4018. '兴文县',
  4019. '中城镇',
  4020. '屏山县',
  4021. '屏山镇'
  4022. ]
  4023. },
  4024. {
  4025. name: '攀枝花市',
  4026. districtAndCounty: ['东区', '西区', '仁和区', '米易县', '攀莲镇', '盐边县', '桐子林镇']
  4027. },
  4028. {
  4029. name: '巴中市',
  4030. districtAndCounty: ['巴州区', '通江县', '诺江镇', '南江县', '南江镇', '平昌县', '江口镇']
  4031. },
  4032. {
  4033. name: '达州市',
  4034. districtAndCounty: [
  4035. '通川区',
  4036. '万源市',
  4037. '达县',
  4038. '南外镇',
  4039. '宣汉县',
  4040. '东乡镇',
  4041. '开江县',
  4042. '新宁镇',
  4043. '大竹县',
  4044. '竹阳镇',
  4045. '渠县',
  4046. '渠江镇'
  4047. ]
  4048. },
  4049. {
  4050. name: '资阳市',
  4051. districtAndCounty: ['雁江区', '简阳市', '乐至县', '天池镇', '安岳县', '岳阳镇']
  4052. },
  4053. {
  4054. name: '眉山市',
  4055. districtAndCounty: [
  4056. '东坡区',
  4057. '仁寿县',
  4058. '文林镇',
  4059. '彭山县',
  4060. '凤鸣镇',
  4061. '洪雅县',
  4062. '洪川镇',
  4063. '丹棱县',
  4064. '丹棱镇',
  4065. '青神县',
  4066. '城厢镇'
  4067. ]
  4068. },
  4069. {
  4070. name: '雅安市',
  4071. districtAndCounty: [
  4072. '雨城区',
  4073. '名山县',
  4074. '蒙阳镇',
  4075. '荥经县',
  4076. '严道镇',
  4077. '汉源县',
  4078. '富林镇',
  4079. '石棉县',
  4080. '新棉镇',
  4081. '天全县',
  4082. '城厢镇',
  4083. '芦山县',
  4084. '芦阳镇',
  4085. '宝兴县',
  4086. '穆坪镇'
  4087. ]
  4088. },
  4089. {
  4090. name: '阿坝州',
  4091. districtAndCounty: [
  4092. '马尔康县',
  4093. '马尔康镇',
  4094. '汶川县',
  4095. '威州镇',
  4096. '理县',
  4097. '杂谷脑镇',
  4098. '茂县',
  4099. '凤仪镇',
  4100. '松潘县',
  4101. '进安镇',
  4102. '九寨沟县',
  4103. '永乐镇',
  4104. '金川县',
  4105. '金川镇',
  4106. '小金县',
  4107. '美兴镇',
  4108. '黑水县',
  4109. '芦花镇',
  4110. '壤塘县',
  4111. '壤柯镇',
  4112. '阿坝县',
  4113. '阿坝镇',
  4114. '若尔盖县',
  4115. '达扎寺镇',
  4116. '红原县',
  4117. '邛溪镇'
  4118. ]
  4119. },
  4120. {
  4121. name: '甘孜州',
  4122. districtAndCounty: [
  4123. '康定县',
  4124. '炉城镇',
  4125. '泸定县',
  4126. '泸桥镇',
  4127. '丹巴县',
  4128. '章谷镇',
  4129. '九龙县',
  4130. '呷尔镇',
  4131. '雅江县',
  4132. '河口镇',
  4133. '道孚县',
  4134. '鲜水镇',
  4135. '炉霍县',
  4136. '新都镇',
  4137. '甘孜县',
  4138. '甘孜镇',
  4139. '新龙县',
  4140. '茹龙镇',
  4141. '德格县',
  4142. '更庆镇',
  4143. '白玉县',
  4144. '建设镇',
  4145. '石渠县',
  4146. '尼呷镇',
  4147. '色达县',
  4148. '色柯镇',
  4149. '理塘县',
  4150. '高城镇',
  4151. '巴塘县',
  4152. '夏邛镇',
  4153. '乡城县',
  4154. '桑披镇',
  4155. '稻城县',
  4156. '金珠镇',
  4157. '得荣县',
  4158. '松麦镇'
  4159. ]
  4160. },
  4161. {
  4162. name: '凉山州',
  4163. districtAndCounty: [
  4164. '西昌市',
  4165. '盐源县',
  4166. '盐井镇',
  4167. '德昌县',
  4168. '德州镇',
  4169. '会理县',
  4170. '会东县',
  4171. '会东镇',
  4172. '宁南县',
  4173. '披砂镇',
  4174. '普格县',
  4175. '普基镇',
  4176. '布拖县',
  4177. '特木里镇',
  4178. '金阳县',
  4179. '天地坝镇',
  4180. '昭觉县',
  4181. '新城镇',
  4182. '喜德县',
  4183. '光明镇',
  4184. '冕宁县',
  4185. '城厢镇',
  4186. '越西县',
  4187. '越城镇',
  4188. '甘洛县',
  4189. '新市坝镇',
  4190. '美姑县',
  4191. '巴普镇',
  4192. '雷波县',
  4193. '锦城镇',
  4194. '木里藏族自治县',
  4195. '乔瓦镇'
  4196. ]
  4197. }
  4198. ]
  4199. },
  4200. {
  4201. name: '贵州省',
  4202. city: [
  4203. {
  4204. name: '贵阳市',
  4205. districtAndCounty: [
  4206. '乌当区',
  4207. '南明区',
  4208. '云岩区',
  4209. '花溪区',
  4210. '白云区',
  4211. '小河区',
  4212. '清镇市',
  4213. '开阳县',
  4214. '修文县',
  4215. '龙场镇',
  4216. '息烽县',
  4217. '永靖镇'
  4218. ]
  4219. },
  4220. {
  4221. name: '六盘水市',
  4222. districtAndCounty: ['钟山区', '盘县', '红果镇', '六枝特区', '平寨镇', '水城县']
  4223. },
  4224. {
  4225. name: '遵义市',
  4226. districtAndCounty: [
  4227. '红花岗区',
  4228. '汇川区',
  4229. '赤水市',
  4230. '仁怀市',
  4231. '遵义县',
  4232. '南白镇',
  4233. '桐梓县',
  4234. '娄山关镇',
  4235. '绥阳县',
  4236. '洋川镇',
  4237. '正安县',
  4238. '凤仪镇',
  4239. '凤冈县',
  4240. '龙泉镇',
  4241. '湄潭县',
  4242. '湄江镇',
  4243. '余庆县',
  4244. '白泥镇',
  4245. '习水县',
  4246. '东皇镇',
  4247. '道真仡佬族苗族自治县',
  4248. '玉溪镇',
  4249. '务川仡佬族苗族自治县',
  4250. '都濡镇'
  4251. ]
  4252. },
  4253. {
  4254. name: '安顺市',
  4255. districtAndCounty: [
  4256. '西秀区',
  4257. '平坝县',
  4258. '普定县',
  4259. '关岭布依族苗族自治县',
  4260. '关索镇',
  4261. '镇宁布依族苗族自治县',
  4262. '紫云苗族布依族自治县',
  4263. '松山镇'
  4264. ]
  4265. },
  4266. {
  4267. name: '毕节地区',
  4268. districtAndCounty: [
  4269. '毕节市',
  4270. '大方县',
  4271. '大方镇',
  4272. '黔西县',
  4273. '金沙县',
  4274. '织金县',
  4275. '纳雍县',
  4276. '雍熙镇',
  4277. '赫章县',
  4278. '威宁彝族回族苗族自治县',
  4279. '草海镇'
  4280. ]
  4281. },
  4282. {
  4283. name: '铜仁地区',
  4284. districtAndCounty: [
  4285. '铜仁市',
  4286. '江口县',
  4287. '双江镇',
  4288. '石阡县',
  4289. '汤山镇',
  4290. '思南县',
  4291. '思唐镇',
  4292. '德江县',
  4293. '青龙镇',
  4294. '玉屏侗族自治县',
  4295. '平溪镇',
  4296. '印江土家族苗族自治县',
  4297. '峨岭镇',
  4298. '沿河土家族自治县',
  4299. '和平镇',
  4300. '松桃苗族自治县',
  4301. '蓼皋镇',
  4302. '万山特区',
  4303. '万山镇'
  4304. ]
  4305. },
  4306. {
  4307. name: '黔东南州',
  4308. districtAndCounty: [
  4309. '凯里市',
  4310. '黄平县',
  4311. '新州镇',
  4312. '施秉县',
  4313. '三穗县',
  4314. '八弓镇',
  4315. '镇远县',
  4316. '阳镇',
  4317. '岑巩县',
  4318. '思旸镇',
  4319. '天柱县',
  4320. '凤城镇',
  4321. '锦屏县',
  4322. '三江镇',
  4323. '剑河县',
  4324. '革东镇',
  4325. '台江县',
  4326. '台拱镇',
  4327. '黎平县',
  4328. '德凤镇',
  4329. '榕江县',
  4330. '古州镇',
  4331. '从江县',
  4332. '丙妹镇',
  4333. '雷山县',
  4334. '丹江镇',
  4335. '麻江县',
  4336. '杏山镇',
  4337. '丹寨县',
  4338. '龙泉镇'
  4339. ]
  4340. },
  4341. {
  4342. name: '黔南州',
  4343. districtAndCounty: [
  4344. '都匀市',
  4345. '福泉市',
  4346. '荔波县',
  4347. '玉屏镇',
  4348. '贵定县',
  4349. '瓮安县',
  4350. '雍阳镇',
  4351. '独山县',
  4352. '平塘县',
  4353. '平湖镇',
  4354. '罗甸县',
  4355. '龙坪镇',
  4356. '长顺县',
  4357. '长寨镇',
  4358. '龙里县',
  4359. '龙山镇',
  4360. '惠水县',
  4361. '和平镇',
  4362. '三都水族自治县',
  4363. '三合镇'
  4364. ]
  4365. },
  4366. {
  4367. name: '黔西南州',
  4368. districtAndCounty: [
  4369. '兴义市',
  4370. '兴仁县',
  4371. '普安县',
  4372. '盘水镇',
  4373. '晴隆县',
  4374. '莲城镇',
  4375. '贞丰县',
  4376. '珉谷镇',
  4377. '望谟县',
  4378. '复兴镇',
  4379. '册亨县',
  4380. '者楼镇',
  4381. '安龙县',
  4382. '新安镇'
  4383. ]
  4384. }
  4385. ]
  4386. },
  4387. {
  4388. name: '云南省',
  4389. city: [
  4390. {
  4391. name: '昆明市',
  4392. districtAndCounty: [
  4393. '盘龙区',
  4394. '五华区',
  4395. '官渡区',
  4396. '西山区',
  4397. '东川区',
  4398. '安宁市',
  4399. '呈贡县',
  4400. '龙城镇',
  4401. '晋宁县',
  4402. '昆阳镇',
  4403. '富民县',
  4404. '永定镇',
  4405. '宜良县',
  4406. '匡远镇',
  4407. '嵩明县',
  4408. '嵩阳镇',
  4409. '石林彝族自治县',
  4410. '鹿阜镇',
  4411. '禄劝彝族苗族自治县',
  4412. '屏山镇',
  4413. '寻甸回族彝族自治县',
  4414. '仁德镇'
  4415. ]
  4416. },
  4417. {
  4418. name: '曲靖市',
  4419. districtAndCounty: [
  4420. '麒麟区',
  4421. '宣威市',
  4422. '马龙县',
  4423. '通泉镇',
  4424. '沾益县',
  4425. '西平镇',
  4426. '富源县',
  4427. '中安镇',
  4428. '罗平县',
  4429. '罗雄镇',
  4430. '师宗县',
  4431. '丹凤镇',
  4432. '陆良县',
  4433. '中枢镇',
  4434. '会泽县',
  4435. '金钟镇'
  4436. ]
  4437. },
  4438. {
  4439. name: '玉溪市',
  4440. districtAndCounty: [
  4441. '红塔区',
  4442. '江川县',
  4443. '大街镇',
  4444. '澄江县',
  4445. '凤麓镇',
  4446. '通海县',
  4447. '秀山镇',
  4448. '华宁县',
  4449. '宁州镇',
  4450. '易门县',
  4451. '龙泉镇',
  4452. '峨山彝族自治县',
  4453. '双江镇',
  4454. '新平彝族傣族自治县',
  4455. '桂山镇',
  4456. '元江哈尼族彝族傣族自治县',
  4457. '澧江镇'
  4458. ]
  4459. },
  4460. {
  4461. name: '保山市',
  4462. districtAndCounty: [
  4463. '隆阳区',
  4464. '施甸县',
  4465. '甸阳镇',
  4466. '腾冲县',
  4467. '腾越镇',
  4468. '龙陵县',
  4469. '龙山镇',
  4470. '昌宁县',
  4471. '田园镇'
  4472. ]
  4473. },
  4474. {
  4475. name: '昭通市',
  4476. districtAndCounty: [
  4477. '昭阳区',
  4478. '鲁甸县',
  4479. '文屏镇',
  4480. '巧家县',
  4481. '新华镇',
  4482. '盐津县',
  4483. '盐井镇',
  4484. '大关县',
  4485. '翠华镇',
  4486. '永善县',
  4487. '溪落渡镇',
  4488. '绥江县',
  4489. '中城镇',
  4490. '镇雄县',
  4491. '乌峰镇',
  4492. '彝良县',
  4493. '角奎镇',
  4494. '威信县',
  4495. '扎西镇',
  4496. '水富县',
  4497. '向家坝镇'
  4498. ]
  4499. },
  4500. {
  4501. name: '丽江市',
  4502. districtAndCounty: [
  4503. '古城区',
  4504. '永胜县',
  4505. '永北镇',
  4506. '华坪县',
  4507. '中心镇',
  4508. '玉龙纳西族自治县',
  4509. '黄山镇',
  4510. '宁蒗彝族自治县',
  4511. '大兴镇'
  4512. ]
  4513. },
  4514. {
  4515. name: '思茅市',
  4516. districtAndCounty: [
  4517. '翠云区',
  4518. '普洱哈尼族彝族自治县',
  4519. '宁洱镇',
  4520. '墨江哈尼族自治县',
  4521. '联珠镇',
  4522. '景东彝族自治县',
  4523. '锦屏镇',
  4524. '景谷傣族彝族自治县',
  4525. '威远镇',
  4526. '镇沅彝族哈尼族拉祜族自治县',
  4527. '恩乐镇',
  4528. '江城哈尼族彝族自治县',
  4529. '勐烈镇',
  4530. '孟连傣族拉祜族佤族自治县',
  4531. '娜允镇',
  4532. '澜沧拉祜族自治县',
  4533. '勐朗镇',
  4534. '西盟佤族自治县',
  4535. '勐梭镇'
  4536. ]
  4537. },
  4538. {
  4539. name: '临沧市',
  4540. districtAndCounty: [
  4541. '临翔区',
  4542. '凤庆县',
  4543. '凤山镇',
  4544. '云县',
  4545. '爱华镇',
  4546. '永德县',
  4547. '德党镇',
  4548. '镇康县',
  4549. '南伞镇',
  4550. '双江拉祜族佤族布朗族傣族自治县',
  4551. '勐勐镇',
  4552. '耿马傣族佤族自治县',
  4553. '耿马镇',
  4554. '沧源佤族自治县',
  4555. '勐董镇'
  4556. ]
  4557. },
  4558. {
  4559. name: '德宏州',
  4560. districtAndCounty: [
  4561. '潞西市',
  4562. '瑞丽市',
  4563. '梁河县',
  4564. '遮岛镇',
  4565. '盈江县',
  4566. '平原镇',
  4567. '陇川县',
  4568. '章凤镇'
  4569. ]
  4570. },
  4571. {
  4572. name: '怒江州',
  4573. districtAndCounty: [
  4574. '泸水县六库镇',
  4575. '泸水县',
  4576. '六库镇',
  4577. '福贡县',
  4578. '上帕镇',
  4579. '贡山独龙族怒族自治县',
  4580. '茨开镇',
  4581. '兰坪白族普米族自治县',
  4582. '金顶镇'
  4583. ]
  4584. },
  4585. {
  4586. name: '迪庆州',
  4587. districtAndCounty: [
  4588. '香格里拉县',
  4589. '建塘镇',
  4590. '德钦县',
  4591. '升平镇',
  4592. '维西傈僳族自治县',
  4593. '保和镇'
  4594. ]
  4595. },
  4596. {
  4597. name: '大理州',
  4598. districtAndCounty: [
  4599. '大理市',
  4600. '祥云县',
  4601. '祥城镇',
  4602. '宾川县',
  4603. '金牛镇',
  4604. '弥渡县',
  4605. '弥城镇',
  4606. '永平县',
  4607. '博南镇',
  4608. '云龙县',
  4609. '诺邓镇',
  4610. '洱源县',
  4611. '茈碧湖镇',
  4612. '剑川县',
  4613. '金华镇',
  4614. '鹤庆县',
  4615. '云鹤镇',
  4616. '漾濞彝族自治县',
  4617. '苍山西镇',
  4618. '南涧彝族自治县',
  4619. '南涧镇',
  4620. '巍山彝族回族自治县',
  4621. '南诏镇'
  4622. ]
  4623. },
  4624. {
  4625. name: '楚雄州',
  4626. districtAndCounty: [
  4627. '楚雄市',
  4628. '双柏县',
  4629. '妥甸镇',
  4630. '牟定县',
  4631. '共和镇',
  4632. '南华县',
  4633. '龙川镇',
  4634. '姚安县',
  4635. '栋川镇',
  4636. '大姚县',
  4637. '金碧镇',
  4638. '永仁县',
  4639. '永定镇',
  4640. '元谋县',
  4641. '元马镇',
  4642. '武定县',
  4643. '狮山镇',
  4644. '禄丰县',
  4645. '金山镇'
  4646. ]
  4647. },
  4648. {
  4649. name: '红河州',
  4650. districtAndCounty: [
  4651. '蒙自县',
  4652. '文澜镇',
  4653. '个旧市',
  4654. '开远市',
  4655. '绿春县',
  4656. '大兴镇',
  4657. '建水县',
  4658. '临安镇',
  4659. '石屏县',
  4660. '异龙镇',
  4661. '弥勒县',
  4662. '弥阳镇',
  4663. '泸西县',
  4664. '中枢镇',
  4665. '元阳县',
  4666. '南沙镇',
  4667. '红河县',
  4668. '迤萨镇',
  4669. '金平苗族瑶族傣族自治县',
  4670. '金河镇',
  4671. '河口瑶族自治县',
  4672. '河口镇',
  4673. '屏边苗族自治县',
  4674. '玉屏镇'
  4675. ]
  4676. },
  4677. {
  4678. name: '文山州',
  4679. districtAndCounty: [
  4680. '文山县',
  4681. '开化镇',
  4682. '砚山县',
  4683. '江那镇',
  4684. '西畴县',
  4685. '西洒镇',
  4686. '麻栗坡县',
  4687. '麻栗镇',
  4688. '马关县',
  4689. '马白镇',
  4690. '丘北县',
  4691. '锦屏镇',
  4692. '广南县',
  4693. '莲城镇',
  4694. '富宁县',
  4695. '新华镇'
  4696. ]
  4697. },
  4698. {
  4699. name: '西双版纳州',
  4700. districtAndCounty: ['景洪市', '勐海县', '勐海镇', '勐腊县', '勐腊镇']
  4701. }
  4702. ]
  4703. },
  4704. {
  4705. name: '西藏',
  4706. city: [
  4707. {
  4708. name: '拉萨市',
  4709. districtAndCounty: [
  4710. '城关区',
  4711. '林周县',
  4712. '甘丹曲果镇',
  4713. '当雄县',
  4714. '当曲卡镇',
  4715. '尼木县',
  4716. '塔荣镇',
  4717. '曲水县',
  4718. '曲水镇',
  4719. '堆龙德庆县',
  4720. '东嘎镇',
  4721. '达孜县',
  4722. '德庆镇',
  4723. '墨竹工卡县',
  4724. '工卡镇'
  4725. ]
  4726. },
  4727. {
  4728. name: '那曲地区',
  4729. districtAndCounty: [
  4730. '那曲县',
  4731. '那曲镇',
  4732. '嘉黎县',
  4733. '阿扎镇',
  4734. '比如县',
  4735. '比如镇',
  4736. '聂荣县',
  4737. '聂荣镇',
  4738. '安多县',
  4739. '帕那镇',
  4740. '申扎县',
  4741. '申扎镇',
  4742. '索县',
  4743. '亚拉镇',
  4744. '班戈县',
  4745. '普保镇',
  4746. '巴青县',
  4747. '拉西镇',
  4748. '尼玛县',
  4749. '尼玛镇'
  4750. ]
  4751. },
  4752. {
  4753. name: '昌都地区',
  4754. districtAndCounty: [
  4755. '昌都县',
  4756. '江达县',
  4757. '江达镇',
  4758. '贡觉县',
  4759. '莫洛镇',
  4760. '类乌齐县',
  4761. '桑多镇',
  4762. '丁青县',
  4763. '丁青镇',
  4764. '察雅县',
  4765. '烟多镇',
  4766. '八宿县',
  4767. '白玛镇',
  4768. '左贡县',
  4769. '旺达镇',
  4770. '芒康县',
  4771. '嘎托镇',
  4772. '洛隆县',
  4773. '孜托镇',
  4774. '边坝县',
  4775. '草卡镇'
  4776. ]
  4777. },
  4778. {
  4779. name: '林芝地区',
  4780. districtAndCounty: [
  4781. '林芝县',
  4782. '八一镇',
  4783. '工布江达县',
  4784. '工布江达镇',
  4785. '米林县',
  4786. '米林镇',
  4787. '墨脱县',
  4788. '墨脱镇',
  4789. '波密县',
  4790. '扎木镇',
  4791. '察隅县',
  4792. '竹瓦根镇',
  4793. '朗县',
  4794. '朗镇'
  4795. ]
  4796. },
  4797. {
  4798. name: '山南地区',
  4799. districtAndCounty: [
  4800. '乃东县',
  4801. '泽当镇',
  4802. '扎囊县',
  4803. '扎塘镇',
  4804. '贡嘎县',
  4805. '吉雄镇',
  4806. '桑日县',
  4807. '桑日镇',
  4808. '琼结县',
  4809. '琼结镇',
  4810. '曲松县',
  4811. '曲松镇',
  4812. '措美县',
  4813. '措美镇',
  4814. '洛扎县',
  4815. '洛扎镇',
  4816. '加查县',
  4817. '安绕镇',
  4818. '隆子县',
  4819. '隆子镇',
  4820. '错那县',
  4821. '错那镇',
  4822. '浪卡子县',
  4823. '浪卡子镇'
  4824. ]
  4825. },
  4826. {
  4827. name: '日喀则地区',
  4828. districtAndCounty: [
  4829. '日喀则市',
  4830. '南木林县',
  4831. '南木林镇',
  4832. '江孜县',
  4833. '江孜镇',
  4834. '定日县',
  4835. '协格尔镇',
  4836. '萨迦县',
  4837. '萨迦镇',
  4838. '拉孜县',
  4839. '曲下镇',
  4840. '昂仁县',
  4841. '卡嘎镇',
  4842. '谢通门县',
  4843. '卡嘎镇',
  4844. '白朗县',
  4845. '洛江镇',
  4846. '仁布县',
  4847. '德吉林镇',
  4848. '康马县',
  4849. '康马镇',
  4850. '定结县',
  4851. '江嘎镇',
  4852. '仲巴县',
  4853. '拉让乡',
  4854. '亚东县',
  4855. '下司马镇',
  4856. '吉隆县',
  4857. '宗嘎镇',
  4858. '聂拉木县',
  4859. '聂拉木镇',
  4860. '萨嘎县',
  4861. '加加镇',
  4862. '岗巴县',
  4863. '岗巴镇'
  4864. ]
  4865. },
  4866. {
  4867. name: '阿里地区',
  4868. districtAndCounty: [
  4869. '噶尔县',
  4870. '狮泉河镇',
  4871. '普兰县',
  4872. '普兰镇',
  4873. '札达县',
  4874. '托林镇',
  4875. '日土县',
  4876. '日土镇',
  4877. '革吉县',
  4878. '革吉镇',
  4879. '改则县',
  4880. '改则镇',
  4881. '措勤县',
  4882. '措勤镇',
  4883. '林芝县人民政府驻地由林芝镇迁至八一镇'
  4884. ]
  4885. }
  4886. ]
  4887. },
  4888. {
  4889. name: '陕西省',
  4890. city: [
  4891. {
  4892. name: '西安市',
  4893. districtAndCounty: [
  4894. '莲湖区',
  4895. '新城区',
  4896. '碑林区',
  4897. '灞桥区',
  4898. '未央区',
  4899. '雁塔区',
  4900. '阎良区',
  4901. '临潼区',
  4902. '长安区',
  4903. '蓝田县',
  4904. '蓝关镇',
  4905. '周至县',
  4906. '二曲镇',
  4907. '户县',
  4908. '甘亭镇',
  4909. '高陵县',
  4910. '鹿苑镇',
  4911. '港务区'
  4912. ]
  4913. },
  4914. {
  4915. name: '延安市',
  4916. districtAndCounty: [
  4917. '宝塔区',
  4918. '延长县',
  4919. '七里村镇',
  4920. '延川县',
  4921. '延川镇',
  4922. '子长县',
  4923. '瓦窑堡镇',
  4924. '安塞县',
  4925. '真武洞镇',
  4926. '志丹县',
  4927. '保安镇',
  4928. '吴起县',
  4929. '吴旗镇',
  4930. '甘泉县',
  4931. '富县',
  4932. '富城镇',
  4933. '洛川县',
  4934. '凤栖镇',
  4935. '宜川县',
  4936. '丹州镇',
  4937. '黄龙县',
  4938. '石堡镇',
  4939. '黄陵县',
  4940. '桥山镇'
  4941. ]
  4942. },
  4943. {
  4944. name: '铜川市',
  4945. districtAndCounty: ['耀州区', '王益区', '印台区', '宜君县']
  4946. },
  4947. {
  4948. name: '渭南市',
  4949. districtAndCounty: [
  4950. '临渭区',
  4951. '华阴市',
  4952. '韩城市',
  4953. '华县',
  4954. '华州镇',
  4955. '潼关县',
  4956. '大荔县',
  4957. '蒲城县',
  4958. '澄城县',
  4959. '白水县',
  4960. '合阳县',
  4961. '富平县',
  4962. '窦村镇'
  4963. ]
  4964. },
  4965. {
  4966. name: '咸阳市',
  4967. districtAndCounty: [
  4968. '秦都区',
  4969. '杨陵区',
  4970. '渭城区',
  4971. '兴平市',
  4972. '三原县',
  4973. '泾阳县',
  4974. '泾干镇',
  4975. '乾县',
  4976. '礼泉县',
  4977. '永寿县',
  4978. '监军镇',
  4979. '彬县',
  4980. '长武县',
  4981. '昭仁镇',
  4982. '旬邑县',
  4983. '淳化县',
  4984. '武功县',
  4985. '普集镇'
  4986. ]
  4987. },
  4988. {
  4989. name: '宝鸡市',
  4990. districtAndCounty: [
  4991. '渭滨区',
  4992. '金台区',
  4993. '陈仓区',
  4994. '凤翔县',
  4995. '岐山县',
  4996. '凤鸣镇',
  4997. '扶风县',
  4998. '眉县',
  4999. '首善镇',
  5000. '陇县',
  5001. '千阳县',
  5002. '麟游县',
  5003. '九成宫镇',
  5004. '凤县',
  5005. '双石铺镇',
  5006. '太白县',
  5007. '嘴头镇'
  5008. ]
  5009. },
  5010. {
  5011. name: '汉中市',
  5012. districtAndCounty: [
  5013. '汉台区',
  5014. '南郑县',
  5015. '城固县',
  5016. '博望镇',
  5017. '洋县',
  5018. '洋州镇',
  5019. '西乡县',
  5020. '勉县',
  5021. '勉阳镇',
  5022. '宁强县',
  5023. '汉源镇',
  5024. '略阳县',
  5025. '镇巴县',
  5026. '泾洋镇',
  5027. '留坝县',
  5028. '佛坪县',
  5029. '袁家庄镇'
  5030. ]
  5031. },
  5032. {
  5033. name: '榆林市',
  5034. districtAndCounty: [
  5035. '榆阳区',
  5036. '神木县',
  5037. '神木镇',
  5038. '府谷县',
  5039. '府谷镇',
  5040. '横山县',
  5041. '横山镇',
  5042. '靖边县',
  5043. '张家畔镇',
  5044. '定边县',
  5045. '定边镇',
  5046. '绥德县',
  5047. '名州镇',
  5048. '米脂县',
  5049. '银州镇',
  5050. '佳县',
  5051. '佳芦镇',
  5052. '吴堡县',
  5053. '宋家川镇',
  5054. '清涧县',
  5055. '宽洲镇',
  5056. '子洲县',
  5057. '双湖峪镇'
  5058. ]
  5059. },
  5060. {
  5061. name: '安康市',
  5062. districtAndCounty: [
  5063. '汉滨区',
  5064. '汉阴县',
  5065. '石泉县',
  5066. '宁陕县',
  5067. '紫阳县',
  5068. '岚皋县',
  5069. '平利县',
  5070. '镇坪县',
  5071. '旬阳县',
  5072. '白河县'
  5073. ]
  5074. },
  5075. {
  5076. name: '商洛市',
  5077. districtAndCounty: [
  5078. '商州区',
  5079. '洛南县',
  5080. '丹凤县',
  5081. '龙驹寨镇',
  5082. '商南县',
  5083. '山阳县',
  5084. '镇安县',
  5085. '永乐镇',
  5086. '柞水县',
  5087. '乾佑镇'
  5088. ]
  5089. }
  5090. ]
  5091. },
  5092. {
  5093. name: '甘肃省',
  5094. city: [
  5095. {
  5096. name: '兰州市',
  5097. districtAndCounty: [
  5098. '城关区',
  5099. '七里河区',
  5100. '西固区',
  5101. '安宁区',
  5102. '红古区',
  5103. '永登县',
  5104. '皋兰县',
  5105. '石洞镇',
  5106. '榆中县'
  5107. ]
  5108. },
  5109. {
  5110. name: '嘉峪关市',
  5111. districtAndCounty: ['金昌市', '金川区', '永昌县']
  5112. },
  5113. {
  5114. name: '白银市',
  5115. districtAndCounty: [
  5116. '白银区',
  5117. '平川区',
  5118. '靖远县',
  5119. '乌兰镇',
  5120. '会宁县',
  5121. '会师镇',
  5122. '景泰县',
  5123. '一条山镇'
  5124. ]
  5125. },
  5126. {
  5127. name: '天水市',
  5128. districtAndCounty: [
  5129. '秦州区',
  5130. '麦积区',
  5131. '清水县',
  5132. '永清镇',
  5133. '秦安县',
  5134. '兴国镇',
  5135. '甘谷县',
  5136. '大像山镇',
  5137. '武山县',
  5138. '张家川回族自治县',
  5139. '张家川镇'
  5140. ]
  5141. },
  5142. {
  5143. name: '武威市',
  5144. districtAndCounty: ['凉州区', '民勤县', '古浪县', '古浪镇', '天祝藏族自治县', '华藏寺镇']
  5145. },
  5146. {
  5147. name: '酒泉市',
  5148. districtAndCounty: [
  5149. '肃州区',
  5150. '玉门市',
  5151. '敦煌市',
  5152. '金塔县',
  5153. '金塔镇',
  5154. '安西县',
  5155. '渊泉镇',
  5156. '肃北蒙古族自治县',
  5157. '党城湾镇',
  5158. '阿克塞哈萨克族自治县',
  5159. '红柳湾镇'
  5160. ]
  5161. },
  5162. {
  5163. name: '张掖市',
  5164. districtAndCounty: [
  5165. '甘州区',
  5166. '民乐县',
  5167. '洪水镇',
  5168. '临泽县',
  5169. '沙河镇',
  5170. '高台县',
  5171. '山丹县',
  5172. '清泉镇',
  5173. '肃南裕固族自治县',
  5174. '红湾寺镇'
  5175. ]
  5176. },
  5177. {
  5178. name: '庆阳市',
  5179. districtAndCounty: [
  5180. '西峰区',
  5181. '庆城县',
  5182. '庆城镇',
  5183. '环县',
  5184. '环城镇',
  5185. '华池县',
  5186. '柔远镇',
  5187. '合水县',
  5188. '西华池镇',
  5189. '正宁县',
  5190. '山河镇',
  5191. '宁县',
  5192. '新宁镇',
  5193. '镇原县'
  5194. ]
  5195. },
  5196. {
  5197. name: '平凉市',
  5198. districtAndCounty: [
  5199. '崆峒区',
  5200. '泾川县',
  5201. '灵台县',
  5202. '中台镇',
  5203. '崇信县',
  5204. '锦屏镇',
  5205. '华亭县',
  5206. '东华镇',
  5207. '庄浪县',
  5208. '水洛镇',
  5209. '静宁县'
  5210. ]
  5211. },
  5212. {
  5213. name: '定西市',
  5214. districtAndCounty: [
  5215. '安定区',
  5216. '通渭县',
  5217. '平襄镇',
  5218. '临洮县',
  5219. '洮阳镇',
  5220. '漳县',
  5221. '武阳镇',
  5222. '岷县',
  5223. '岷阳镇',
  5224. '渭源县',
  5225. '清源镇',
  5226. '陇西县',
  5227. '巩昌镇'
  5228. ]
  5229. },
  5230. {
  5231. name: '陇南市',
  5232. districtAndCounty: [
  5233. '武都区',
  5234. '成县',
  5235. '宕昌县',
  5236. '康县',
  5237. '文县',
  5238. '西和县',
  5239. '汉源镇',
  5240. '礼县',
  5241. '两当县',
  5242. '徽县'
  5243. ]
  5244. },
  5245. {
  5246. name: '临夏州',
  5247. districtAndCounty: [
  5248. '临夏市',
  5249. '临夏县',
  5250. '韩集镇',
  5251. '康乐县',
  5252. '附城镇',
  5253. '永靖县',
  5254. '刘家峡镇',
  5255. '广河县',
  5256. '和政县',
  5257. '东乡族自治县',
  5258. '锁南坝镇',
  5259. '积石山保安族东乡族撒拉族自治县',
  5260. '吹麻滩镇'
  5261. ]
  5262. },
  5263. {
  5264. name: '甘南州',
  5265. districtAndCounty: [
  5266. '合作市',
  5267. '临潭县',
  5268. '卓尼县',
  5269. '柳林镇',
  5270. '舟曲县',
  5271. '迭部县',
  5272. '电尕镇',
  5273. '玛曲县',
  5274. '尼玛镇',
  5275. '碌曲县',
  5276. '玛艾镇',
  5277. '夏河县',
  5278. '拉卜楞镇'
  5279. ]
  5280. }
  5281. ]
  5282. },
  5283. {
  5284. name: '青海省',
  5285. city: [
  5286. {
  5287. name: '西宁市',
  5288. districtAndCounty: [
  5289. '城中区',
  5290. '城东区',
  5291. '城西区',
  5292. '城北区',
  5293. '大通回族土族自治县',
  5294. '桥头镇',
  5295. '湟源县',
  5296. '湟中县',
  5297. '鲁沙尔镇'
  5298. ]
  5299. },
  5300. {
  5301. name: '海东地区',
  5302. districtAndCounty: [
  5303. '平安县',
  5304. '平安镇',
  5305. '乐都县',
  5306. '碾伯镇',
  5307. '民和回族土族自治县',
  5308. '川口镇',
  5309. '互助土族自治县',
  5310. '威远镇',
  5311. '化隆回族自治县',
  5312. '巴燕镇',
  5313. '循化撒拉族自治县',
  5314. '积石镇'
  5315. ]
  5316. },
  5317. {
  5318. name: '海北州',
  5319. districtAndCounty: [
  5320. '海晏县',
  5321. '三角城镇',
  5322. '祁连县',
  5323. '八宝镇',
  5324. '刚察县',
  5325. '沙柳河镇',
  5326. '门源回族自治县',
  5327. '浩门镇'
  5328. ]
  5329. },
  5330. {
  5331. name: '海南州',
  5332. districtAndCounty: [
  5333. '共和县',
  5334. '恰卜恰镇',
  5335. '同德县',
  5336. '尕巴松多镇',
  5337. '贵德县',
  5338. '河阴镇',
  5339. '兴海县',
  5340. '子科滩镇',
  5341. '贵南县',
  5342. '茫曲镇'
  5343. ]
  5344. },
  5345. {
  5346. name: '黄南州',
  5347. districtAndCounty: [
  5348. '同仁县',
  5349. '隆务镇',
  5350. '尖扎县',
  5351. '马克唐镇',
  5352. '泽库县',
  5353. '泽曲镇',
  5354. '河南蒙古族自治县',
  5355. '优干宁镇'
  5356. ]
  5357. },
  5358. {
  5359. name: '果洛州',
  5360. districtAndCounty: [
  5361. '玛沁县',
  5362. '大武镇',
  5363. '班玛县',
  5364. '赛来塘镇',
  5365. '甘德县',
  5366. '柯曲镇',
  5367. '达日县',
  5368. '吉迈镇',
  5369. '久治县',
  5370. '智青松多镇',
  5371. '玛多县',
  5372. '黄河乡'
  5373. ]
  5374. },
  5375. {
  5376. name: '玉树州',
  5377. districtAndCounty: [
  5378. '玉树县',
  5379. '结古镇',
  5380. '杂多县',
  5381. '萨呼腾镇',
  5382. '称多县',
  5383. '称文镇',
  5384. '治多县',
  5385. '加吉博洛镇',
  5386. '囊谦县',
  5387. '香达镇',
  5388. '曲麻莱县',
  5389. '约改镇'
  5390. ]
  5391. },
  5392. {
  5393. name: '海西州',
  5394. districtAndCounty: [
  5395. '德令哈市',
  5396. '格尔木市',
  5397. '乌兰县',
  5398. '希里沟镇',
  5399. '都兰县',
  5400. '察汗乌苏镇',
  5401. '天峻县',
  5402. '新源镇'
  5403. ]
  5404. }
  5405. ]
  5406. },
  5407. {
  5408. name: '宁夏',
  5409. city: [
  5410. {
  5411. name: '银川市',
  5412. districtAndCounty: [
  5413. '兴庆区',
  5414. '金凤区',
  5415. '西夏区',
  5416. '灵武市',
  5417. '永宁县',
  5418. '杨和镇',
  5419. '贺兰县',
  5420. '习岗镇'
  5421. ]
  5422. },
  5423. {
  5424. name: '石嘴山市',
  5425. districtAndCounty: ['大武口区', '惠农区', '平罗县']
  5426. },
  5427. {
  5428. name: '吴忠市',
  5429. districtAndCounty: ['利通区', '青铜峡市', '盐池县', '花马池镇', '同心县', '豫海镇']
  5430. },
  5431. {
  5432. name: '固原市',
  5433. districtAndCounty: [
  5434. '原州区',
  5435. '西吉县',
  5436. '吉强镇',
  5437. '隆德县',
  5438. '泾源县',
  5439. '香水镇',
  5440. '彭阳县',
  5441. '白阳镇'
  5442. ]
  5443. },
  5444. {
  5445. name: '中卫市',
  5446. districtAndCounty: ['沙坡头区', '中宁县', '海原县']
  5447. }
  5448. ]
  5449. },
  5450. {
  5451. name: '新疆',
  5452. city: [
  5453. {
  5454. name: '乌鲁木齐市',
  5455. districtAndCounty: [
  5456. '天山区',
  5457. '沙依巴克区',
  5458. '新市区',
  5459. '水磨沟区',
  5460. '头屯河区',
  5461. '达坂城区',
  5462. '东山区',
  5463. '乌鲁木齐县',
  5464. '乌鲁木齐市水磨沟区'
  5465. ]
  5466. },
  5467. {
  5468. name: '克拉玛依市',
  5469. districtAndCounty: ['克拉玛依区', '独山子区', '白碱滩区', '乌尔禾区']
  5470. },
  5471. {
  5472. name: '自治区直辖县级行政单位',
  5473. districtAndCounty: ['石河子市', '阿拉尔市', '图木舒克市', '五家渠市']
  5474. },
  5475. {
  5476. name: '喀什地区',
  5477. districtAndCounty: [
  5478. '喀什市',
  5479. '疏附县',
  5480. '托克扎克镇',
  5481. '疏勒县',
  5482. '疏勒镇',
  5483. '英吉沙县',
  5484. '英吉沙镇',
  5485. '泽普县',
  5486. '泽普镇',
  5487. '莎车县',
  5488. '莎车镇',
  5489. '叶城县',
  5490. '喀格勒克镇',
  5491. '麦盖提县',
  5492. '麦盖提镇',
  5493. '岳普湖县',
  5494. '岳普湖镇',
  5495. '伽师县',
  5496. '巴仁镇',
  5497. '巴楚县',
  5498. '巴楚镇',
  5499. '塔什库尔干塔吉克自治县',
  5500. '塔什库尔干镇'
  5501. ]
  5502. },
  5503. {
  5504. name: '阿克苏地区',
  5505. districtAndCounty: [
  5506. '阿克苏市',
  5507. '温宿县',
  5508. '温宿镇',
  5509. '库车县',
  5510. '库车镇',
  5511. '沙雅县',
  5512. '沙雅镇',
  5513. '新和县',
  5514. '新和镇',
  5515. '拜城县',
  5516. '拜城镇',
  5517. '乌什县',
  5518. '乌什镇',
  5519. '阿瓦提县',
  5520. '阿瓦提镇',
  5521. '柯坪县',
  5522. '柯坪镇'
  5523. ]
  5524. },
  5525. {
  5526. name: '和田地区',
  5527. districtAndCounty: [
  5528. '和田市',
  5529. '和田县',
  5530. '墨玉县',
  5531. '喀拉喀什镇',
  5532. '皮山县',
  5533. '固玛镇',
  5534. '洛浦县',
  5535. '洛浦镇',
  5536. '策勒县',
  5537. '策勒镇',
  5538. '于田县',
  5539. '木尕拉镇',
  5540. '民丰县',
  5541. '尼雅镇'
  5542. ]
  5543. },
  5544. {
  5545. name: '吐鲁番地区',
  5546. districtAndCounty: ['吐鲁番市', '鄯善县', '鄯善镇', '托克逊县', '托克逊镇']
  5547. },
  5548. {
  5549. name: '哈密地区',
  5550. districtAndCounty: ['哈密市', '伊吾县', '伊吾镇', '巴里坤哈萨克自治县', '巴里坤镇']
  5551. },
  5552. {
  5553. name: '克孜勒苏柯州',
  5554. districtAndCounty: [
  5555. '阿图什市',
  5556. '阿克陶县',
  5557. '阿克陶镇',
  5558. '阿合奇县',
  5559. '阿合奇镇',
  5560. '乌恰县',
  5561. '乌恰镇'
  5562. ]
  5563. },
  5564. {
  5565. name: '博尔塔拉州',
  5566. districtAndCounty: ['博乐市', '精河县', '精河镇', '温泉县', '博格达尔镇']
  5567. },
  5568. {
  5569. name: '昌吉州',
  5570. districtAndCounty: [
  5571. '昌吉市',
  5572. '阜康市',
  5573. '米泉市',
  5574. '呼图壁县',
  5575. '呼图壁镇',
  5576. '玛纳斯县',
  5577. '玛纳斯镇',
  5578. '奇台县',
  5579. '奇台镇',
  5580. '吉木萨尔县',
  5581. '吉木萨尔镇',
  5582. '木垒哈萨克自治县',
  5583. '木垒镇'
  5584. ]
  5585. },
  5586. {
  5587. name: '巴音郭楞州',
  5588. districtAndCounty: [
  5589. '库尔勒市',
  5590. '轮台县',
  5591. '轮台镇',
  5592. '尉犁县',
  5593. '尉犁镇',
  5594. '若羌县',
  5595. '若羌镇',
  5596. '且末县',
  5597. '且末镇',
  5598. '和静县',
  5599. '和静镇',
  5600. '和硕县',
  5601. '特吾里克镇',
  5602. '博湖县',
  5603. '博湖镇',
  5604. '焉耆回族自治县',
  5605. '焉耆镇'
  5606. ]
  5607. },
  5608. {
  5609. name: '伊犁州',
  5610. districtAndCounty: [
  5611. '伊宁市',
  5612. '奎屯市',
  5613. '伊宁县',
  5614. '吉里于孜镇',
  5615. '霍城县',
  5616. '水定镇',
  5617. '巩留县',
  5618. '巩留镇',
  5619. '新源县',
  5620. '新源镇',
  5621. '昭苏县',
  5622. '昭苏镇',
  5623. '特克斯县',
  5624. '特克斯镇',
  5625. '尼勒克县',
  5626. '尼勒克镇',
  5627. '察布查尔锡伯自治县',
  5628. '察布查尔镇'
  5629. ]
  5630. },
  5631. {
  5632. name: '塔城地区',
  5633. districtAndCounty: [
  5634. '塔城市',
  5635. '乌苏市',
  5636. '额敏县',
  5637. '额敏镇',
  5638. '沙湾县',
  5639. '三道河子镇',
  5640. '托里县',
  5641. '托里镇',
  5642. '裕民县',
  5643. '哈拉布拉镇',
  5644. '和布克赛尔蒙古自治县',
  5645. '和布克赛尔镇'
  5646. ]
  5647. },
  5648. {
  5649. name: '阿勒泰地区',
  5650. districtAndCounty: [
  5651. '阿勒泰市',
  5652. '布尔津县',
  5653. '布尔津镇',
  5654. '富蕴县',
  5655. '库额尔齐斯镇',
  5656. '福海县',
  5657. '哈巴河县',
  5658. '青河县',
  5659. '吉木乃县'
  5660. ]
  5661. }
  5662. ]
  5663. },
  5664. {
  5665. name: '香港',
  5666. city: [
  5667. {
  5668. name: '香港特别行政区',
  5669. districtAndCounty: [
  5670. '中西区',
  5671. '东区',
  5672. '九龙城区',
  5673. '观塘区',
  5674. '南区',
  5675. '深水埗区',
  5676. '湾仔区',
  5677. '黄大仙区',
  5678. '油尖旺区',
  5679. '离岛区',
  5680. '葵青区',
  5681. '北区',
  5682. '西贡区',
  5683. '沙田区',
  5684. '屯门区',
  5685. '大埔区',
  5686. '荃湾区',
  5687. '元朗区'
  5688. ]
  5689. }
  5690. ]
  5691. },
  5692. {
  5693. name: '澳门',
  5694. city: [
  5695. {
  5696. name: '澳门特别行政区',
  5697. districtAndCounty: ['澳门特别行政区']
  5698. }
  5699. ]
  5700. },
  5701. {
  5702. name: '台湾省',
  5703. city: [
  5704. {
  5705. name: '台北',
  5706. districtAndCounty: []
  5707. },
  5708. {
  5709. name: '高雄',
  5710. districtAndCounty: []
  5711. },
  5712. {
  5713. name: '台中',
  5714. districtAndCounty: []
  5715. },
  5716. {
  5717. name: '花莲',
  5718. districtAndCounty: []
  5719. },
  5720. {
  5721. name: '基隆',
  5722. districtAndCounty: []
  5723. },
  5724. {
  5725. name: '嘉义',
  5726. districtAndCounty: []
  5727. },
  5728. {
  5729. name: '金门',
  5730. districtAndCounty: []
  5731. },
  5732. {
  5733. name: '连江',
  5734. districtAndCounty: []
  5735. },
  5736. {
  5737. name: '苗栗',
  5738. districtAndCounty: []
  5739. },
  5740. {
  5741. name: '南投',
  5742. districtAndCounty: []
  5743. },
  5744. {
  5745. name: '澎湖',
  5746. districtAndCounty: []
  5747. },
  5748. {
  5749. name: '屏东',
  5750. districtAndCounty: []
  5751. },
  5752. {
  5753. name: '台东',
  5754. districtAndCounty: []
  5755. },
  5756. {
  5757. name: '台南',
  5758. districtAndCounty: []
  5759. },
  5760. {
  5761. name: '桃园',
  5762. districtAndCounty: []
  5763. },
  5764. {
  5765. name: '新竹',
  5766. districtAndCounty: []
  5767. },
  5768. {
  5769. name: '宜兰',
  5770. districtAndCounty: []
  5771. },
  5772. {
  5773. name: '云林',
  5774. districtAndCounty: []
  5775. },
  5776. {
  5777. name: '彰化',
  5778. districtAndCounty: []
  5779. }
  5780. ]
  5781. }
  5782. ]
  5783. const myCity = []
  5784. myCityTemp.forEach(v => {
  5785. const obj1 = {
  5786. value: v.name,
  5787. label: v.name,
  5788. children: v.city.map(v2 => ({
  5789. value: v2.name,
  5790. label: v2.name,
  5791. children: v2.districtAndCounty.map(v3 => ({
  5792. value: v3,
  5793. label: v3
  5794. }))
  5795. }))
  5796. }
  5797. myCity.push(obj1)
  5798. })