移动端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2 年之前
2 年之前
2 年之前
3 年之前
3 年之前
3 年之前
2 年之前
3 年之前
3 年之前
1 年之前
3 年之前
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500
  1. import request from '@/utils/request'
  2. // 用户信息
  3. export function getMember(id){
  4. return request({
  5. url: '/transaction/member/userId/'+id,
  6. method: 'get',
  7. })
  8. }
  9. // 展示图片
  10. export function showUserImg(id){
  11. return request({
  12. url: 'transaction/member/showImg/memberId/'+id,
  13. method: 'get',
  14. })
  15. }
  16. //更新用户资料
  17. export function userUpdate(query){
  18. return request({
  19. url: '/transaction/member/edit',
  20. method: 'post',
  21. data: query
  22. })
  23. }
  24. //更新密码
  25. export function passWordUpdate(oldPassword, newPassword){
  26. const data = {
  27. oldPassword,
  28. newPassword
  29. }
  30. return request({
  31. url: '/system/user/profile/updatePwd',
  32. method: 'post',
  33. params: data
  34. })
  35. }
  36. //上传用户图片
  37. export function base64Attach(query){
  38. return request({
  39. url: '/common/base64Attach',
  40. method: 'post',
  41. data: query
  42. })
  43. }
  44. //删除用户图片
  45. export function deleteUserImg(id){
  46. return request({
  47. url: '/transaction/member/deleteImg/attachId/'+id,
  48. method: 'get',
  49. })
  50. }
  51. //发布咨询
  52. export function userCommunicate(query){
  53. return request({
  54. url: '/transaction/communicate/add',
  55. method: 'post',
  56. data: query
  57. })
  58. }
  59. //查询咨询
  60. export function userConsulting(query){
  61. return request({
  62. url: '/transaction/communicate/communicateList/member',
  63. method: 'get',
  64. params: query
  65. })
  66. }
  67. //修改咨询
  68. export function updateCommunicate(query){
  69. return request({
  70. url: '/transaction/communicate/edit',
  71. method: 'post',
  72. data: query
  73. })
  74. }
  75. //咨询详情
  76. export function selectCommunicate(id){
  77. return request({
  78. url: '/transaction/communicate/get/'+id,
  79. method: 'get'
  80. })
  81. }
  82. //删除咨询
  83. export function deleteInteraction(id){
  84. return request({
  85. url: '/transaction/communicate/remove/'+id,
  86. method: 'get'
  87. })
  88. }
  89. //查询供求
  90. export function supplyList(query){
  91. return request({
  92. url: '/transaction/demand/supplyDemandList/member',
  93. method: 'get',
  94. params: query
  95. })
  96. }
  97. //查询我的报名
  98. export function getSignupByMemberId(query){
  99. return request({
  100. url: '/transaction/signup/getSignupByMemberId',
  101. method: 'get',
  102. params: query
  103. })
  104. }
  105. //发布供求
  106. export function userDemand(query){
  107. return request({
  108. url: '/transaction/demand/add',
  109. method: 'post',
  110. data: query
  111. })
  112. }
  113. //修改供求
  114. export function updateDemand(query){
  115. return request({
  116. url: '/transaction/demand/edit',
  117. method: 'post',
  118. data: query
  119. })
  120. }
  121. //供求查询
  122. export function selectDemand(id){
  123. return request({
  124. url: '/transaction/demand/'+id,
  125. method: 'get',
  126. })
  127. }
  128. //个人供求
  129. export function supplyDetail(id) {
  130. return request({
  131. url: '/transaction/website/supplyDemand/id/'+id,
  132. method: 'get',
  133. })
  134. }
  135. //删除供求
  136. export function deleteSupply(id){
  137. return request({
  138. url: '/transaction/demand/remove/'+id,
  139. method: 'get'
  140. })
  141. }
  142. // 展示图片
  143. export function showImg(id){
  144. return request({
  145. url: '/transaction/website/supplyDemand/showImg/id/'+id,
  146. method: 'get',
  147. })
  148. }
  149. //我的竞价
  150. export function biddinglist(query){
  151. return request({
  152. url: '/transaction/outproject/biddinglist/member',
  153. method: 'get',
  154. params: query
  155. })
  156. }
  157. //我的竞价
  158. export function userBiddingList(query){
  159. return request({
  160. url: '/transaction/website/biddinglist/projectId',
  161. method: 'get',
  162. params: query
  163. })
  164. }
  165. //查询开户行
  166. export function realtimeList(query){
  167. return request({
  168. url: '/yinnong/deposit/realtimeList',
  169. method: 'post',
  170. data: query
  171. })
  172. }
  173. // 查询审批历史
  174. export function auditHistoryList(params) {
  175. return request({
  176. url: '/transaction/website/auditHistory/list',
  177. method: 'get',
  178. params: params
  179. });
  180. }
  181. export const options = [
  182. {
  183. "value": "北京",
  184. "label": "北京",
  185. "children": [
  186. {
  187. "value": "北京",
  188. "label": "北京",
  189. }]
  190. }, {
  191. "value": "天津",
  192. "label": "天津",
  193. "children": [
  194. {
  195. "value": "天津",
  196. "label": "天津",
  197. }]
  198. }, {
  199. "value": "重庆",
  200. "label": "重庆",
  201. "children": [
  202. {
  203. "value": "重庆",
  204. "label": "重庆",
  205. }]
  206. }, {
  207. "value": "四川",
  208. "label": "四川",
  209. "children": [
  210. {
  211. "value": "成都",
  212. "label": "成都",
  213. }, {
  214. "value": "自贡",
  215. "label": "自贡",
  216. }, {
  217. "value": "攀枝花",
  218. "label": "攀枝花",
  219. }, {
  220. "value": "泸州",
  221. "label": "泸州",
  222. }, {
  223. "value": "德阳",
  224. "label": "德阳",
  225. }, {
  226. "value": "绵阳",
  227. "label": "绵阳",
  228. }, {
  229. "value": "广元",
  230. "label": "广元",
  231. }, {
  232. "value": "遂宁",
  233. "label": "遂宁",
  234. }, {
  235. "value": "内江",
  236. "label": "内江",
  237. }, {
  238. "value": "乐山",
  239. "label": "乐山",
  240. }, {
  241. "value": "南充",
  242. "label": "南充",
  243. }, {
  244. "value": "眉山",
  245. "label": "眉山",
  246. }, {
  247. "value": "宜宾",
  248. "label": "宜宾",
  249. }, {
  250. "value": "广安",
  251. "label": "广安",
  252. }, {
  253. "value": "达州",
  254. "label": "达州",
  255. }, {
  256. "value": "雅安",
  257. "label": "雅安",
  258. }, {
  259. "value": "巴中",
  260. "label": "巴中",
  261. }, {
  262. "value": "资阳",
  263. "label": "资阳",
  264. }, {
  265. "value": "阿坝州",
  266. "label": "阿坝州",
  267. }, {
  268. "value": "甘孜州",
  269. "label": "甘孜州",
  270. }, {
  271. "value": "凉山",
  272. "label": "凉山",
  273. }]
  274. }, {
  275. "value": "山东",
  276. "label": "山东",
  277. "children": [
  278. {
  279. "value": "济南",
  280. "label": "济南",
  281. }, {
  282. "value": "青岛",
  283. "label": "青岛",
  284. }, {
  285. "value": "淄博",
  286. "label": "淄博",
  287. }, {
  288. "value": "枣庄",
  289. "label": "枣庄",
  290. }, {
  291. "value": "东营",
  292. "label": "东营",
  293. }, {
  294. "value": "烟台",
  295. "label": "烟台",
  296. }, {
  297. "value": "潍坊",
  298. "label": "潍坊",
  299. }, {
  300. "value": "济宁",
  301. "label": "济宁",
  302. }, {
  303. "value": "泰安",
  304. "label": "泰安",
  305. }, {
  306. "value": "威海",
  307. "label": "威海",
  308. }, {
  309. "value": "日照",
  310. "label": "日照",
  311. }, {
  312. "value": "莱芜",
  313. "label": "莱芜",
  314. }, {
  315. "value": "临沂",
  316. "label": "临沂",
  317. }, {
  318. "value": "德州",
  319. "label": "德州",
  320. }, {
  321. "value": "聊城",
  322. "label": "聊城",
  323. }, {
  324. "value": "滨州",
  325. "label": "滨州",
  326. }, {
  327. "value": "菏泽",
  328. "label": "菏泽",
  329. }]
  330. }, {
  331. "value": "内蒙古",
  332. "label": "内蒙古",
  333. "children": [
  334. {
  335. "value": "呼和浩特",
  336. "label": "呼和浩特",
  337. }, {
  338. "value": "包头",
  339. "label": "包头",
  340. }, {
  341. "value": "乌海",
  342. "label": "乌海",
  343. }, {
  344. "value": "赤峰",
  345. "label": "赤峰",
  346. }, {
  347. "value": "通辽",
  348. "label": "通辽",
  349. }, {
  350. "value": "鄂尔多斯",
  351. "label": "鄂尔多斯",
  352. }, {
  353. "value": "呼伦贝尔",
  354. "label": "呼伦贝尔",
  355. }, {
  356. "value": "巴彦淖尔",
  357. "label": "巴彦淖尔",
  358. }, {
  359. "value": "乌兰察布",
  360. "label": "乌兰察布",
  361. }, {
  362. "value": "兴安盟",
  363. "label": "兴安盟",
  364. }, {
  365. "value": "锡林郭勒",
  366. "label": "锡林郭勒",
  367. }, {
  368. "value": "阿拉善",
  369. "label": "阿拉善",
  370. }]
  371. }, {
  372. "value": "河北",
  373. "label": "河北",
  374. "children": [
  375. {
  376. "value": "石家庄",
  377. "label": "石家庄",
  378. }, {
  379. "value": "唐山",
  380. "label": "唐山",
  381. }, {
  382. "value": "秦皇岛",
  383. "label": "秦皇岛",
  384. }, {
  385. "value": "邯郸",
  386. "label": "邯郸",
  387. }, {
  388. "value": "邢台",
  389. "label": "邢台",
  390. }, {
  391. "value": "保定",
  392. "label": "保定",
  393. }, {
  394. "value": "张家口",
  395. "label": "张家口",
  396. }, {
  397. "value": "承德",
  398. "label": "承德",
  399. }, {
  400. "value": "沧州",
  401. "label": "沧州",
  402. }, {
  403. "value": "廊坊",
  404. "label": "廊坊",
  405. }, {
  406. "value": "衡水",
  407. "label": "衡水",
  408. }]
  409. }, {
  410. "value": "山西",
  411. "label": "山西",
  412. "children": [
  413. {
  414. "value": "太原",
  415. "label": "太原",
  416. }, {
  417. "value": "大同",
  418. "label": "大同",
  419. }, {
  420. "value": "阳泉",
  421. "label": "阳泉",
  422. }, {
  423. "value": "长治",
  424. "label": "长治",
  425. }, {
  426. "value": "晋城",
  427. "label": "晋城",
  428. }, {
  429. "value": "朔州",
  430. "label": "朔州",
  431. }, {
  432. "value": "晋中",
  433. "label": "晋中",
  434. }, {
  435. "value": "运城",
  436. "label": "运城",
  437. }, {
  438. "value": "忻州",
  439. "label": "忻州",
  440. }, {
  441. "value": "临汾",
  442. "label": "临汾",
  443. }, {
  444. "value": "吕梁",
  445. "label": "吕梁",
  446. }]
  447. }, {
  448. "value": "辽宁",
  449. "label": "辽宁",
  450. "children": [
  451. {
  452. "value": "沈阳",
  453. "label": "沈阳",
  454. }, {
  455. "value": "大连",
  456. "label": "大连",
  457. }, {
  458. "value": "鞍山",
  459. "label": "鞍山",
  460. }, {
  461. "value": "抚顺",
  462. "label": "抚顺",
  463. }, {
  464. "value": "本溪",
  465. "label": "本溪",
  466. }, {
  467. "value": "丹东",
  468. "label": "丹东",
  469. }, {
  470. "value": "锦州",
  471. "label": "锦州",
  472. }, {
  473. "value": "营口",
  474. "label": "营口",
  475. }, {
  476. "value": "阜新",
  477. "label": "阜新",
  478. }, {
  479. "value": "辽阳",
  480. "label": "辽阳",
  481. }, {
  482. "value": "盘锦",
  483. "label": "盘锦",
  484. }, {
  485. "value": "铁岭",
  486. "label": "铁岭",
  487. }, {
  488. "value": "朝阳",
  489. "label": "朝阳",
  490. }, {
  491. "value": "葫芦岛",
  492. "label": "葫芦岛",
  493. }]
  494. }, {
  495. "value": "吉林",
  496. "label": "吉林",
  497. "children": [
  498. {
  499. "value": "长春",
  500. "label": "长春",
  501. }, {
  502. "value": "吉林",
  503. "label": "吉林",
  504. }, {
  505. "value": "四平",
  506. "label": "四平",
  507. }, {
  508. "value": "辽源",
  509. "label": "辽源",
  510. }, {
  511. "value": "通化",
  512. "label": "通化",
  513. }, {
  514. "value": "白山",
  515. "label": "白山",
  516. }, {
  517. "value": "松原",
  518. "label": "松原",
  519. }, {
  520. "value": "白城",
  521. "label": "白城",
  522. }, {
  523. "value": "延边",
  524. "label": "延边",
  525. }]
  526. }, {
  527. "value": "黑龙江",
  528. "label": "黑龙江",
  529. "children": [
  530. {
  531. "value": "哈尔滨",
  532. "label": "哈尔滨",
  533. }, {
  534. "value": "齐齐哈尔",
  535. "label": "齐齐哈尔",
  536. }, {
  537. "value": "鸡西",
  538. "label": "鸡西",
  539. }, {
  540. "value": "鹤岗",
  541. "label": "鹤岗",
  542. }, {
  543. "value": "双鸭山",
  544. "label": "双鸭山",
  545. }, {
  546. "value": "大庆",
  547. "label": "大庆",
  548. }, {
  549. "value": "伊春",
  550. "label": "伊春",
  551. }, {
  552. "value": "佳木斯",
  553. "label": "佳木斯",
  554. }, {
  555. "value": "七台河",
  556. "label": "七台河",
  557. }, {
  558. "value": "牡丹江",
  559. "label": "牡丹江",
  560. }, {
  561. "value": "黑河",
  562. "label": "黑河",
  563. }, {
  564. "value": "绥化",
  565. "label": "绥化",
  566. }, {
  567. "value": "大兴安岭",
  568. "label": "大兴安岭",
  569. }]
  570. }, {
  571. "value": "上海",
  572. "label": "上海",
  573. "children": [
  574. {
  575. "value": "上海",
  576. "label": "上海",
  577. }]
  578. }, {
  579. "value": "江苏",
  580. "label": "江苏",
  581. "children": [
  582. {
  583. "value": "南京",
  584. "label": "南京",
  585. }, {
  586. "value": "无锡",
  587. "label": "无锡",
  588. }, {
  589. "value": "徐州",
  590. "label": "徐州",
  591. }, {
  592. "value": "常州",
  593. "label": "常州",
  594. }, {
  595. "value": "苏州",
  596. "label": "苏州",
  597. }, {
  598. "value": "南通",
  599. "label": "南通",
  600. }, {
  601. "value": "连云港",
  602. "label": "连云港",
  603. }, {
  604. "value": "淮安",
  605. "label": "淮安",
  606. }, {
  607. "value": "盐城",
  608. "label": "盐城",
  609. }, {
  610. "value": "扬州",
  611. "label": "扬州",
  612. }, {
  613. "value": "镇江",
  614. "label": "镇江",
  615. }, {
  616. "value": "泰州",
  617. "label": "泰州",
  618. }, {
  619. "value": "宿迁",
  620. "label": "宿迁",
  621. }]
  622. }, {
  623. "value": "浙江",
  624. "label": "浙江",
  625. "children": [
  626. {
  627. "value": "杭州",
  628. "label": "杭州",
  629. }, {
  630. "value": "宁波",
  631. "label": "宁波",
  632. }, {
  633. "value": "温州",
  634. "label": "温州",
  635. }, {
  636. "value": "嘉兴",
  637. "label": "嘉兴",
  638. }, {
  639. "value": "湖州",
  640. "label": "湖州",
  641. }, {
  642. "value": "绍兴",
  643. "label": "绍兴",
  644. }, {
  645. "value": "金华",
  646. "label": "金华",
  647. }, {
  648. "value": "衢州",
  649. "label": "衢州",
  650. }, {
  651. "value": "舟山",
  652. "label": "舟山",
  653. }, {
  654. "value": "台州",
  655. "label": "台州",
  656. }, {
  657. "value": "丽水",
  658. "label": "丽水",
  659. }]
  660. }, {
  661. "value": "安徽",
  662. "label": "安徽",
  663. "children": [
  664. {
  665. "value": "合肥",
  666. "label": "合肥",
  667. }, {
  668. "value": "芜湖",
  669. "label": "芜湖",
  670. }, {
  671. "value": "蚌埠",
  672. "label": "蚌埠",
  673. }, {
  674. "value": "淮南",
  675. "label": "淮南",
  676. }, {
  677. "value": "马鞍山",
  678. "label": "马鞍山",
  679. }, {
  680. "value": "淮北",
  681. "label": "淮北",
  682. }, {
  683. "value": "铜陵",
  684. "label": "铜陵",
  685. }, {
  686. "value": "安庆",
  687. "label": "安庆",
  688. }, {
  689. "value": "黄山",
  690. "label": "黄山",
  691. }, {
  692. "value": "滁州",
  693. "label": "滁州",
  694. }, {
  695. "value": "阜阳",
  696. "label": "阜阳",
  697. }, {
  698. "value": "宿州",
  699. "label": "宿州",
  700. }, {
  701. "value": "六安",
  702. "label": "六安",
  703. }, {
  704. "value": "亳州",
  705. "label": "亳州",
  706. }, {
  707. "value": "池州",
  708. "label": "池州",
  709. }, {
  710. "value": "宣城",
  711. "label": "宣城",
  712. }]
  713. }, {
  714. "value": "福建",
  715. "label": "福建",
  716. "children": [
  717. {
  718. "value": "福州",
  719. "label": "福州",
  720. }, {
  721. "value": "厦门",
  722. "label": "厦门",
  723. }, {
  724. "value": "莆田",
  725. "label": "莆田",
  726. }, {
  727. "value": "三明",
  728. "label": "三明",
  729. }, {
  730. "value": "泉州",
  731. "label": "泉州",
  732. }, {
  733. "value": "漳州",
  734. "label": "漳州",
  735. }, {
  736. "value": "南平",
  737. "label": "南平",
  738. }, {
  739. "value": "龙岩",
  740. "label": "龙岩",
  741. }, {
  742. "value": "宁德",
  743. "label": "宁德",
  744. }]
  745. }, {
  746. "value": "江西",
  747. "label": "江西",
  748. "children": [
  749. {
  750. "value": "南昌",
  751. "label": "南昌",
  752. }, {
  753. "value": "景德镇",
  754. "label": "景德镇",
  755. }, {
  756. "value": "萍乡",
  757. "label": "萍乡",
  758. }, {
  759. "value": "九江",
  760. "label": "九江",
  761. }, {
  762. "value": "新余",
  763. "label": "新余",
  764. }, {
  765. "value": "鹰潭",
  766. "label": "鹰潭",
  767. }, {
  768. "value": "赣州",
  769. "label": "赣州",
  770. }, {
  771. "value": "吉安",
  772. "label": "吉安",
  773. }, {
  774. "value": "宜春",
  775. "label": "宜春",
  776. }, {
  777. "value": "抚州",
  778. "label": "抚州",
  779. }, {
  780. "value": "上饶",
  781. "label": "上饶",
  782. }]
  783. }, {
  784. "value": "河南",
  785. "label": "河南",
  786. "children": [
  787. {
  788. "value": "郑州",
  789. "label": "郑州",
  790. }, {
  791. "value": "开封",
  792. "label": "开封",
  793. }, {
  794. "value": "洛阳",
  795. "label": "洛阳",
  796. }, {
  797. "value": "平顶山",
  798. "label": "平顶山",
  799. }, {
  800. "value": "安阳",
  801. "label": "安阳",
  802. }, {
  803. "value": "鹤壁",
  804. "label": "鹤壁",
  805. }, {
  806. "value": "新乡",
  807. "label": "新乡",
  808. }, {
  809. "value": "焦作",
  810. "label": "焦作",
  811. }, {
  812. "value": "濮阳",
  813. "label": "濮阳",
  814. }, {
  815. "value": "许昌",
  816. "label": "许昌",
  817. }, {
  818. "value": "漯河",
  819. "label": "漯河",
  820. }, {
  821. "value": "三门峡",
  822. "label": "三门峡",
  823. }, {
  824. "value": "南阳",
  825. "label": "南阳",
  826. }, {
  827. "value": "商丘",
  828. "label": "商丘",
  829. }, {
  830. "value": "信阳",
  831. "label": "信阳",
  832. }, {
  833. "value": "周口",
  834. "label": "周口",
  835. }, {
  836. "value": "驻马店",
  837. "label": "驻马店",
  838. }, {
  839. "value": "济源",
  840. "label": "济源",
  841. }]
  842. }, {
  843. "value": "湖北",
  844. "label": "湖北",
  845. "children": [
  846. {
  847. "value": "武汉",
  848. "label": "武汉",
  849. }, {
  850. "value": "黄石",
  851. "label": "黄石",
  852. }, {
  853. "value": "十堰",
  854. "label": "十堰",
  855. }, {
  856. "value": "宜昌",
  857. "label": "宜昌",
  858. }, {
  859. "value": "襄阳",
  860. "label": "襄阳",
  861. }, {
  862. "value": "鄂州",
  863. "label": "鄂州",
  864. }, {
  865. "value": "荆门",
  866. "label": "荆门",
  867. }, {
  868. "value": "孝感",
  869. "label": "孝感",
  870. }, {
  871. "value": "荆州",
  872. "label": "荆州",
  873. }, {
  874. "value": "黄冈",
  875. "label": "黄冈",
  876. }, {
  877. "value": "咸宁",
  878. "label": "咸宁",
  879. }, {
  880. "value": "随州",
  881. "label": "随州",
  882. }, {
  883. "value": "恩施",
  884. "label": "恩施",
  885. }, {
  886. "value": "仙桃",
  887. "label": "仙桃",
  888. }, {
  889. "value": "潜江",
  890. "label": "潜江",
  891. }, {
  892. "value": "天门",
  893. "label": "天门",
  894. }, {
  895. "value": "神农架",
  896. "label": "神农架",
  897. }]
  898. }, {
  899. "value": "湖南",
  900. "label": "湖南",
  901. "children": [
  902. {
  903. "value": "长沙",
  904. "label": "长沙",
  905. }, {
  906. "value": "株洲",
  907. "label": "株洲",
  908. }, {
  909. "value": "湘潭",
  910. "label": "湘潭",
  911. }, {
  912. "value": "衡阳",
  913. "label": "衡阳",
  914. }, {
  915. "value": "邵阳",
  916. "label": "邵阳",
  917. }, {
  918. "value": "岳阳",
  919. "label": "岳阳",
  920. }, {
  921. "value": "常德",
  922. "label": "常德",
  923. }, {
  924. "value": "张家界",
  925. "label": "张家界",
  926. }, {
  927. "value": "益阳",
  928. "label": "益阳",
  929. }, {
  930. "value": "郴州",
  931. "label": "郴州",
  932. }, {
  933. "value": "永州",
  934. "label": "永州",
  935. }, {
  936. "value": "怀化",
  937. "label": "怀化",
  938. }, {
  939. "value": "娄底",
  940. "label": "娄底",
  941. }, {
  942. "value": "湘西州",
  943. "label": "湘西州",
  944. }]
  945. }, {
  946. "value": "广东",
  947. "label": "广东",
  948. "children": [
  949. {
  950. "value": "广州",
  951. "label": "广州",
  952. }, {
  953. "value": "韶关",
  954. "label": "韶关",
  955. }, {
  956. "value": "深圳",
  957. "label": "深圳",
  958. }, {
  959. "value": "珠海",
  960. "label": "珠海",
  961. }, {
  962. "value": "汕头",
  963. "label": "汕头",
  964. }, {
  965. "value": "佛山",
  966. "label": "佛山",
  967. }, {
  968. "value": "江门",
  969. "label": "江门",
  970. }, {
  971. "value": "湛江",
  972. "label": "湛江",
  973. }, {
  974. "value": "茂名",
  975. "label": "茂名",
  976. }, {
  977. "value": "肇庆",
  978. "label": "肇庆",
  979. }, {
  980. "value": "惠州",
  981. "label": "惠州",
  982. }, {
  983. "value": "梅州",
  984. "label": "梅州",
  985. }, {
  986. "value": "汕尾",
  987. "label": "汕尾",
  988. }, {
  989. "value": "河源",
  990. "label": "河源",
  991. }, {
  992. "value": "阳江",
  993. "label": "阳江",
  994. }, {
  995. "value": "清远",
  996. "label": "清远",
  997. }, {
  998. "value": "东莞",
  999. "label": "东莞",
  1000. }, {
  1001. "value": "中山",
  1002. "label": "中山",
  1003. }, {
  1004. "value": "潮州",
  1005. "label": "潮州",
  1006. }, {
  1007. "value": "揭阳",
  1008. "label": "揭阳",
  1009. }, {
  1010. "value": "云浮",
  1011. "label": "云浮",
  1012. }]
  1013. }, {
  1014. "value": "广西",
  1015. "label": "广西",
  1016. "children": [
  1017. {
  1018. "value": "南宁",
  1019. "label": "南宁",
  1020. }, {
  1021. "value": "柳州",
  1022. "label": "柳州",
  1023. }, {
  1024. "value": "桂林",
  1025. "label": "桂林",
  1026. }, {
  1027. "value": "梧州",
  1028. "label": "梧州",
  1029. }, {
  1030. "value": "北海",
  1031. "label": "北海",
  1032. }, {
  1033. "value": "防城港",
  1034. "label": "防城港",
  1035. }, {
  1036. "value": "钦州",
  1037. "label": "钦州",
  1038. }, {
  1039. "value": "贵港",
  1040. "label": "贵港",
  1041. }, {
  1042. "value": "玉林",
  1043. "label": "玉林",
  1044. }, {
  1045. "value": "百色",
  1046. "label": "百色",
  1047. }, {
  1048. "value": "贺州",
  1049. "label": "贺州",
  1050. }, {
  1051. "value": "河池",
  1052. "label": "河池",
  1053. }, {
  1054. "value": "来宾",
  1055. "label": "来宾",
  1056. }, {
  1057. "value": "崇左",
  1058. "label": "崇左",
  1059. }]
  1060. }, {
  1061. "value": "海南",
  1062. "label": "海南",
  1063. "children": [
  1064. {
  1065. "value": "海口",
  1066. "label": "海口",
  1067. }, {
  1068. "value": "三亚",
  1069. "label": "三亚",
  1070. }]
  1071. }, {
  1072. "value": "贵州",
  1073. "label": "贵州",
  1074. "children": [
  1075. {
  1076. "value": "贵阳",
  1077. "label": "贵阳",
  1078. }, {
  1079. "value": "六盘水",
  1080. "label": "六盘水",
  1081. }, {
  1082. "value": "遵义",
  1083. "label": "遵义",
  1084. }, {
  1085. "value": "安顺",
  1086. "label": "安顺",
  1087. }, {
  1088. "value": "毕节",
  1089. "label": "毕节",
  1090. }, {
  1091. "value": "铜仁",
  1092. "label": "铜仁",
  1093. }, {
  1094. "value": "黔西南",
  1095. "label": "黔西南",
  1096. }, {
  1097. "value": "黔东南",
  1098. "label": "黔东南",
  1099. }, {
  1100. "value": "黔南",
  1101. "label": "黔南",
  1102. }]
  1103. }, {
  1104. "value": "云南",
  1105. "label": "云南",
  1106. "children": [
  1107. {
  1108. "value": "昆明",
  1109. "label": "昆明",
  1110. }, {
  1111. "value": "曲靖",
  1112. "label": "曲靖",
  1113. }, {
  1114. "value": "玉溪",
  1115. "label": "玉溪",
  1116. }, {
  1117. "value": "保山",
  1118. "label": "保山",
  1119. }, {
  1120. "value": "昭通",
  1121. "label": "昭通",
  1122. }, {
  1123. "value": "丽江",
  1124. "label": "丽江",
  1125. }, {
  1126. "value": "普洱",
  1127. "label": "普洱",
  1128. }, {
  1129. "value": "临沧",
  1130. "label": "临沧",
  1131. }, {
  1132. "value": "楚雄",
  1133. "label": "楚雄",
  1134. }, {
  1135. "value": "红河州",
  1136. "label": "红河州",
  1137. }, {
  1138. "value": "文山州",
  1139. "label": "文山州",
  1140. }, {
  1141. "value": "西双版纳",
  1142. "label": "西双版纳",
  1143. }, {
  1144. "value": "大理",
  1145. "label": "大理",
  1146. }, {
  1147. "value": "德宏",
  1148. "label": "德宏",
  1149. }, {
  1150. "value": "怒江",
  1151. "label": "怒江",
  1152. }, {
  1153. "value": "迪庆州",
  1154. "label": "迪庆州",
  1155. }]
  1156. }, {
  1157. "value": "西藏",
  1158. "label": "西藏",
  1159. "children": [
  1160. {
  1161. "value": "拉萨",
  1162. "label": "拉萨",
  1163. }, {
  1164. "value": "日喀则",
  1165. "label": "日喀则",
  1166. }, {
  1167. "value": "昌都",
  1168. "label": "昌都",
  1169. }, {
  1170. "value": "林芝",
  1171. "label": "林芝",
  1172. }, {
  1173. "value": "山南",
  1174. "label": "山南",
  1175. }, {
  1176. "value": "那曲",
  1177. "label": "那曲",
  1178. }, {
  1179. "value": "阿里地区",
  1180. "label": "阿里地区",
  1181. }]
  1182. }, {
  1183. "value": "陕西",
  1184. "label": "陕西",
  1185. "children": [
  1186. {
  1187. "value": "西安",
  1188. "label": "西安",
  1189. }, {
  1190. "value": "铜川",
  1191. "label": "铜川",
  1192. }, {
  1193. "value": "宝鸡",
  1194. "label": "宝鸡",
  1195. }, {
  1196. "value": "咸阳",
  1197. "label": "咸阳",
  1198. }, {
  1199. "value": "渭南",
  1200. "label": "渭南",
  1201. }, {
  1202. "value": "延安",
  1203. "label": "延安",
  1204. }, {
  1205. "value": "汉中",
  1206. "label": "汉中",
  1207. }, {
  1208. "value": "榆林",
  1209. "label": "榆林",
  1210. }, {
  1211. "value": "安康",
  1212. "label": "安康",
  1213. }, {
  1214. "value": "商洛",
  1215. "label": "商洛",
  1216. }]
  1217. }, {
  1218. "value": "甘肃",
  1219. "label": "甘肃",
  1220. "children": [
  1221. {
  1222. "value": "兰州",
  1223. "label": "兰州",
  1224. }, {
  1225. "value": "嘉峪关",
  1226. "label": "嘉峪关",
  1227. }, {
  1228. "value": "金昌",
  1229. "label": "金昌",
  1230. }, {
  1231. "value": "白银",
  1232. "label": "白银",
  1233. }, {
  1234. "value": "天水",
  1235. "label": "天水",
  1236. }, {
  1237. "value": "武威",
  1238. "label": "武威",
  1239. }, {
  1240. "value": "张掖",
  1241. "label": "张掖",
  1242. }, {
  1243. "value": "平凉",
  1244. "label": "平凉",
  1245. }, {
  1246. "value": "酒泉",
  1247. "label": "酒泉",
  1248. }, {
  1249. "value": "庆阳",
  1250. "label": "庆阳",
  1251. }, {
  1252. "value": "定西",
  1253. "label": "定西",
  1254. }, {
  1255. "value": "陇南",
  1256. "label": "陇南",
  1257. }, {
  1258. "value": "临夏",
  1259. "label": "临夏",
  1260. }, {
  1261. "value": "甘南",
  1262. "label": "甘南",
  1263. }]
  1264. }, {
  1265. "value": "青海",
  1266. "label": "青海",
  1267. "children": [
  1268. {
  1269. "value": "西宁",
  1270. "label": "西宁",
  1271. }, {
  1272. "value": "海东",
  1273. "label": "海东",
  1274. }, {
  1275. "value": "海北",
  1276. "label": "海北",
  1277. }, {
  1278. "value": "黄南",
  1279. "label": "黄南",
  1280. }, {
  1281. "value": "海南",
  1282. "label": "海南",
  1283. }, {
  1284. "value": "果洛",
  1285. "label": "果洛",
  1286. }, {
  1287. "value": "玉树",
  1288. "label": "玉树",
  1289. }, {
  1290. "value": "海西",
  1291. "label": "海西",
  1292. }]
  1293. }, {
  1294. "value": "宁夏",
  1295. "label": "宁夏",
  1296. "children": [
  1297. {
  1298. "value": "银川",
  1299. "label": "银川",
  1300. }, {
  1301. "value": "石嘴山",
  1302. "label": "石嘴山",
  1303. }, {
  1304. "value": "吴忠",
  1305. "label": "吴忠",
  1306. }, {
  1307. "value": "固原",
  1308. "label": "固原",
  1309. }, {
  1310. "value": "中卫",
  1311. "label": "中卫",
  1312. }]
  1313. }, {
  1314. "value": "新疆",
  1315. "label": "新疆",
  1316. "children": [
  1317. {
  1318. "value": "乌鲁木齐",
  1319. "label": "乌鲁木齐",
  1320. }, {
  1321. "value": "克拉玛依",
  1322. "label": "克拉玛依",
  1323. }, {
  1324. "value": "吐鲁番",
  1325. "label": "吐鲁番",
  1326. }, {
  1327. "value": "哈密",
  1328. "label": "哈密",
  1329. }, {
  1330. "value": "昌吉州",
  1331. "label": "昌吉州",
  1332. }, {
  1333. "value": "博尔塔拉",
  1334. "label": "博尔塔拉",
  1335. }, {
  1336. "value": "巴音郭楞",
  1337. "label": "巴音郭楞",
  1338. }, {
  1339. "value": "阿克苏",
  1340. "label": "阿克苏",
  1341. }, {
  1342. "value": "克孜勒苏",
  1343. "label": "克孜勒苏",
  1344. }, {
  1345. "value": "喀什",
  1346. "label": "喀什",
  1347. }, {
  1348. "value": "和田",
  1349. "label": "和田",
  1350. }, {
  1351. "value": "伊犁哈",
  1352. "label": "伊犁哈",
  1353. }, {
  1354. "value": "塔城",
  1355. "label": "塔城",
  1356. }, {
  1357. "value": "阿勒泰",
  1358. "label": "阿勒泰",
  1359. }, {
  1360. "value": "石河子",
  1361. "label": "石河子",
  1362. }, {
  1363. "value": "阿拉尔",
  1364. "label": "阿拉尔",
  1365. }, {
  1366. "value": "图木舒克",
  1367. "label": "图木舒克",
  1368. }, {
  1369. "value": "五家渠",
  1370. "label": "五家渠",
  1371. }, {
  1372. "value": "北屯",
  1373. "label": "北屯",
  1374. }, {
  1375. "value": "铁门关",
  1376. "label": "铁门关",
  1377. }, {
  1378. "value": "双河",
  1379. "label": "双河",
  1380. }, {
  1381. "value": "可克达拉",
  1382. "label": "可克达拉",
  1383. }, {
  1384. "value": "昆玉",
  1385. "label": "昆玉",
  1386. }]
  1387. }, {
  1388. "value": "台湾",
  1389. "label": "台湾",
  1390. "children": [
  1391. {
  1392. "value": "台北",
  1393. "label": "台北",
  1394. }, {
  1395. "value": "台南",
  1396. "label": "台南",
  1397. }, {
  1398. "value": "彰化",
  1399. "label": "彰化"
  1400. }, {
  1401. "value": "高雄",
  1402. "label": "高雄",
  1403. }, {
  1404. "value": "新北",
  1405. "label": "新北",
  1406. }, {
  1407. "value": "桃园",
  1408. "label": "桃园",
  1409. }, {
  1410. "value": "台中",
  1411. "label": "台中",
  1412. }, {
  1413. "value": "基隆",
  1414. "label": "基隆",
  1415. }, {
  1416. "value": "新竹",
  1417. "label": "新竹",
  1418. }, {
  1419. "value": "嘉义",
  1420. "label": "嘉义",
  1421. }, {
  1422. "value": "竹北",
  1423. "label": "竹北"
  1424. }, {
  1425. "value": "苗栗",
  1426. "label": "苗栗",
  1427. }, {
  1428. "value": "南投",
  1429. "label": "南投",
  1430. }, {
  1431. "value": "台东",
  1432. "label": "台东",
  1433. }, {
  1434. "value": "连江",
  1435. "label": "连江",
  1436. }, {
  1437. "value": "花莲",
  1438. "label": "花莲",
  1439. }, {
  1440. "value": "金门",
  1441. "label": "金门",
  1442. }, {
  1443. "value": "澎湖",
  1444. "label": "澎湖",
  1445. }, {
  1446. "value": "屏东",
  1447. "label": "屏东",
  1448. }, {
  1449. "value": "宜兰",
  1450. "label": "宜兰",
  1451. }, {
  1452. "value": "云林",
  1453. "label": "云林",
  1454. }, {
  1455. "value": "彰化",
  1456. "label": "彰化",
  1457. }]
  1458. }, {
  1459. "value": "香港",
  1460. "label": "香港",
  1461. "children": [
  1462. {
  1463. "value": "香港",
  1464. "label": "香港",
  1465. }]
  1466. }, {
  1467. "value": "澳门",
  1468. "label": "澳门",
  1469. "children": [
  1470. {
  1471. "value": "澳门",
  1472. "label": "澳门",
  1473. }]
  1474. }]