common.js 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951
  1. import request from '@/utils/request'
  2. export function getCommonBanners(data = {}) {
  3. return request({
  4. 'url': '/common/client/index/banner/list',
  5. headers: {
  6. isToken: false
  7. },
  8. method: 'post',
  9. data,
  10. timeout: 20000
  11. })
  12. }
  13. // 校园概述
  14. export function getCommonGaikuangDizhiInfo(data = {}) {
  15. return request({
  16. 'url': '/common/gaikuang/dizhi/info',
  17. headers: {
  18. isToken: false
  19. },
  20. method: 'post',
  21. data,
  22. timeout: 20000
  23. })
  24. }
  25. export function getCommonXinwenYuanxiaoList(data = {}) {
  26. return request({
  27. 'url': '/common/xinwen/yuanxiao/list',
  28. headers: {
  29. isToken: false
  30. },
  31. method: 'post',
  32. data,
  33. timeout: 20000
  34. })
  35. }
  36. export function getCommonXinwenTongzhiList(data = {}) {
  37. return request({
  38. 'url': '/common/xinwen/tongzhi/list',
  39. headers: {
  40. isToken: false
  41. },
  42. method: 'post',
  43. data,
  44. timeout: 20000
  45. })
  46. }
  47. export function getCommonXinwenXiaowuList(data = {}) {
  48. return request({
  49. 'url': '/common/xinwen/xiaowu/list',
  50. headers: {
  51. isToken: false
  52. },
  53. method: 'post',
  54. data,
  55. timeout: 20000
  56. })
  57. }
  58. export function getCommonGaikuangJianjieInfo(data = {}) {
  59. return request({
  60. 'url': '/common/gaikuang/jianjie/info',
  61. headers: {
  62. isToken: false
  63. },
  64. method: 'post',
  65. data,
  66. timeout: 20000
  67. })
  68. }
  69. export function getCommonGaikuangJigouShezhiInfo(data = {}) {
  70. return request({
  71. 'url': '/common/gaikuang/jigou/info',
  72. headers: {
  73. isToken: false
  74. },
  75. method: 'post',
  76. data,
  77. timeout: 20000
  78. })
  79. }
  80. export function getCommonGaikuangRongyuList(data = {}) {
  81. return request({
  82. 'url': '/common/gaikuang/rongyu/list',
  83. headers: {
  84. isToken: false
  85. },
  86. method: 'post',
  87. data,
  88. timeout: 20000
  89. })
  90. }
  91. // 党群工作
  92. export function getDangJianZuzhiInfo(data = {}) {
  93. return request({
  94. 'url': '/common/dangjian/zuzhi/info',
  95. headers: {
  96. isToken: false
  97. },
  98. method: 'post',
  99. data,
  100. timeout: 20000
  101. })
  102. }
  103. export function getDangjianZuzhiGonghuiInfo(data = {}) {
  104. return request({
  105. 'url': '/common/dangjian/zuzhi/gonghui/info',
  106. headers: {
  107. isToken: false
  108. },
  109. method: 'post',
  110. data,
  111. timeout: 20000
  112. })
  113. }
  114. export function getDangjianGonghuiList(data = {}) {
  115. return request({
  116. 'url': '/common/dangjian/gonghui/list',
  117. headers: {
  118. isToken: false
  119. },
  120. method: 'post',
  121. data,
  122. timeout: 20000
  123. })
  124. }
  125. export function getDangjianGonghuiInfo(data = {}) {
  126. return request({
  127. 'url': '/common/dangjian/gonghui/info',
  128. headers: {
  129. isToken: false
  130. },
  131. method: 'post',
  132. data,
  133. timeout: 20000
  134. })
  135. }
  136. export function getDangjianFengcaiInfo(data = {}) {
  137. return request({
  138. 'url': '/common/dangjian/fengcai/info',
  139. headers: {
  140. isToken: false
  141. },
  142. method: 'post',
  143. data,
  144. timeout: 20000
  145. })
  146. }
  147. export function getDangjianFengcaiList(data = {}) {
  148. return request({
  149. 'url': '/common/dangjian/fengcai/list',
  150. headers: {
  151. isToken: false
  152. },
  153. method: 'post',
  154. data,
  155. timeout: 20000
  156. })
  157. }
  158. export function getDangjianGongzuoList(data = {}) {
  159. return request({
  160. 'url': '/common/dangjian/gongzuo/list',
  161. headers: {
  162. isToken: false
  163. },
  164. method: 'post',
  165. data,
  166. timeout: 20000
  167. })
  168. }
  169. export function getDangjianGongzuoInfo(data = {}) {
  170. return request({
  171. 'url': '/common/dangjian/gongzuo/info',
  172. headers: {
  173. isToken: false
  174. },
  175. method: 'post',
  176. data,
  177. timeout: 20000
  178. })
  179. }
  180. // 教育教学
  181. export function getJiaoyuZhuanyejiansheList(data = {}) {
  182. return request({
  183. 'url': '/common/jiaoyu/zhuanye/list',
  184. headers: {
  185. isToken: false
  186. },
  187. method: 'post',
  188. data,
  189. timeout: 20000
  190. })
  191. }
  192. export function getJiaoyuZhuanyejiansheInfo(data = {}) {
  193. return request({
  194. 'url': '/common/jiaoyu/zhuanye/info',
  195. headers: {
  196. isToken: false
  197. },
  198. method: 'post',
  199. data,
  200. timeout: 20000
  201. })
  202. }
  203. export function getJiaoyuDasaiList(data = {}) {
  204. return request({
  205. 'url': '/common/jiaoyu/dasai/list',
  206. headers: {
  207. isToken: false
  208. },
  209. method: 'post',
  210. data,
  211. timeout: 20000
  212. })
  213. }
  214. export function getJiaoyuDasaiInfo(data = {}) {
  215. return request({
  216. 'url': '/common/jiaoyu/dasai/info',
  217. headers: {
  218. isToken: false
  219. },
  220. method: 'post',
  221. data,
  222. timeout: 20000
  223. })
  224. }
  225. export function getJiaoyuShiziList(data = {}) {
  226. return request({
  227. 'url': '/common/jiaoyu/duiwu/list',
  228. headers: {
  229. isToken: false
  230. },
  231. method: 'post',
  232. data,
  233. timeout: 20000
  234. })
  235. }
  236. export function getJiaoyuShiziInfo(data = {}) {
  237. return request({
  238. 'url': '/common/jiaoyu/duiwu/info',
  239. headers: {
  240. isToken: false
  241. },
  242. method: 'post',
  243. data,
  244. timeout: 20000
  245. })
  246. }
  247. export function getJiaoyuJinengList(data = {}) {
  248. return request({
  249. 'url': '/common/jiaoyu/jineng/list',
  250. headers: {
  251. isToken: false
  252. },
  253. method: 'post',
  254. data,
  255. timeout: 20000
  256. })
  257. }
  258. export function getJiaoyuJinengInfo(data = {}) {
  259. return request({
  260. 'url': '/common/jiaoyu/jineng/info',
  261. headers: {
  262. isToken: false
  263. },
  264. method: 'post',
  265. data,
  266. timeout: 20000
  267. })
  268. }
  269. export function getJiaoyuJiaoyanList(data = {}) {
  270. return request({
  271. 'url': '/common/jiaoyu/jiaoyan/list',
  272. headers: {
  273. isToken: false
  274. },
  275. method: 'post',
  276. data,
  277. timeout: 20000
  278. })
  279. }
  280. export function getJiaoyuJiaoyanInfo(data = {}) {
  281. return request({
  282. 'url': '/common/jiaoyu/jiaoyan/info',
  283. headers: {
  284. isToken: false
  285. },
  286. method: 'post',
  287. data,
  288. timeout: 20000
  289. })
  290. }
  291. export function getJiaoyuXiaoqiList(data = {}) {
  292. return request({
  293. 'url': '/common/jiaoyu/xiaoqi/list',
  294. headers: {
  295. isToken: false
  296. },
  297. method: 'post',
  298. data,
  299. timeout: 20000
  300. })
  301. }
  302. export function getJiaoyuXiaoqiInfo(data = {}) {
  303. return request({
  304. 'url': '/common/jiaoyu/xiaoqi/info',
  305. headers: {
  306. isToken: false
  307. },
  308. method: 'post',
  309. data,
  310. timeout: 20000
  311. })
  312. }
  313. export function getJiaoyuKeyanList(data = {}) {
  314. return request({
  315. 'url': '/common/jiaoyu/keyan/list',
  316. headers: {
  317. isToken: false
  318. },
  319. method: 'post',
  320. data,
  321. timeout: 20000
  322. })
  323. }
  324. export function getJiaoyuKeyanInfo(data = {}) {
  325. return request({
  326. 'url': '/common/jiaoyu/keyan/info',
  327. headers: {
  328. isToken: false
  329. },
  330. method: 'post',
  331. data,
  332. timeout: 20000
  333. })
  334. }
  335. export function getJiaoyuKetangList(data = {}) {
  336. return request({
  337. 'url': '/common/jiaoyu/keyan/list',
  338. headers: {
  339. isToken: false
  340. },
  341. method: 'post',
  342. data,
  343. timeout: 20000
  344. })
  345. }
  346. export function getJiaoyuKetangInfo(data = {}) {
  347. return request({
  348. 'url': '/common/jiaoyu/ketang/info',
  349. headers: {
  350. isToken: false
  351. },
  352. method: 'post',
  353. data,
  354. timeout: 20000
  355. })
  356. }
  357. export function getJiaoyuZhiduList(data = {}) {
  358. return request({
  359. 'url': '/common/jiaoyu/zhidu/list',
  360. headers: {
  361. isToken: false
  362. },
  363. method: 'post',
  364. data,
  365. timeout: 20000
  366. })
  367. }
  368. export function getJiaoyuZhiduInfo(data = {}) {
  369. return request({
  370. 'url': '/common/jiaoyu/zhidu/info',
  371. headers: {
  372. isToken: false
  373. },
  374. method: 'post',
  375. data,
  376. timeout: 20000
  377. })
  378. }
  379. export function getJiaoyuXiangmuInfo(data = {}) {
  380. return request({
  381. 'url': '/common/jiaoyu/xiangmu/info',
  382. headers: {
  383. isToken: false
  384. },
  385. method: 'post',
  386. data,
  387. timeout: 20000
  388. })
  389. }
  390. export function getJiaoyuXiangmuList(data = {}) {
  391. return request({
  392. 'url': '/common/jiaoyu/xiangmu/list',
  393. headers: {
  394. isToken: false
  395. },
  396. method: 'post',
  397. data,
  398. timeout: 20000
  399. })
  400. }
  401. // 学生园地
  402. export function getXueshengGongqingList(data = {}) {
  403. return request({
  404. 'url': '/common/xuesheng/gongqing/list',
  405. headers: {
  406. isToken: false
  407. },
  408. method: 'post',
  409. data,
  410. timeout: 20000
  411. })
  412. }
  413. export function getXueshengGongqingInfo(data = {}) {
  414. return request({
  415. 'url': '/common/xuesheng/gongqing/info',
  416. headers: {
  417. isToken: false
  418. },
  419. method: 'post',
  420. data,
  421. timeout: 20000
  422. })
  423. }
  424. export function getXueshengHuodongList(data = {}) {
  425. return request({
  426. 'url': '/common/xuesheng/huodong/list',
  427. headers: {
  428. isToken: false
  429. },
  430. method: 'post',
  431. data,
  432. timeout: 20000
  433. })
  434. }
  435. export function getXueshengHuodongInfo(data = {}) {
  436. return request({
  437. 'url': '/common/xuesheng/huodong/info',
  438. headers: {
  439. isToken: false
  440. },
  441. method: 'post',
  442. data,
  443. timeout: 20000
  444. })
  445. }
  446. export function getXueshengDeyuInfo(data = {}) {
  447. return request({
  448. 'url': '/common/xuesheng/deyu/info',
  449. headers: {
  450. isToken: false
  451. },
  452. method: 'post',
  453. data,
  454. timeout: 20000
  455. })
  456. }
  457. export function getXueshengDeyuList(data = {}) {
  458. return request({
  459. 'url': '/common/xuesheng/deyu/list',
  460. headers: {
  461. isToken: false
  462. },
  463. method: 'post',
  464. data,
  465. timeout: 20000
  466. })
  467. }
  468. export function getXueshengZizhuList(data = {}) {
  469. return request({
  470. 'url': '/common/xuesheng/zizhu/list',
  471. headers: {
  472. isToken: false
  473. },
  474. method: 'post',
  475. data,
  476. timeout: 20000
  477. })
  478. }
  479. export function getXueshengZizhuInfo(data = {}) {
  480. return request({
  481. 'url': '/common/xuesheng/zizhu/info',
  482. headers: {
  483. isToken: false
  484. },
  485. method: 'post',
  486. data,
  487. timeout: 20000
  488. })
  489. }
  490. // 校园动态
  491. export function getDongtaiYuanxiaoXinwenList(data = {}) {
  492. return request({
  493. 'url': '/common/xinwen/yuanxiao/list',
  494. headers: {
  495. isToken: false
  496. },
  497. method: 'post',
  498. data,
  499. timeout: 20000
  500. })
  501. }
  502. export function getDongtaiYuanxiaoXinwenInfo(data = {}) {
  503. return request({
  504. 'url': '/common/xinwen/yuanxiao/info',
  505. headers: {
  506. isToken: false
  507. },
  508. method: 'post',
  509. data,
  510. timeout: 20000
  511. })
  512. }
  513. export function getDongtaiXueyuanFengcaiList(data = {}) {
  514. return request({
  515. 'url': '/common/xinwen/fengcai/list',
  516. headers: {
  517. isToken: false
  518. },
  519. method: 'post',
  520. data,
  521. timeout: 20000
  522. })
  523. }
  524. export function getDongtaiXueyuanFengcaiInfo(data = {}) {
  525. return request({
  526. 'url': '/common/xinwen/fengcai/info',
  527. headers: {
  528. isToken: false
  529. },
  530. method: 'post',
  531. data,
  532. timeout: 20000
  533. })
  534. }
  535. export function getDongtaiXiaowuGongkaiList(data = {}) {
  536. return request({
  537. 'url': '/common/xinwen/xiaowu/list',
  538. headers: {
  539. isToken: false
  540. },
  541. method: 'post',
  542. data,
  543. timeout: 20000
  544. })
  545. }
  546. export function getDongtaiXiaowuGongkaiInfo(data = {}) {
  547. return request({
  548. 'url': '/common/xinwen/xiaowu/info',
  549. headers: {
  550. isToken: false
  551. },
  552. method: 'post',
  553. data,
  554. timeout: 20000
  555. })
  556. }
  557. export function getDongtaiTongzhiGonggaoList(data = {}) {
  558. return request({
  559. 'url': '/common/xinwen/tongzhi/list',
  560. headers: {
  561. isToken: false
  562. },
  563. method: 'post',
  564. data,
  565. timeout: 20000
  566. })
  567. }
  568. export function getDongtaiTongzhiGonggaoInfo(data = {}) {
  569. return request({
  570. 'url': '/common/xinwen/tongzhi/info',
  571. headers: {
  572. isToken: false
  573. },
  574. method: 'post',
  575. data,
  576. timeout: 20000
  577. })
  578. }
  579. // 招生就业
  580. export function getCommonZSJYShengxueInfo(data = {}) {
  581. return request({
  582. 'url': '/common/zhaosheng/shengxue/info',
  583. headers: {
  584. isToken: false
  585. },
  586. method: 'post',
  587. data,
  588. timeout: 20000
  589. })
  590. }
  591. export function getCommonZSJYShengxueList(data = {}) {
  592. return request({
  593. 'url': '/common/zhaosheng/shengxue/list',
  594. headers: {
  595. isToken: false
  596. },
  597. method: 'post',
  598. data,
  599. timeout: 20000
  600. })
  601. }
  602. export function getCommonZSJYZhuanyeList(data = {}) {
  603. return request({
  604. 'url': '/common/zhaosheng/zhuanye/list',
  605. headers: {
  606. isToken: false
  607. },
  608. method: 'post',
  609. data,
  610. timeout: 20000
  611. })
  612. }
  613. export function getCommonZSJYZhuanyeInfo(data = {}) {
  614. return request({
  615. 'url': '/common/zhaosheng/shengxue/info',
  616. headers: {
  617. isToken: false
  618. },
  619. method: 'post',
  620. data,
  621. timeout: 20000
  622. })
  623. }
  624. export function getCommonZSJYYouxiubiyeshengList(data = {}) {
  625. return request({
  626. 'url': '/common/zhaosheng/biye/list',
  627. headers: {
  628. isToken: false
  629. },
  630. method: 'post',
  631. data,
  632. timeout: 20000
  633. })
  634. }
  635. export function getCommonZSJYYouxiubiyeshengInfo(data = {}) {
  636. return request({
  637. 'url': '/common/zhaosheng/biye/info',
  638. headers: {
  639. isToken: false
  640. },
  641. method: 'post',
  642. data,
  643. timeout: 20000
  644. })
  645. }
  646. export function getCommonZSJYFengshuxianInfo(data = {}) {
  647. return request({
  648. 'url': '/common/zhaosheng/fenshuxian/info',
  649. headers: {
  650. isToken: false
  651. },
  652. method: 'post',
  653. data,
  654. timeout: 20000
  655. })
  656. }
  657. export function getCommonZSJYBaokaozhinanInfo(data = {}) {
  658. return request({
  659. 'url': '/common/zhaosheng/zhinan/info',
  660. headers: {
  661. isToken: false
  662. },
  663. method: 'post',
  664. data,
  665. timeout: 20000
  666. })
  667. }
  668. export function getCommonZSJYZhaoshengjianzhangInfo(data = {}) {
  669. return request({
  670. 'url': '/common/zhaosheng/zhinan/info',
  671. headers: {
  672. isToken: false
  673. },
  674. method: 'post',
  675. data,
  676. timeout: 20000
  677. })
  678. }
  679. export function getCommonXygkXiaoyuanfengguang(data = {}) {
  680. return request({
  681. 'url': '/common/gaikuang/fengguang/list',
  682. headers: {
  683. isToken: false
  684. },
  685. method: 'post',
  686. data,
  687. timeout: 20000
  688. })
  689. }
  690. export function getCommonJyjxDierketang(data = {}) {
  691. return request({
  692. 'url': '/common/jiaoyu/ketang/list',
  693. headers: {
  694. isToken: false
  695. },
  696. method: 'post',
  697. data,
  698. timeout: 20000
  699. })
  700. }
  701. export function getCommonJyjxDierketangInfo(data = {}) {
  702. return request({
  703. 'url': '/common/jiaoyu/ketang/info',
  704. headers: {
  705. isToken: false
  706. },
  707. method: 'post',
  708. data,
  709. timeout: 20000
  710. })
  711. }
  712. export function getCommonYubaoming(data = {}) {
  713. return request({
  714. 'url': '/common/client/baoming/add',
  715. headers: {
  716. isToken: false
  717. },
  718. method: 'post',
  719. data,
  720. timeout: 20000
  721. })
  722. }
  723. export function getCommonYubaomingZhuanyeList(data = {}) {
  724. return request({
  725. 'url': '/common/client/baoming/zhuanye/list',
  726. headers: {
  727. isToken: false
  728. },
  729. method: 'post',
  730. data,
  731. timeout: 20000
  732. })
  733. }
  734. export function getCommonZhengcewenjianList(data = {}) {
  735. return request({
  736. 'url': '/common/zhaosheng/zhengce/list',
  737. headers: {
  738. isToken: false
  739. },
  740. method: 'post',
  741. data,
  742. timeout: 20000
  743. })
  744. }
  745. export function getCommonZhengcewenjianInfo(data = {}) {
  746. return request({
  747. 'url': '/common/zhaosheng/zhengce/info',
  748. headers: {
  749. isToken: false
  750. },
  751. method: 'post',
  752. data,
  753. timeout: 20000
  754. })
  755. }
  756. export function getCommonZypxTongzhiList(data = {}) {
  757. return request({
  758. 'url': '/common/zhiyepeixun/tongzhi/list',
  759. headers: {
  760. isToken: false
  761. },
  762. method: 'post',
  763. data,
  764. timeout: 20000
  765. })
  766. }
  767. export function getCommonZypxTongzhiInfo(data = {}) {
  768. return request({
  769. 'url': '/common/zhiyepeixun/tongzhi/info',
  770. headers: {
  771. isToken: false
  772. },
  773. method: 'post',
  774. data,
  775. timeout: 20000
  776. })
  777. }
  778. export function getCommonZsjyJianzhang(data = {}) {
  779. return request({
  780. 'url': '/common/zhaosheng/jianzhang/info',
  781. headers: {
  782. isToken: false
  783. },
  784. method: 'post',
  785. data,
  786. timeout: 20000
  787. })
  788. }
  789. export function getCommonZsjyZhuanyeList(data = {}) {
  790. return request({
  791. 'url': '/common/zhaosheng/zhuanye/list',
  792. headers: {
  793. isToken: false
  794. },
  795. method: 'post',
  796. data,
  797. timeout: 20000
  798. })
  799. }
  800. export function getCommonZsjyZhuanyeInfo(data = {}) {
  801. return request({
  802. 'url': '/common/zhaosheng/zhuanye/info',
  803. headers: {
  804. isToken: false
  805. },
  806. method: 'post',
  807. data,
  808. timeout: 20000
  809. })
  810. }
  811. export function getCommonZsjyXiaoqiList(data = {}) {
  812. return request({
  813. 'url': '/common/zhaosheng/xiaoqi/list',
  814. headers: {
  815. isToken: false
  816. },
  817. method: 'post',
  818. data,
  819. timeout: 20000
  820. })
  821. }
  822. export function getCommonZsjyXiaoqiInfo(data = {}) {
  823. return request({
  824. 'url': '/common/zhaosheng/xiaoqi/info',
  825. headers: {
  826. isToken: false
  827. },
  828. method: 'post',
  829. data,
  830. timeout: 20000
  831. })
  832. }
  833. export function getCommonZsjyZhaopin(data = {}) {
  834. return request({
  835. 'url': '/common/zhaosheng/zhaopin/info',
  836. headers: {
  837. isToken: false
  838. },
  839. method: 'post',
  840. data,
  841. timeout: 20000
  842. })
  843. }
  844. export function getCommonZsjyXXazaiList(data = {}) {
  845. return request({
  846. 'url': '/common/xiazai/list',
  847. headers: {
  848. isToken: false
  849. },
  850. method: 'post',
  851. data,
  852. timeout: 20000
  853. })
  854. }
  855. export function getCommonZsjyXXazaiTree(data = {}) {
  856. return request({
  857. 'url': '/common/xiazai/classify/tree',
  858. headers: {
  859. isToken: false
  860. },
  861. method: 'post',
  862. data,
  863. timeout: 20000
  864. })
  865. }