docsdev.js 62 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374
  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing,
  13. * software distributed under the License is distributed on an
  14. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  15. * KIND, either express or implied. See the License for the
  16. * specific language governing permissions and limitations
  17. * under the License.
  18. *
  19. */
  20. export default {
  21. 'en-us': {
  22. sidemenu: [
  23. {
  24. title: 'About',
  25. children: [
  26. {
  27. title: 'Introduction',
  28. link: '/en-us/docs/dev/user_doc/about/introduction.html',
  29. },
  30. {
  31. title: 'Features',
  32. link: '/en-us/docs/dev/user_doc/about/features.html',
  33. },
  34. {
  35. title: 'Hardware Environment',
  36. link: '/en-us/docs/dev/user_doc/about/hardware.html',
  37. },
  38. {
  39. title: 'Glossary',
  40. link: '/en-us/docs/dev/user_doc/about/glossary.html',
  41. }
  42. ],
  43. },
  44. {
  45. title: 'Quick Start',
  46. children: [
  47. {
  48. title: 'Quick Start',
  49. link: '/en-us/docs/dev/user_doc/guide/start/quick-start.html',
  50. },
  51. {
  52. title: 'Docker Deployment',
  53. link: '/en-us/docs/dev/user_doc/guide/start/docker.html',
  54. },
  55. ],
  56. },
  57. {
  58. title: 'Introduction to Functions',
  59. children: [
  60. {
  61. title: 'Application Homepage',
  62. link: '/en-us/docs/dev/user_doc/guide/homepage.html',
  63. },
  64. {
  65. title: 'Project',
  66. children: [
  67. {
  68. title: 'Project List',
  69. link: '/en-us/docs/dev/user_doc/guide/project/project-list.html',
  70. },
  71. {
  72. title: 'Workflow Definition',
  73. link: '/en-us/docs/dev/user_doc/guide/project/workflow-definition.html',
  74. },
  75. {
  76. title: 'Workflow Instance',
  77. link: '/en-us/docs/dev/user_doc/guide/project/workflow-instance.html',
  78. },
  79. {
  80. title: 'Task Instance',
  81. link: '/en-us/docs/dev/user_doc/guide/project/task-instance.html',
  82. },
  83. {
  84. title: 'Task Definition',
  85. link: '/zh-cn/docs/dev/user_doc/guide/project/task-definition.html',
  86. },
  87. ]
  88. },
  89. {
  90. title: 'Task',
  91. children: [
  92. {
  93. title: 'Appendix',
  94. link: '/en-us/docs/dev/user_doc/guide/task/appendix.html',
  95. },
  96. {
  97. title: 'Shell',
  98. link: '/en-us/docs/dev/user_doc/guide/task/shell.html',
  99. },
  100. {
  101. title: 'SubProcess',
  102. link: '/en-us/docs/dev/user_doc/guide/task/sub-process.html',
  103. },
  104. {
  105. title: 'Dependent',
  106. link: '/en-us/docs/dev/user_doc/guide/task/dependent.html',
  107. },
  108. {
  109. title: 'Stored Procedure',
  110. link: '/en-us/docs/dev/user_doc/guide/task/stored-procedure.html',
  111. },
  112. {
  113. title: 'SQL',
  114. link: '/en-us/docs/dev/user_doc/guide/task/sql.html',
  115. },
  116. {
  117. title: 'Spark',
  118. link: '/en-us/docs/dev/user_doc/guide/task/spark.html',
  119. },
  120. {
  121. title: 'MapReduce',
  122. link: '/en-us/docs/dev/user_doc/guide/task/map-reduce.html',
  123. },
  124. {
  125. title: 'Python',
  126. link: '/en-us/docs/dev/user_doc/guide/task/python.html',
  127. },
  128. {
  129. title: 'Flink',
  130. link: '/en-us/docs/dev/user_doc/guide/task/flink.html',
  131. },
  132. {
  133. title: 'HTTP',
  134. link: '/en-us/docs/dev/user_doc/guide/task/http.html',
  135. },
  136. {
  137. title: 'DataX',
  138. link: '/en-us/docs/dev/user_doc/guide/task/datax.html',
  139. },
  140. {
  141. title: 'Pigeon',
  142. link: '/en-us/docs/dev/user_doc/guide/task/pigeon.html',
  143. },
  144. {
  145. title: 'Conditions',
  146. link: '/en-us/docs/dev/user_doc/guide/task/conditions.html',
  147. },
  148. {
  149. title: 'Switch',
  150. link: '/en-us/docs/dev/user_doc/guide/task/switch.html',
  151. },
  152. {
  153. title: 'SeaTunnel',
  154. link: '/en-us/docs/dev/user_doc/guide/task/seatunnel.html',
  155. },
  156. {
  157. title: 'Amazon EMR',
  158. link: '/en-us/docs/dev/user_doc/guide/task/emr.html',
  159. },
  160. {
  161. title: 'Apache Zeppelin',
  162. link: '/en-us/docs/dev/user_doc/guide/task/zeppelin.html',
  163. },
  164. {
  165. title: 'Jupyter',
  166. link: '/en-us/docs/dev/user_doc/guide/task/jupyter.html',
  167. },
  168. {
  169. title: 'Hive CLI',
  170. link: '/en-us/docs/dev/user_doc/guide/task/hive-cli.html',
  171. },
  172. {
  173. title: 'Kubernetes',
  174. link: '/en-us/docs/dev/user_doc/guide/task/kubernetes.html',
  175. },
  176. {
  177. title: 'MLflow',
  178. link: '/en-us/docs/dev/user_doc/guide/task/mlflow.html',
  179. },
  180. {
  181. title: 'Openmldb',
  182. link: '/en-us/docs/dev/user_doc/guide/task/openmldb.html',
  183. },
  184. {
  185. title: 'DVC',
  186. link: '/en-us/docs/dev/user_doc/guide/task/dvc.html',
  187. },
  188. {
  189. title: 'Dinky',
  190. link: '/en-us/docs/dev/user_doc/guide/task/dinky.html',
  191. },
  192. {
  193. title: 'Java',
  194. link: '/en-us/docs/dev/user_doc/guide/task/java.html',
  195. },
  196. {
  197. title: 'SageMaker',
  198. link: '/en-us/docs/dev/user_doc/guide/task/sagemaker.html',
  199. },
  200. {
  201. title: 'ChunJun',
  202. link: '/en-us/docs/dev/user_doc/guide/task/chunjun.html',
  203. },
  204. {
  205. title: 'Pytorch',
  206. link: '/en-us/docs/dev/user_doc/guide/task/pytorch.html',
  207. },
  208. {
  209. title: 'Amazon DMS',
  210. link: '/en-us/docs/dev/user_doc/guide/task/dms.html',
  211. },
  212. {
  213. title: 'AWS Datasync',
  214. link: '/en-us/docs/dev/user_doc/guide/task/datasync.html',
  215. },
  216. {
  217. title: 'Kubeflow',
  218. link: '/en-us/docs/dev/user_doc/guide/task/kubeflow.html',
  219. },
  220. {
  221. title: 'Apache Linkis',
  222. link: '/en-us/docs/dev/user_doc/guide/task/linkis.html',
  223. },
  224. ],
  225. },
  226. {
  227. title: 'Parameter',
  228. children: [
  229. {
  230. title: 'Built-in Parameter',
  231. link: '/en-us/docs/dev/user_doc/guide/parameter/built-in.html',
  232. },
  233. {
  234. title: 'Global Parameter',
  235. link: '/en-us/docs/dev/user_doc/guide/parameter/global.html',
  236. },
  237. {
  238. title: 'Local Parameter',
  239. link: '/en-us/docs/dev/user_doc/guide/parameter/local.html',
  240. },
  241. {
  242. title: 'Parameter Context',
  243. link: '/en-us/docs/dev/user_doc/guide/parameter/context.html',
  244. },
  245. {
  246. title: 'Parameter Priority',
  247. link: '/en-us/docs/dev/user_doc/guide/parameter/priority.html',
  248. },
  249. {
  250. title: 'File Parameter',
  251. link: '/en-us/docs/dev/user_doc/guide/parameter/file-parameter.html',
  252. },
  253. ],
  254. },
  255. {
  256. title: 'Data Source',
  257. children: [
  258. {
  259. title: 'MySQL',
  260. link: '/en-us/docs/dev/user_doc/guide/datasource/mysql.html',
  261. },
  262. {
  263. title: 'PostgreSQL',
  264. link: '/en-us/docs/dev/user_doc/guide/datasource/postgresql.html',
  265. },
  266. {
  267. title: 'HIVE',
  268. link: '/en-us/docs/dev/user_doc/guide/datasource/hive.html',
  269. },
  270. {
  271. title: 'Spark',
  272. link: '/en-us/docs/dev/user_doc/guide/datasource/spark.html',
  273. },
  274. {
  275. title: 'Presto',
  276. link: '/en-us/docs/dev/user_doc/guide/datasource/presto.html',
  277. },
  278. {
  279. title: 'SQL SERVER',
  280. link: '/en-us/docs/dev/user_doc/guide/datasource/sqlserver.html',
  281. },
  282. {
  283. title: 'Amazon Redshift',
  284. link: '/en-us/docs/dev/user_doc/guide/datasource/redshift.html',
  285. },
  286. {
  287. title: 'ClickHouse',
  288. link: '/en-us/docs/dev/user_doc/guide/datasource/clickhouse.html',
  289. },
  290. {
  291. title: 'IBM DB2',
  292. link: '/en-us/docs/dev/user_doc/guide/datasource/db2.html',
  293. },
  294. {
  295. title: 'Oracle',
  296. link: '/en-us/docs/dev/user_doc/guide/datasource/oracle.html',
  297. },
  298. {
  299. title: 'Amazon Athena',
  300. link: '/en-us/docs/dev/user_doc/guide/datasource/athena.html',
  301. },
  302. {
  303. title: 'Azure SQL Database',
  304. link: '/en-us/docs/dev/user_doc/guide/datasource/azure-sql.html',
  305. },
  306. {
  307. title: 'Trino',
  308. link: '/en-us/docs/dev/user_doc/guide/datasource/trino.html',
  309. },
  310. {
  311. title: 'StarRocks',
  312. link: '/en-us/docs/dev/user_doc/guide/datasource/starrocks.html',
  313. },
  314. {
  315. title: 'DAMENG',
  316. link: '/en-us/docs/dev/user_doc/guide/datasource/dameng.html',
  317. },
  318. {
  319. title: 'OceanBase',
  320. link: '/en-us/docs/dev/user_doc/guide/datasource/oceanbase.html',
  321. },
  322. ],
  323. },
  324. {
  325. title: 'Alert',
  326. children: [
  327. {
  328. title: 'Alert Component User Guide ',
  329. link: '/en-us/docs/dev/user_doc/guide/alert/alert_plugin_user_guide.html',
  330. },
  331. {
  332. title: 'Email',
  333. link: '/en-us/docs/dev/user_doc/guide/alert/email.html',
  334. },
  335. {
  336. title: 'Telegram',
  337. link: '/en-us/docs/dev/user_doc/guide/alert/telegram.html',
  338. },
  339. {
  340. title: 'Ding Talk',
  341. link: '/en-us/docs/dev/user_doc/guide/alert/dingtalk.html',
  342. },
  343. {
  344. title: 'Enterprise Wechat',
  345. link: '/en-us/docs/dev/user_doc/guide/alert/enterprise-wechat.html',
  346. },
  347. {
  348. title: 'Enterprise Webexteams',
  349. link: '/en-us/docs/dev/user_doc/guide/alert/enterprise-webexteams.html',
  350. },
  351. {
  352. title: 'Script',
  353. link: '/en-us/docs/dev/user_doc/guide/alert/script.html',
  354. },
  355. {
  356. title: 'Http',
  357. link: '/en-us/docs/dev/user_doc/guide/alert/http.html',
  358. },
  359. {
  360. title: 'Feishu',
  361. link: '/en-us/docs/dev/user_doc/guide/alert/feishu.html',
  362. },
  363. {
  364. title: 'Slack',
  365. link: '/en-us/docs/dev/user_doc/guide/alert/slack.html',
  366. },
  367. ],
  368. },
  369. {
  370. title: 'Resource',
  371. children: [
  372. {
  373. title: 'Introduction',
  374. link: '/en-us/docs/dev/user_doc/guide/resource/intro.html'
  375. },
  376. {
  377. title: 'Configuration',
  378. link: '/en-us/docs/dev/user_doc/guide/resource/configuration.html'
  379. },
  380. {
  381. title: 'File Manage',
  382. link: '/en-us/docs/dev/user_doc/guide/resource/file-manage.html'
  383. },
  384. {
  385. title: 'UDF Manage',
  386. link: '/en-us/docs/dev/user_doc/guide/resource/udf-manage.html'
  387. },
  388. {
  389. title: 'Task Group Manage',
  390. link: '/en-us/docs/dev/user_doc/guide/resource/task-group.html'
  391. },
  392. ],
  393. },
  394. {
  395. title: 'Monitor',
  396. link: '/en-us/docs/dev/user_doc/guide/monitor.html',
  397. },
  398. {
  399. title: 'Security',
  400. children: [
  401. {
  402. title: 'Security (Authorization System)',
  403. link: '/en-us/docs/dev/user_doc/guide/security/security.html',
  404. },
  405. {
  406. title: 'Authentication Type',
  407. link: '/en-us/docs/dev/user_doc/guide/security/authentication-type.html',
  408. }
  409. ],
  410. },
  411. {
  412. title: 'Metrics',
  413. children: [
  414. {
  415. title: 'Metrics',
  416. link: '/en-us/docs/dev/user_doc/guide/metrics/metrics.html',
  417. }
  418. ],
  419. },
  420. {
  421. title: 'Data Quality',
  422. link: '/en-us/docs/dev/user_doc/guide/data-quality.html',
  423. },
  424. {
  425. title: 'Remote Logging',
  426. link: '/en-us/docs/dev/user_doc/guide/remote-logging.html',
  427. },
  428. {
  429. title: 'Upgrade',
  430. children: [
  431. {
  432. title: 'Incompatible',
  433. link: '/en-us/docs/dev/user_doc/guide/upgrade/incompatible.html',
  434. },
  435. {
  436. title: 'Upgrade',
  437. link: '/en-us/docs/dev/user_doc/guide/upgrade/upgrade.html',
  438. },
  439. ],
  440. },
  441. {
  442. title: 'Expansion and Reduction',
  443. link: '/en-us/docs/dev/user_doc/guide/expansion-reduction.html',
  444. },
  445. {
  446. title: 'Demo',
  447. link: '/en-us/docs/dev/user_doc/guide/demo.html',
  448. },
  449. ],
  450. },
  451. {
  452. title: 'Installation',
  453. children: [
  454. {
  455. title: 'Standalone Deployment',
  456. link: '/en-us/docs/dev/user_doc/guide/installation/standalone.html',
  457. },
  458. {
  459. title: 'Pseudo Cluster Deployment',
  460. link: '/en-us/docs/dev/user_doc/guide/installation/pseudo-cluster.html',
  461. },
  462. {
  463. title: 'Cluster Deployment',
  464. link: '/en-us/docs/dev/user_doc/guide/installation/cluster.html',
  465. },
  466. {
  467. title: 'Kubernetes Deployment',
  468. link: '/en-us/docs/dev/user_doc/guide/installation/kubernetes.html',
  469. },
  470. {
  471. title: 'integration',
  472. children: [
  473. {
  474. title: 'Rainbond Deployment',
  475. link: '/en-us/docs/dev/user_doc/guide/integration/rainbond.html',
  476. },
  477. ],
  478. },
  479. ],
  480. },
  481. {
  482. title: 'Architecture Guide',
  483. children: [
  484. {
  485. title: 'Architecture Design',
  486. link: '/en-us/docs/dev/user_doc/architecture/design.html',
  487. },
  488. {
  489. title: 'Metadata',
  490. link: '/en-us/docs/dev/user_doc/architecture/metadata.html',
  491. },
  492. {
  493. title: 'Configuration File',
  494. link: '/en-us/docs/dev/user_doc/architecture/configuration.html',
  495. },
  496. {
  497. title: 'Task Structure',
  498. link: '/en-us/docs/dev/user_doc/architecture/task-structure.html',
  499. },
  500. {
  501. title: 'Load Balance',
  502. link: '/en-us/docs/dev/user_doc/architecture/load-balance.html',
  503. },
  504. {
  505. title: 'Cache',
  506. link: '/en-us/docs/dev/user_doc/architecture/cache.html',
  507. },
  508. ],
  509. },
  510. {
  511. title: 'API',
  512. children: [
  513. {
  514. title: 'Open API',
  515. link: '/en-us/docs/dev/user_doc/guide/open-api.html',
  516. },
  517. {
  518. title: 'PyDolphinScheduler',
  519. link: '/python/main/index.html',
  520. },
  521. {
  522. title: 'Health Check',
  523. link: '/en-us/docs/dev/user_doc/guide/healthcheck.html',
  524. },
  525. ],
  526. },
  527. {
  528. title: 'Contribution',
  529. children: [
  530. {
  531. title: 'Join',
  532. children: [
  533. {
  534. title: 'Security Report',
  535. link: '/en-us/docs/dev/user_doc/contribute/join/security.html',
  536. },
  537. {
  538. title: 'How to Become a Committer',
  539. link: '/en-us/docs/dev/user_doc/contribute/join/become-a-committer.html',
  540. },
  541. {
  542. title: 'Subscribe Mailing Lists',
  543. link: '/en-us/docs/dev/user_doc/contribute/join/subscribe.html',
  544. },
  545. {
  546. title: 'Participate in Contributing',
  547. link: '/en-us/docs/dev/user_doc/contribute/join/contribute.html',
  548. },
  549. {
  550. title: 'Code of Conduct',
  551. link: '/en-us/docs/dev/user_doc/contribute/join/code-conduct.html',
  552. },
  553. {
  554. title: 'Review Issue or Pull Requests',
  555. link: '/en-us/docs/dev/user_doc/contribute/join/review.html',
  556. },
  557. {
  558. title: 'E2E Contribution Guide',
  559. link: '/en-us/docs/dev/user_doc/contribute/join/e2e-guide.html',
  560. },
  561. {
  562. title: 'Submit Code',
  563. link: '/en-us/docs/dev/user_doc/contribute/join/submit-code.html',
  564. },
  565. {
  566. title: 'License Notice',
  567. link: '/en-us/docs/dev/user_doc/contribute/join/DS-License.html',
  568. },
  569. {
  570. title: 'Document Notice',
  571. link: '/en-us/docs/dev/user_doc/contribute/join/document.html',
  572. },
  573. {
  574. title: 'Issue Notice',
  575. link: '/en-us/docs/dev/user_doc/contribute/join/issue.html',
  576. },
  577. {
  578. title: 'Pull Request Notice',
  579. link: '/en-us/docs/dev/user_doc/contribute/join/pull-request.html',
  580. },
  581. {
  582. title: 'Commit Message Notice',
  583. link: '/en-us/docs/dev/user_doc/contribute/join/commit-message.html',
  584. },
  585. {
  586. title: 'Micro BenchMark Notice',
  587. link: '/en-us/docs/dev/user_doc/contribute/join/microbench.html',
  588. },
  589. {
  590. title: 'Unit Test Writing Guide',
  591. link: '/en-us/docs/dev/user_doc/contribute/join/unit-test.html',
  592. },
  593. ],
  594. },
  595. {
  596. title: 'Development Environment Setup',
  597. link: '/en-us/docs/dev/user_doc/contribute/development-environment-setup.html',
  598. },
  599. {
  600. title: 'Design Document',
  601. children: [
  602. // TODO not support multiply level for now
  603. // {
  604. // title: 'SPI',
  605. // children: [
  606. {
  607. title: 'Architecture Design',
  608. link: '/en-us/docs/dev/user_doc/contribute/architecture-design.html',
  609. },
  610. {
  611. title: 'Alert SPI',
  612. link: '/en-us/docs/dev/user_doc/contribute/backend/spi/alert.html',
  613. },
  614. {
  615. title: 'Registry SPI',
  616. link: '/en-us/docs/dev/user_doc/contribute/backend/spi/registry.html',
  617. },
  618. {
  619. title: 'Task SPI',
  620. link: '/en-us/docs/dev/user_doc/contribute/backend/spi/task.html',
  621. },
  622. {
  623. title: 'Datasource SPI',
  624. link: '/en-us/docs/dev/user_doc/contribute/backend/spi/datasource.html',
  625. },
  626. {
  627. title: 'Mechanism Design',
  628. link: '/en-us/docs/dev/user_doc/contribute/backend/mechanism/overview.html',
  629. },
  630. ],
  631. },
  632. {
  633. title: 'Guidelines',
  634. children: [
  635. {
  636. title: 'Frontend Development',
  637. link: '/en-us/docs/dev/user_doc/contribute/frontend-development.html',
  638. },
  639. {
  640. title: 'API Standard',
  641. link: '/en-us/docs/dev/user_doc/contribute/api-standard.html',
  642. },
  643. {
  644. title: 'E2E Automation Test',
  645. link: '/en-us/docs/dev/user_doc/contribute/e2e-test.html',
  646. },
  647. {
  648. title: 'API Automation Test',
  649. link: '/en-us/docs/dev/user_doc/contribute/api-test.html',
  650. },
  651. {
  652. title: 'Log Specification',
  653. link: '/en-us/docs/dev/user_doc/contribute/log-specification.html',
  654. },
  655. ],
  656. },
  657. {
  658. title: 'Releasing',
  659. link: '/en-us/docs/dev/user_doc/contribute/release.html',
  660. },
  661. {
  662. title: 'Questions & Communications',
  663. link: '/en-us/docs/dev/user_doc/contribute/have-questions.html',
  664. },
  665. ],
  666. },
  667. {
  668. title: 'DSIP',
  669. children: [
  670. {
  671. title: 'DSIP',
  672. link: '/en-us/docs/dev/user_doc/DSIP.html',
  673. },
  674. ],
  675. },
  676. {
  677. title: 'FAQ',
  678. children: [
  679. {
  680. title: 'General Setting',
  681. link: '/en-us/docs/dev/user_doc/guide/howto/general-setting.html',
  682. },
  683. {
  684. title: 'Datasource Setting',
  685. link: '/en-us/docs/dev/user_doc/guide/howto/datasource-setting.html',
  686. },
  687. {
  688. title: 'Others',
  689. link: '/en-us/docs/release/faq.html',
  690. }
  691. ],
  692. },
  693. {
  694. title: 'Older Versions',
  695. children: [
  696. {
  697. title: 'Older Versions',
  698. link: '/en-us/docs/release/history-versions.html',
  699. },
  700. ],
  701. },
  702. ],
  703. barText: 'Documentation',
  704. },
  705. 'zh-cn': {
  706. sidemenu: [
  707. {
  708. title: '关于Apache DolphinScheduler',
  709. children: [
  710. {
  711. title: '简介',
  712. link: '/zh-cn/docs/dev/user_doc/about/introduction.html',
  713. },
  714. {
  715. title: '特性',
  716. link: '/zh-cn/docs/dev/user_doc/about/features.html',
  717. },
  718. {
  719. title: '建议配置',
  720. link: '/zh-cn/docs/dev/user_doc/about/hardware.html',
  721. },
  722. {
  723. title: '名词解释',
  724. link: '/zh-cn/docs/dev/user_doc/about/glossary.html',
  725. },
  726. ],
  727. },
  728. {
  729. title: '快速上手',
  730. children: [
  731. {
  732. title: '快速上手',
  733. link: '/zh-cn/docs/dev/user_doc/guide/start/quick-start.html',
  734. },
  735. {
  736. title: 'Docker部署(Docker)',
  737. link: '/zh-cn/docs/dev/user_doc/guide/start/docker.html',
  738. },
  739. ],
  740. },
  741. {
  742. title: '功能介绍',
  743. children: [
  744. {
  745. title: '应用首页',
  746. link: '/zh-cn/docs/dev/user_doc/guide/homepage.html',
  747. },
  748. {
  749. title: '项目管理',
  750. children: [
  751. {
  752. title: '项目列表',
  753. link: '/zh-cn/docs/dev/user_doc/guide/project/project-list.html',
  754. },
  755. {
  756. title: '工作流定义',
  757. link: '/zh-cn/docs/dev/user_doc/guide/project/workflow-definition.html',
  758. },
  759. {
  760. title: '工作流实例',
  761. link: '/zh-cn/docs/dev/user_doc/guide/project/workflow-instance.html',
  762. },
  763. {
  764. title: '任务实例',
  765. link: '/zh-cn/docs/dev/user_doc/guide/project/task-instance.html',
  766. },
  767. {
  768. title: '任务定义',
  769. link: '/zh-cn/docs/dev/user_doc/guide/project/task-definition.html',
  770. },
  771. ]
  772. },
  773. {
  774. title: '任务类型',
  775. children: [
  776. {
  777. title: 'Appendix',
  778. link: '/zh-cn/docs/dev/user_doc/guide/task/appendix.html',
  779. },
  780. {
  781. title: 'Shell',
  782. link: '/zh-cn/docs/dev/user_doc/guide/task/shell.html',
  783. },
  784. {
  785. title: 'SubProcess',
  786. link: '/zh-cn/docs/dev/user_doc/guide/task/sub-process.html',
  787. },
  788. {
  789. title: 'Dependent',
  790. link: '/zh-cn/docs/dev/user_doc/guide/task/dependent.html',
  791. },
  792. {
  793. title: 'Stored Procedure',
  794. link: '/zh-cn/docs/dev/user_doc/guide/task/stored-procedure.html',
  795. },
  796. {
  797. title: 'SQL',
  798. link: '/zh-cn/docs/dev/user_doc/guide/task/sql.html',
  799. },
  800. {
  801. title: 'Spark',
  802. link: '/zh-cn/docs/dev/user_doc/guide/task/spark.html',
  803. },
  804. {
  805. title: 'MapReduce',
  806. link: '/zh-cn/docs/dev/user_doc/guide/task/map-reduce.html',
  807. },
  808. {
  809. title: 'Python',
  810. link: '/zh-cn/docs/dev/user_doc/guide/task/python.html',
  811. },
  812. {
  813. title: 'Flink',
  814. link: '/zh-cn/docs/dev/user_doc/guide/task/flink.html',
  815. },
  816. {
  817. title: 'HTTP',
  818. link: '/zh-cn/docs/dev/user_doc/guide/task/http.html',
  819. },
  820. {
  821. title: 'DataX',
  822. link: '/zh-cn/docs/dev/user_doc/guide/task/datax.html',
  823. },
  824. {
  825. title: 'Pigeon',
  826. link: '/zh-cn/docs/dev/user_doc/guide/task/pigeon.html',
  827. },
  828. {
  829. title: 'Conditions',
  830. link: '/zh-cn/docs/dev/user_doc/guide/task/conditions.html',
  831. },
  832. {
  833. title: 'Switch',
  834. link: '/zh-cn/docs/dev/user_doc/guide/task/switch.html',
  835. },
  836. {
  837. title: 'SeaTunnel',
  838. link: '/zh-cn/docs/dev/user_doc/guide/task/seatunnel.html',
  839. },
  840. {
  841. title: 'Amazon EMR',
  842. link: '/zh-cn/docs/dev/user_doc/guide/task/emr.html',
  843. },
  844. {
  845. title: 'Apache Zeppelin',
  846. link: '/zh-cn/docs/dev/user_doc/guide/task/zeppelin.html',
  847. },
  848. {
  849. title: 'Jupyter',
  850. link: '/zh-cn/docs/dev/user_doc/guide/task/jupyter.html',
  851. },
  852. {
  853. title: 'Hive CLI',
  854. link: '/zh-cn/docs/dev/user_doc/guide/task/hive-cli.html',
  855. },
  856. {
  857. title: 'Kubernetes',
  858. link: '/zh-cn/docs/dev/user_doc/guide/task/kubernetes.html',
  859. },
  860. {
  861. title: 'MLflow',
  862. link: '/zh-cn/docs/dev/user_doc/guide/task/mlflow.html',
  863. },
  864. {
  865. title: 'Openmldb',
  866. link: '/zh-cn/docs/dev/user_doc/guide/task/openmldb.html',
  867. },
  868. {
  869. title: 'DVC',
  870. link: '/zh-cn/docs/dev/user_doc/guide/task/dvc.html',
  871. },
  872. {
  873. title: 'Dinky',
  874. link: '/zh-cn/docs/dev/user_doc/guide/task/dinky.html',
  875. },
  876. {
  877. title: 'Java',
  878. link: '/zh-cn/docs/dev/user_doc/guide/task/java.html',
  879. },
  880. {
  881. title: 'SageMaker',
  882. link: '/zh-cn/docs/dev/user_doc/guide/task/sagemaker.html',
  883. },
  884. {
  885. title: 'ChunJun',
  886. link: '/zh-cn/docs/dev/user_doc/guide/task/chunjun.html',
  887. },
  888. {
  889. title: 'Pytorch',
  890. link: '/zh-cn/docs/dev/user_doc/guide/task/pytorch.html',
  891. },
  892. {
  893. title: 'Amazon DMS',
  894. link: '/zh-cn/docs/dev/user_doc/guide/task/dms.html',
  895. },
  896. {
  897. title: 'AWS Datasync',
  898. link: '/zh-cn/docs/dev/user_doc/guide/task/datasync.html',
  899. },
  900. {
  901. title: 'Kubeflow',
  902. link: '/zh-cn/docs/dev/user_doc/guide/task/kubeflow.html',
  903. },
  904. {
  905. title: 'Apache Linkis',
  906. link: '/zh-cn/docs/dev/user_doc/guide/task/linkis.html',
  907. },
  908. ],
  909. },
  910. {
  911. title: '参数',
  912. children: [
  913. {
  914. title: '内置参数',
  915. link: '/zh-cn/docs/dev/user_doc/guide/parameter/built-in.html',
  916. },
  917. {
  918. title: '全局参数',
  919. link: '/zh-cn/docs/dev/user_doc/guide/parameter/global.html',
  920. },
  921. {
  922. title: '本地参数',
  923. link: '/zh-cn/docs/dev/user_doc/guide/parameter/local.html',
  924. },
  925. {
  926. title: '参数传递',
  927. link: '/zh-cn/docs/dev/user_doc/guide/parameter/context.html',
  928. },
  929. {
  930. title: '参数优先级',
  931. link: '/zh-cn/docs/dev/user_doc/guide/parameter/priority.html',
  932. },
  933. {
  934. title: '文件参数传递',
  935. link: '/zh-cn/docs/dev/user_doc/guide/parameter/file-parameter.html',
  936. },
  937. ],
  938. },
  939. {
  940. title: '数据源中心',
  941. children: [
  942. {
  943. title: 'MySQL',
  944. link: '/zh-cn/docs/dev/user_doc/guide/datasource/mysql.html',
  945. },
  946. {
  947. title: 'PostgreSQL',
  948. link: '/zh-cn/docs/dev/user_doc/guide/datasource/postgresql.html',
  949. },
  950. {
  951. title: 'HIVE',
  952. link: '/zh-cn/docs/dev/user_doc/guide/datasource/hive.html',
  953. },
  954. {
  955. title: 'Spark',
  956. link: '/zh-cn/docs/dev/user_doc/guide/datasource/spark.html',
  957. },
  958. {
  959. title: 'Amazon Athena',
  960. link: '/zh-cn/docs/dev/user_doc/guide/datasource/athena.html',
  961. },
  962. {
  963. title: 'Azure SQL Database',
  964. link: '/zh-cn/docs/dev/user_doc/guide/datasource/azure-sql.html',
  965. },
  966. {
  967. title: 'Redshift',
  968. link: '/zh-cn/docs/dev/user_doc/guide/datasource/redshift.html',
  969. },
  970. {
  971. title: 'Oracle',
  972. link: '/zh-cn/docs/dev/user_doc/guide/datasource/oracle.html',
  973. },
  974. {
  975. title: 'Trino',
  976. link: '/zh-cn/docs/dev/user_doc/guide/datasource/trino.html',
  977. },
  978. {
  979. title: 'StarRocks',
  980. link: '/zh-cn/docs/dev/user_doc/guide/datasource/starrocks.html',
  981. },
  982. {
  983. title: 'DAMENG',
  984. link: '/zh-cn/docs/dev/user_doc/guide/datasource/dameng.html',
  985. },
  986. {
  987. title: 'OceanBase',
  988. link: '/zh-cn/docs/dev/user_doc/guide/datasource/oceanbase.html',
  989. },
  990. ],
  991. },
  992. {
  993. title: '告警',
  994. children: [
  995. {
  996. title: '告警组件向导',
  997. link: '/zh-cn/docs/dev/user_doc/guide/alert/alert_plugin_user_guide.html',
  998. },
  999. {
  1000. title: 'Email',
  1001. link: '/zh-cn/docs/dev/user_doc/guide/alert/email.html',
  1002. },
  1003. {
  1004. title: 'Telegram',
  1005. link: '/zh-cn/docs/dev/user_doc/guide/alert/telegram.html',
  1006. },
  1007. {
  1008. title: '钉钉告警',
  1009. link: '/zh-cn/docs/dev/user_doc/guide/alert/dingtalk.html',
  1010. },
  1011. {
  1012. title: '企业微信',
  1013. link: '/zh-cn/docs/dev/user_doc/guide/alert/enterprise-wechat.html',
  1014. },
  1015. {
  1016. title: 'Webexteams',
  1017. link: '/zh-cn/docs/dev/user_doc/guide/alert/enterprise-webexteams.html',
  1018. },
  1019. {
  1020. title: '脚本告警',
  1021. link: '/zh-cn/docs/dev/user_doc/guide/alert/script.html',
  1022. },
  1023. {
  1024. title: 'Http告警',
  1025. link: '/zh-cn/docs/dev/user_doc/guide/alert/http.html',
  1026. },
  1027. {
  1028. title: '飞书告警',
  1029. link: '/zh-cn/docs/dev/user_doc/guide/alert/feishu.html',
  1030. },
  1031. {
  1032. title: 'Slack告警',
  1033. link: '/zh-cn/docs/dev/user_doc/guide/alert/slack.html',
  1034. },
  1035. ],
  1036. },
  1037. {
  1038. title: '资源中心',
  1039. children: [
  1040. {
  1041. title: '简介',
  1042. link: '/zh-cn/docs/dev/user_doc/guide/resource/intro.html'
  1043. },
  1044. {
  1045. title: '配置详情',
  1046. link: '/zh-cn/docs/dev/user_doc/guide/resource/configuration.html'
  1047. },
  1048. {
  1049. title: '文件管理',
  1050. link: '/zh-cn/docs/dev/user_doc/guide/resource/file-manage.html'
  1051. },
  1052. {
  1053. title: 'UDF 管理',
  1054. link: '/zh-cn/docs/dev/user_doc/guide/resource/udf-manage.html'
  1055. },
  1056. {
  1057. title: '任务组管理',
  1058. link: '/zh-cn/docs/dev/user_doc/guide/resource/task-group.html'
  1059. },
  1060. ],
  1061. },
  1062. {
  1063. title: '监控中心',
  1064. link: '/zh-cn/docs/dev/user_doc/guide/monitor.html',
  1065. },
  1066. {
  1067. title: '安全中心',
  1068. children: [
  1069. {
  1070. title: '安全中心(权限系统)',
  1071. link: '/zh-cn/docs/dev/user_doc/guide/security/security.html',
  1072. },
  1073. {
  1074. title: '认证方式',
  1075. link: '/zh-cn/docs/dev/user_doc/guide/security/authentication-type.html',
  1076. }
  1077. ],
  1078. },
  1079. {
  1080. title: '指标相关',
  1081. children: [
  1082. {
  1083. title: '指标',
  1084. link: '/zh-cn/docs/dev/user_doc/guide/metrics/metrics.html',
  1085. }
  1086. ],
  1087. },
  1088. {
  1089. title: '数据质量',
  1090. link: '/zh-cn/docs/dev/user_doc/guide/data-quality.html',
  1091. },
  1092. {
  1093. title: '远程日志存储',
  1094. link: '/zh-cn/docs/dev/user_doc/guide/remote-logging.html',
  1095. },
  1096. {
  1097. title: '升级',
  1098. children: [
  1099. {
  1100. title: '不向前兼容的更新',
  1101. link: '/zh-cn/docs/dev/user_doc/guide/upgrade/incompatible.html',
  1102. },
  1103. {
  1104. title: '升级步骤',
  1105. link: '/zh-cn/docs/dev/user_doc/guide/upgrade/upgrade.html',
  1106. },
  1107. ],
  1108. },
  1109. {
  1110. title: '扩/缩容',
  1111. link: '/zh-cn/docs/dev/user_doc/guide/expansion-reduction.html',
  1112. },
  1113. {
  1114. title: 'Demo',
  1115. link: '/zh-cn/docs/dev/user_doc/guide/demo.html',
  1116. },
  1117. ],
  1118. },
  1119. {
  1120. title: '部署指南',
  1121. children: [
  1122. {
  1123. title: '单机部署(Standalone)',
  1124. link: '/zh-cn/docs/dev/user_doc/guide/installation/standalone.html',
  1125. },
  1126. {
  1127. title: '伪集群部署(Pseudo-Cluster)',
  1128. link: '/zh-cn/docs/dev/user_doc/guide/installation/pseudo-cluster.html',
  1129. },
  1130. {
  1131. title: '集群部署(Cluster)',
  1132. link: '/zh-cn/docs/dev/user_doc/guide/installation/cluster.html',
  1133. },
  1134. {
  1135. title: 'Kubernetes部署(Kubernetes)',
  1136. link: '/zh-cn/docs/dev/user_doc/guide/installation/kubernetes.html',
  1137. },
  1138. {
  1139. title: '集成',
  1140. children: [
  1141. {
  1142. title: '基于Rainbond部署(Cluster)',
  1143. link: '/zh-cn/docs/dev/user_doc/guide/integration/rainbond.html',
  1144. },
  1145. ],
  1146. },
  1147. ],
  1148. },
  1149. {
  1150. title: '架构设计',
  1151. children: [
  1152. {
  1153. title: '元数据文档',
  1154. link: '/zh-cn/docs/dev/user_doc/architecture/metadata.html',
  1155. },
  1156. {
  1157. title: '架构设计',
  1158. link: '/zh-cn/docs/dev/user_doc/architecture/design.html',
  1159. },
  1160. {
  1161. title: '配置文件',
  1162. link: '/zh-cn/docs/dev/user_doc/architecture/configuration.html',
  1163. },
  1164. {
  1165. title: '任务结构',
  1166. link: '/zh-cn/docs/dev/user_doc/architecture/task-structure.html',
  1167. },
  1168. {
  1169. title: '负载均衡',
  1170. link: '/zh-cn/docs/dev/user_doc/architecture/load-balance.html',
  1171. },
  1172. {
  1173. title: '缓存',
  1174. link: '/zh-cn/docs/dev/user_doc/architecture/cache.html',
  1175. },
  1176. ],
  1177. },
  1178. {
  1179. title: 'API',
  1180. children: [
  1181. {
  1182. title: 'API调用',
  1183. link: '/zh-cn/docs/dev/user_doc/guide/open-api.html',
  1184. },
  1185. {
  1186. title: 'PyDolphinScheduler',
  1187. link: '/python/main/index.html',
  1188. },
  1189. {
  1190. title: '健康检查',
  1191. link: '/zh-cn/docs/dev/user_doc/guide/healthcheck.html',
  1192. },
  1193. ],
  1194. },
  1195. {
  1196. title: '贡献指南',
  1197. children: [
  1198. {
  1199. title: '如何参与',
  1200. children: [
  1201. {
  1202. title: '报告安全问题',
  1203. link: '/zh-cn/docs/dev/user_doc/contribute/join/security.html',
  1204. },
  1205. {
  1206. title: '如何成为 Committer',
  1207. link: '/zh-cn/docs/dev/user_doc/contribute/join/become-a-committer.html',
  1208. },
  1209. {
  1210. title: '订阅/取消订阅邮件列表',
  1211. link: '/zh-cn/docs/dev/user_doc/contribute/join/subscribe.html',
  1212. },
  1213. {
  1214. title: '参与贡献',
  1215. link: '/zh-cn/docs/dev/user_doc/contribute/join/contribute.html',
  1216. },
  1217. {
  1218. title: '行为准则',
  1219. link: '/zh-cn/docs/dev/user_doc/contribute/join/code-conduct.html',
  1220. },
  1221. {
  1222. title: 'Review Issue or Pull Requests',
  1223. link: '/zh-cn/docs/dev/user_doc/contribute/join/review.html',
  1224. },
  1225. {
  1226. title: 'E2E Contribution Guide',
  1227. link: '/zh-cn/docs/dev/user_doc/contribute/join/e2e-guide.html',
  1228. },
  1229. {
  1230. title: '提交代码',
  1231. link: '/zh-cn/docs/dev/user_doc/contribute/join/submit-code.html',
  1232. },
  1233. {
  1234. title: 'License须知',
  1235. link: '/zh-cn/docs/dev/user_doc/contribute/join/DS-License.html',
  1236. },
  1237. {
  1238. title: '文档须知',
  1239. link: '/zh-cn/docs/dev/user_doc/contribute/join/document.html',
  1240. },
  1241. {
  1242. title: 'Issue须知',
  1243. link: '/zh-cn/docs/dev/user_doc/contribute/join/issue.html',
  1244. },
  1245. {
  1246. title: 'Pull Request须知',
  1247. link: '/zh-cn/docs/dev/user_doc/contribute/join/pull-request.html',
  1248. },
  1249. {
  1250. title: 'Commit Message须知',
  1251. link: '/zh-cn/docs/dev/user_doc/contribute/join/commit-message.html',
  1252. },
  1253. {
  1254. title: '微基准测试须知',
  1255. link: '/zh-cn/docs/dev/user_doc/contribute/join/microbench.html',
  1256. },
  1257. {
  1258. title: '单元测试编写指南',
  1259. link: '/zh-cn/docs/dev/user_doc/contribute/join/unit-test.html',
  1260. },
  1261. ],
  1262. },
  1263. {
  1264. title: '环境搭建',
  1265. link: '/zh-cn/docs/dev/user_doc/contribute/development-environment-setup.html',
  1266. },
  1267. {
  1268. title: '设计文档',
  1269. children: [
  1270. // TODO not support multiply level for now
  1271. // {
  1272. // title: 'SPI',
  1273. // children: [
  1274. {
  1275. title: '架构设计',
  1276. link: '/zh-cn/docs/dev/user_doc/contribute/architecture-design.html',
  1277. },
  1278. {
  1279. title: 'Alert SPI',
  1280. link: '/zh-cn/docs/dev/user_doc/contribute/backend/spi/alert.html',
  1281. },
  1282. {
  1283. title: 'Registry SPI',
  1284. link: '/zh-cn/docs/dev/user_doc/contribute/backend/spi/registry.html',
  1285. },
  1286. {
  1287. title: 'Task SPI',
  1288. link: '/zh-cn/docs/dev/user_doc/contribute/backend/spi/task.html',
  1289. },
  1290. {
  1291. title: 'Datasource SPI',
  1292. link: '/zh-cn/docs/dev/user_doc/contribute/backend/spi/datasource.html',
  1293. },
  1294. {
  1295. title: '组件设计',
  1296. link: '/zh-cn/docs/dev/user_doc/contribute/backend/mechanism/overview.html',
  1297. },
  1298. ],
  1299. },
  1300. {
  1301. title: '规范',
  1302. children: [
  1303. {
  1304. title: '前端开发',
  1305. link: '/zh-cn/docs/dev/user_doc/contribute/frontend-development.html',
  1306. },
  1307. {
  1308. title: 'API规范',
  1309. link: '/zh-cn/docs/dev/user_doc/contribute/api-standard.html',
  1310. },
  1311. {
  1312. title: 'E2E 自动化测试',
  1313. link: '/zh-cn/docs/dev/user_doc/contribute/e2e-test.html',
  1314. },
  1315. {
  1316. title: 'API 自动化测试',
  1317. link: '/zh-cn/docs/dev/user_doc/contribute/api-test.html',
  1318. },
  1319. {
  1320. title: '日志规范',
  1321. link: '/zh-cn/docs/dev/user_doc/contribute/log-specification.html',
  1322. },
  1323. ],
  1324. },
  1325. {
  1326. title: '发版',
  1327. link: '/zh-cn/docs/dev/user_doc/contribute/release.html',
  1328. },
  1329. {
  1330. title: '问题与交流',
  1331. link: '/zh-cn/docs/dev/user_doc/contribute/have-questions.html',
  1332. },
  1333. ],
  1334. },
  1335. {
  1336. title: 'DSIP',
  1337. children: [
  1338. {
  1339. title: 'DSIP',
  1340. link: '/zh-cn/docs/dev/user_doc/DSIP.html',
  1341. },
  1342. ],
  1343. },
  1344. {
  1345. title: 'FAQ',
  1346. children: [
  1347. {
  1348. title: '通用设置',
  1349. link: '/zh-cn/docs/dev/user_doc/guide/howto/general-setting.html',
  1350. },
  1351. {
  1352. title: '数据源设置',
  1353. link: '/zh-cn/docs/dev/user_doc/guide/howto/datasource-setting.html',
  1354. },
  1355. {
  1356. title: '其他',
  1357. link: '/zh-cn/docs/release/faq.html',
  1358. },
  1359. ],
  1360. },
  1361. {
  1362. title: '历史版本',
  1363. children: [
  1364. {
  1365. title: '历史版本',
  1366. link: '/zh-cn/docs/release/history-versions.html',
  1367. },
  1368. ],
  1369. },
  1370. ],
  1371. barText: '文档',
  1372. },
  1373. };