routes.js 78 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655
  1. export default {
  2. routes: [
  3. {
  4. hidden: 0,
  5. rootId: 0,
  6. icon: 'mdi-home',
  7. type: 0,
  8. title: '工作台',
  9. path: '/home',
  10. children: [
  11. {
  12. hidden: 1,
  13. icon: '',
  14. type: 1,
  15. title: '工作台',
  16. path: '/home',
  17. children: [],
  18. enName: 'workbench',
  19. redirect: '',
  20. active: '',
  21. label: '工作台',
  22. sort: 0,
  23. component: 'home',
  24. meta: {
  25. keepAlive: false,
  26. allowClick: false,
  27. roles: [],
  28. enName: 'workbench',
  29. icon: '',
  30. editModules: true,
  31. title: '工作台',
  32. fullScreen: false,
  33. target: false,
  34. effectiveStatus: true
  35. },
  36. name: 'index',
  37. alwaysShow: 0
  38. },
  39. {
  40. hidden: 1,
  41. type: 1,
  42. title: '主页编辑',
  43. path: '/home/edit',
  44. children: [],
  45. enName: 'Edit Home Page',
  46. redirect: '',
  47. active: '',
  48. label: '主页编辑',
  49. sort: 0,
  50. component: 'home/edit',
  51. meta: {
  52. keepAlive: false,
  53. allowClick: false,
  54. roles: [],
  55. enName: 'Edit Home Page',
  56. icon: '',
  57. editModules: true,
  58. title: '主页编辑',
  59. fullScreen: true,
  60. target: false,
  61. effectiveStatus: true
  62. },
  63. name: 'homeEdit',
  64. alwaysShow: 0
  65. }
  66. ],
  67. enName: 'workbench',
  68. redirect: '',
  69. active: '',
  70. label: '工作台',
  71. sort: 0,
  72. component: 'Layout',
  73. meta: {
  74. allowClick: false,
  75. roles: [],
  76. enName: 'workbench',
  77. icon: 'mdi-home',
  78. title: '工作台',
  79. target: false,
  80. effectiveStatus: true
  81. },
  82. name: 'home',
  83. alwaysShow: 0
  84. },
  85. {
  86. meun: '',
  87. code: '',
  88. hidden: 0,
  89. rootId: 0,
  90. icon: 'mdi-database-search',
  91. remark: '',
  92. type: 0,
  93. title: '产品知识库',
  94. local: '',
  95. path: '/knowledge-base-product',
  96. urls: '',
  97. children: [
  98. {
  99. meun: '',
  100. code: '',
  101. hidden: 1,
  102. rootId: 1221,
  103. icon: 'mdi-file-chart-outline',
  104. remark: '',
  105. type: 1,
  106. title: '产品知识库列表',
  107. local: '',
  108. path: '/knowledge-base-product',
  109. urls: '',
  110. children: [],
  111. enName: 'product Knowledge Base',
  112. id: 1224,
  113. redirect: '',
  114. level: 2,
  115. openPath: '',
  116. active: '',
  117. label: '产品知识库列表',
  118. sort: 0,
  119. parentId: 1221,
  120. effectiveStatus: true,
  121. parentName: '',
  122. component: 'knowledgeBaseProduct/index',
  123. meta: {
  124. keepAlive: false,
  125. allowClick: false,
  126. roles: [],
  127. enName: 'product Knowledge Base',
  128. icon: 'mdi-file-chart-outline',
  129. editModules: false,
  130. title: '产品知识库列表',
  131. fullScreen: false,
  132. target: false,
  133. effectiveStatus: true
  134. },
  135. name: 'knowledgeBaseProductList',
  136. style: '',
  137. alwaysShow: 0,
  138. metastr: '{"keepAlive":false,"allowClick":false,"enName":"product Knowledge Base","editModules":false,"title":"产品知识库列表","fullScreen":false,"target":false}',
  139. open: null
  140. }
  141. ],
  142. enName: 'product Knowledge Base',
  143. id: 1221,
  144. redirect: '',
  145. level: 1,
  146. openPath: '',
  147. active: '',
  148. label: '产品知识库',
  149. sort: 18,
  150. parentId: 0,
  151. effectiveStatus: true,
  152. parentName: '',
  153. component: 'Layout',
  154. meta: {
  155. allowClick: false,
  156. roles: [],
  157. enName: 'product Knowledge Base',
  158. icon: 'mdi-database-search',
  159. title: '产品知识库',
  160. target: false,
  161. effectiveStatus: true
  162. },
  163. name: 'knowledgeBaseProduct',
  164. style: '',
  165. alwaysShow: 0,
  166. metastr: '{"allowClick":false,"enName":"product Knowledge Base","title":"产品知识库","target":false}',
  167. open: null
  168. },
  169. {
  170. hidden: 0,
  171. rootId: 0,
  172. icon: 'mdi-chart-box',
  173. type: 0,
  174. path: '/data-chart',
  175. children: [
  176. {
  177. hidden: 1,
  178. icon: '',
  179. type: 1,
  180. title: '数据图表',
  181. path: '/data-chart',
  182. children: [],
  183. enName: 'data Chart',
  184. redirect: '',
  185. active: '',
  186. label: '数据图表',
  187. sort: 0,
  188. component: 'dataChart',
  189. meta: {
  190. roles: [],
  191. enName: 'data Chart',
  192. icon: '',
  193. title: '数据图表',
  194. fullScreen: false
  195. },
  196. name: 'index',
  197. alwaysShow: 0
  198. }
  199. ],
  200. enName: 'data Chart',
  201. redirect: '',
  202. active: '',
  203. sort: 0,
  204. component: 'Layout',
  205. meta: {
  206. allowClick: false,
  207. roles: [],
  208. enName: 'workbench',
  209. icon: 'mdi-home',
  210. title: '数据图表',
  211. target: false,
  212. effectiveStatus: true
  213. },
  214. name: 'home',
  215. alwaysShow: 0
  216. },
  217. {
  218. meun: '',
  219. code: '',
  220. hidden: 0,
  221. rootId: 0,
  222. icon: 'mdi-database-clock',
  223. remark: '',
  224. type: 0,
  225. title: '数据资产',
  226. local: '',
  227. path: '/data-asset',
  228. urls: '',
  229. children: [
  230. {
  231. meun: '',
  232. code: '',
  233. hidden: 1,
  234. rootId: 1231,
  235. icon: '',
  236. remark: '',
  237. type: 1,
  238. title: '产品知识库列表',
  239. local: '',
  240. path: '/data-asset',
  241. urls: '',
  242. children: [],
  243. enName: 'Data Asset',
  244. id: 1232,
  245. redirect: '',
  246. level: 2,
  247. openPath: '',
  248. active: '',
  249. label: '产品知识库列表',
  250. sort: 0,
  251. parentId: 1231,
  252. effectiveStatus: true,
  253. parentName: '',
  254. component: 'dataAsset',
  255. meta: {
  256. keepAlive: false,
  257. allowClick: false,
  258. roles: [],
  259. enName: 'Data Asset',
  260. icon: '',
  261. editModules: false,
  262. title: '产品知识库列表',
  263. fullScreen: false,
  264. target: false,
  265. effectiveStatus: true
  266. },
  267. name: 'dataAssetList',
  268. style: '',
  269. alwaysShow: 0,
  270. metastr: '{"keepAlive":false,"allowClick":false,"enName":"Data Asset","editModules":false,"title":"产品知识库列表","fullScreen":false,"target":false}',
  271. open: null
  272. },
  273. {
  274. meun: '',
  275. code: '',
  276. hidden: 1,
  277. rootId: 1231,
  278. icon: '',
  279. remark: '',
  280. type: 1,
  281. title: '产品知识库详情',
  282. local: '',
  283. path: '/data-asset/details/:id/:name',
  284. urls: '',
  285. children: [],
  286. enName: 'Data Asset Details',
  287. id: 1233,
  288. redirect: '',
  289. level: 2,
  290. openPath: '',
  291. active: '',
  292. label: '产品知识库详情',
  293. sort: 0,
  294. parentId: 1231,
  295. effectiveStatus: true,
  296. parentName: '',
  297. component: 'dataAsset/details',
  298. meta: {
  299. keepAlive: false,
  300. allowClick: false,
  301. roles: [],
  302. enName: 'Data Asset Details',
  303. icon: '',
  304. editModules: false,
  305. title: '产品知识库详情',
  306. fullScreen: false,
  307. target: false,
  308. effectiveStatus: true
  309. },
  310. name: 'dataAssetDetails',
  311. style: '',
  312. alwaysShow: 0,
  313. metastr: '{"keepAlive":false,"allowClick":false,"enName":"Data Asset Details","editModules":false,"title":"产品知识库详情","fullScreen":false,"target":false}',
  314. open: null
  315. }
  316. ],
  317. enName: 'Data Asset',
  318. id: 1231,
  319. redirect: '',
  320. level: 1,
  321. openPath: '',
  322. active: '',
  323. label: '数据资产',
  324. sort: 30,
  325. parentId: 0,
  326. effectiveStatus: true,
  327. parentName: '',
  328. component: 'Layout',
  329. meta: {
  330. allowClick: true,
  331. roles: [],
  332. enName: 'Data Asset',
  333. icon: 'mdi-database-clock',
  334. title: '数据资产',
  335. target: false,
  336. effectiveStatus: true
  337. },
  338. name: 'dataAsset',
  339. style: '',
  340. alwaysShow: 0,
  341. metastr: '{"allowClick":true,"enName":"Data Asset","title":"数据资产","target":false}',
  342. open: null
  343. },
  344. {
  345. meun: '',
  346. code: '',
  347. hidden: 0,
  348. rootId: 0,
  349. icon: 'mdi-clipboard-text-outline',
  350. remark: '',
  351. type: 0,
  352. title: '数据研发',
  353. local: '',
  354. path: '/data-governance',
  355. urls: '',
  356. children: [
  357. {
  358. meun: '',
  359. code: '',
  360. hidden: 0,
  361. rootId: 1187,
  362. icon: 'mdi-book-open-outline',
  363. remark: '',
  364. type: 1,
  365. title: '元数据',
  366. local: '',
  367. path: '/data-governance/metadata',
  368. urls: '',
  369. children: [],
  370. enName: 'Metadata',
  371. id: 1188,
  372. redirect: '',
  373. level: 2,
  374. openPath: '',
  375. active: '',
  376. label: '元数据',
  377. sort: 0,
  378. parentId: 1187,
  379. effectiveStatus: true,
  380. parentName: 'data-governance',
  381. component: 'dataGovernance/metadata',
  382. meta: {
  383. keepAlive: false,
  384. allowClick: true,
  385. roles: [],
  386. enName: 'Metadata',
  387. icon: 'mdi-book-open-outline',
  388. editModules: false,
  389. title: '元数据',
  390. fullScreen: false,
  391. target: false,
  392. effectiveStatus: true
  393. },
  394. name: 'metadata',
  395. style: '',
  396. alwaysShow: 0,
  397. metastr: '{"keepAlive":false,"allowClick":true,"enName":"Metadata","editModules":false,"title":"元数据","fullScreen":false,"target":false}',
  398. open: null
  399. },
  400. {
  401. meun: '',
  402. code: '',
  403. hidden: 0,
  404. rootId: 1187,
  405. icon: 'mdi-book-open-outline',
  406. remark: '',
  407. type: 1,
  408. title: '业务域',
  409. local: '',
  410. path: '/data-governance/business-domain',
  411. urls: '',
  412. children: [],
  413. enName: 'Business Domain',
  414. id: 1188,
  415. redirect: '',
  416. level: 2,
  417. openPath: '',
  418. active: '',
  419. label: '业务域',
  420. sort: 0,
  421. parentId: 1187,
  422. effectiveStatus: true,
  423. parentName: 'data-governance',
  424. component: 'dataGovernance/businessDomain',
  425. meta: {
  426. keepAlive: false,
  427. allowClick: true,
  428. roles: [],
  429. enName: 'Business Domain',
  430. icon: 'mdi-book-open-outline',
  431. editModules: false,
  432. title: '业务域',
  433. fullScreen: false,
  434. target: false,
  435. effectiveStatus: true
  436. },
  437. name: 'business-domain',
  438. style: '',
  439. alwaysShow: 0,
  440. metastr: '{"keepAlive":false,"allowClick":true,"enName":"Business Domain","editModules":false,"title":"业务域","fullScreen":false,"target":false}',
  441. open: null
  442. },
  443. // {
  444. // meun: '',
  445. // code: '',
  446. // hidden: 0,
  447. // rootId: 1187,
  448. // icon: 'mdi-book-open-outline',
  449. // remark: '',
  450. // type: 1,
  451. // title: '数据资源',
  452. // local: '',
  453. // path: '/data-governance/data-resource',
  454. // urls: '',
  455. // children: [],
  456. // enName: 'Data Resource',
  457. // id: 1189,
  458. // redirect: '',
  459. // level: 2,
  460. // openPath: '',
  461. // active: '',
  462. // label: '数据资源',
  463. // sort: 1,
  464. // parentId: 1187,
  465. // effectiveStatus: true,
  466. // parentName: 'data-governance',
  467. // component: 'dataGovernance/dataResource',
  468. // meta: {
  469. // keepAlive: false,
  470. // allowClick: false,
  471. // roles: [],
  472. // enName: 'Data Resource',
  473. // icon: 'mdi-book-open-outline',
  474. // editModules: false,
  475. // title: '数据资源',
  476. // fullScreen: false,
  477. // target: false,
  478. // effectiveStatus: true
  479. // },
  480. // name: 'data-resource',
  481. // style: '',
  482. // alwaysShow: 0,
  483. // metastr: '{"keepAlive":false,"allowClick":false,"enName":"Data Resource","editModules":false,"title":"数据资源","fullScreen":false,"target":false}',
  484. // open: null
  485. // },
  486. // {
  487. // meun: '',
  488. // code: '',
  489. // hidden: 0,
  490. // rootId: 1187,
  491. // icon: '',
  492. // remark: '',
  493. // type: 1,
  494. // title: '数据模型',
  495. // local: '',
  496. // path: '/data-governance/data-modules',
  497. // urls: '',
  498. // children: [],
  499. // enName: 'Data Field',
  500. // id: 1193,
  501. // redirect: '',
  502. // level: 2,
  503. // openPath: '',
  504. // active: '',
  505. // label: '数据模型',
  506. // sort: 4,
  507. // parentId: 1187,
  508. // effectiveStatus: true,
  509. // parentName: 'data-governance',
  510. // component: 'dataGovernance/dataModules',
  511. // meta: {
  512. // keepAlive: false,
  513. // allowClick: true,
  514. // roles: [],
  515. // enName: 'Data Field',
  516. // icon: '',
  517. // editModules: false,
  518. // title: '数据模型',
  519. // fullScreen: false,
  520. // target: false,
  521. // effectiveStatus: true
  522. // },
  523. // name: 'data-modules',
  524. // style: '',
  525. // alwaysShow: 0,
  526. // metastr: '{"keepAlive":false,"allowClick":true,"enName":"Data Field","editModules":false,"title":"数据模型","fullScreen":false,"target":false}',
  527. // open: null
  528. // },
  529. // {
  530. // meun: '',
  531. // code: '',
  532. // hidden: 0,
  533. // rootId: 1187,
  534. // icon: '',
  535. // remark: '',
  536. // type: 1,
  537. // title: '数据指标',
  538. // local: '',
  539. // path: '/data-governance/data-indicator',
  540. // urls: '',
  541. // children: [],
  542. // enName: 'Data Indicator',
  543. // id: 1190,
  544. // redirect: '',
  545. // level: 2,
  546. // openPath: '',
  547. // active: '',
  548. // label: '数据指标',
  549. // sort: 5,
  550. // parentId: 1187,
  551. // effectiveStatus: true,
  552. // parentName: 'data-governance',
  553. // component: 'dataGovernance/dataIndicator',
  554. // meta: {
  555. // keepAlive: false,
  556. // allowClick: false,
  557. // roles: [],
  558. // enName: 'Data Indicator',
  559. // icon: '',
  560. // editModules: false,
  561. // title: '数据指标',
  562. // fullScreen: false,
  563. // target: false,
  564. // effectiveStatus: true
  565. // },
  566. // name: 'data-indicator',
  567. // style: '',
  568. // alwaysShow: 0,
  569. // metastr: '{"keepAlive":false,"allowClick":false,"enName":"Data Indicator","editModules":false,"title":"数据指标","fullScreen":false,"target":false}',
  570. // open: null
  571. // },
  572. {
  573. meun: '',
  574. code: '',
  575. hidden: 0,
  576. rootId: 1187,
  577. icon: '',
  578. remark: '',
  579. type: 1,
  580. title: '数据标准',
  581. local: '',
  582. path: '/data-governance/data-standard',
  583. urls: '',
  584. children: [],
  585. enName: 'Data Standard',
  586. id: 1191,
  587. redirect: '',
  588. level: 2,
  589. openPath: '',
  590. active: '',
  591. label: '数据标准',
  592. sort: 10,
  593. parentId: 1187,
  594. effectiveStatus: true,
  595. parentName: 'data-governance',
  596. component: 'dataGovernance/dataStandard',
  597. meta: {
  598. keepAlive: false,
  599. allowClick: false,
  600. roles: [],
  601. enName: 'Data Standard',
  602. icon: '',
  603. editModules: false,
  604. title: '数据标准',
  605. fullScreen: false,
  606. target: false,
  607. effectiveStatus: true
  608. },
  609. name: 'data-standard',
  610. style: '',
  611. alwaysShow: 0,
  612. metastr: '{"keepAlive":false,"allowClick":false,"enName":"Data Standard","editModules":false,"title":"数据标准","fullScreen":false,"target":false}',
  613. open: null
  614. },
  615. {
  616. meun: '',
  617. code: '',
  618. hidden: 0,
  619. rootId: 2000,
  620. icon: '',
  621. remark: '',
  622. type: 1,
  623. title: '数据流程',
  624. local: '',
  625. path: '/data-governance/data-process',
  626. urls: '',
  627. children: [],
  628. enName: 'Data Process',
  629. id: 1191,
  630. redirect: '',
  631. level: 2,
  632. openPath: '',
  633. active: '',
  634. label: '数据流程',
  635. sort: 10,
  636. parentId: 1187,
  637. effectiveStatus: true,
  638. parentName: 'data-governance',
  639. component: 'dataGovernance/dataProcess',
  640. meta: {
  641. keepAlive: false,
  642. allowClick: false,
  643. roles: [],
  644. enName: 'Data Process',
  645. icon: '',
  646. editModules: false,
  647. title: '数据流程',
  648. fullScreen: false,
  649. target: false,
  650. effectiveStatus: true
  651. },
  652. name: 'data-process',
  653. style: '',
  654. alwaysShow: 0,
  655. metastr: '{"keepAlive":false,"allowClick":false,"enName":"Data Process","editModules":false,"title":"数据流程","fullScreen":false,"target":false}',
  656. open: null
  657. },
  658. {
  659. meun: '',
  660. code: '',
  661. hidden: 0,
  662. rootId: 1187,
  663. icon: '',
  664. remark: '',
  665. type: 1,
  666. title: '数据安全',
  667. local: '',
  668. path: '/data-governance/data-security',
  669. urls: '',
  670. children: [],
  671. enName: 'Data Security',
  672. id: 1217,
  673. redirect: '',
  674. level: 0,
  675. openPath: '',
  676. active: '',
  677. label: '数据安全',
  678. sort: 15,
  679. parentId: 1187,
  680. effectiveStatus: true,
  681. parentName: '',
  682. component: 'dataGovernance/dataSecurity',
  683. meta: {
  684. keepAlive: false,
  685. allowClick: false,
  686. roles: [],
  687. enName: 'Data Security',
  688. icon: '',
  689. editModules: false,
  690. title: '数据安全',
  691. fullScreen: false,
  692. target: false,
  693. effectiveStatus: true
  694. },
  695. name: 'data-security',
  696. style: '',
  697. alwaysShow: 0,
  698. metastr: '{"keepAlive":false,"allowClick":false,"enName":"Data Security","editModules":false,"title":"数据安全","fullScreen":false,"target":false}',
  699. open: null
  700. },
  701. {
  702. meun: '',
  703. code: '',
  704. hidden: 0,
  705. rootId: 1187,
  706. icon: '',
  707. remark: '',
  708. type: 1,
  709. title: '数据标签',
  710. local: '',
  711. path: '/data-governance/data-Label',
  712. urls: '',
  713. children: [],
  714. enName: 'Data Label',
  715. id: 1217,
  716. redirect: '',
  717. level: 0,
  718. openPath: '',
  719. active: '',
  720. label: '数据标签',
  721. sort: 15,
  722. parentId: 1187,
  723. effectiveStatus: true,
  724. parentName: '',
  725. component: 'dataGovernance/dataLabel',
  726. meta: {
  727. keepAlive: false,
  728. allowClick: false,
  729. roles: [],
  730. enName: 'Data Label',
  731. icon: '',
  732. editModules: false,
  733. title: '数据标签',
  734. fullScreen: false,
  735. target: false,
  736. effectiveStatus: true
  737. },
  738. name: 'data-label',
  739. style: '',
  740. alwaysShow: 0,
  741. metastr: '{"keepAlive":false,"allowClick":false,"enName":"Data Label","editModules":false,"title":"数据标签","fullScreen":false,"target":false}',
  742. open: null
  743. },
  744. {
  745. meun: '',
  746. code: '',
  747. hidden: 0,
  748. rootId: 1187,
  749. icon: '',
  750. remark: '',
  751. type: 1,
  752. title: '数据来源',
  753. local: '',
  754. path: '/data-governance/data-source',
  755. urls: '',
  756. children: [],
  757. enName: 'Data Source',
  758. id: 1191,
  759. redirect: '',
  760. level: 0,
  761. openPath: '',
  762. active: '',
  763. label: '数据来源',
  764. sort: 15,
  765. parentId: 1187,
  766. effectiveStatus: true,
  767. parentName: '',
  768. component: 'dataGovernance/dataSource',
  769. meta: {
  770. keepAlive: false,
  771. allowClick: false,
  772. roles: [],
  773. enName: 'Data Source',
  774. icon: '',
  775. editModules: false,
  776. title: '数据来源',
  777. fullScreen: false,
  778. target: false,
  779. effectiveStatus: true
  780. },
  781. name: 'data-source',
  782. style: '',
  783. alwaysShow: 0,
  784. metastr: '{"keepAlive":false,"allowClick":false,"enName":"Data Source","editModules":false,"title":"数据来源","fullScreen":false,"target":false}',
  785. open: null
  786. }
  787. ],
  788. enName: 'Data Governance',
  789. id: 1187,
  790. redirect: '',
  791. level: 1,
  792. openPath: '',
  793. active: '',
  794. label: '数据研发',
  795. sort: 44,
  796. parentId: 0,
  797. effectiveStatus: true,
  798. parentName: '',
  799. component: 'Layout',
  800. meta: {
  801. allowClick: false,
  802. roles: [],
  803. enName: 'Data Governance',
  804. icon: 'mdi-clipboard-text-outline',
  805. title: '数据研发',
  806. target: false,
  807. effectiveStatus: true
  808. },
  809. name: 'data-governance',
  810. style: '',
  811. alwaysShow: 0,
  812. metastr: '{"allowClick":false,"enName":"Data Governance","title":"数据研发","target":false}',
  813. open: null
  814. },
  815. {
  816. meun: '',
  817. code: '',
  818. hidden: 0,
  819. rootId: 0,
  820. icon: 'mdi-book-open-outline',
  821. remark: '',
  822. type: 0,
  823. title: '数据地图',
  824. local: '',
  825. path: '/data-book',
  826. urls: '',
  827. children: [
  828. {
  829. meun: '',
  830. code: '',
  831. hidden: 0,
  832. rootId: 1225,
  833. icon: '',
  834. remark: '',
  835. type: 0,
  836. title: '元数据',
  837. local: '',
  838. path: '/data-book/data-metadata',
  839. urls: '',
  840. children: [
  841. {
  842. meun: '',
  843. code: '',
  844. hidden: 1,
  845. rootId: 1225,
  846. icon: '',
  847. remark: '',
  848. type: 1,
  849. title: '元数据',
  850. local: '',
  851. path: '/data-book/data-metadata',
  852. urls: '',
  853. children: [],
  854. enName: 'metaData',
  855. id: 1214,
  856. redirect: '',
  857. level: 0,
  858. openPath: '',
  859. active: '',
  860. label: '元数据',
  861. sort: 0,
  862. parentId: 1213,
  863. effectiveStatus: true,
  864. parentName: '',
  865. component: 'dataBook/dataMetaData',
  866. meta: {
  867. keepAlive: false,
  868. allowClick: true,
  869. roles: [],
  870. enName: 'metaData',
  871. icon: '',
  872. editModules: false,
  873. title: '元数据',
  874. fullScreen: false,
  875. target: false,
  876. effectiveStatus: true
  877. },
  878. name: 'data-metadata-list',
  879. style: '',
  880. alwaysShow: 0,
  881. metastr: '{"keepAlive":false,"allowClick":true,"enName":"metaData","editModules":false,"title":"元数据","fullScreen":false,"target":false}',
  882. open: null
  883. },
  884. {
  885. meun: '',
  886. code: '',
  887. hidden: 1,
  888. rootId: 1225,
  889. icon: '',
  890. remark: '',
  891. type: 1,
  892. title: '元数据详情',
  893. local: '',
  894. path: '/data-book/data-metadata/details/:id/:name',
  895. urls: '',
  896. children: [],
  897. enName: 'metaData details',
  898. id: 1215,
  899. redirect: '',
  900. level: 0,
  901. openPath: '',
  902. active: '',
  903. label: '元数据详情',
  904. sort: 0,
  905. parentId: 1213,
  906. effectiveStatus: true,
  907. parentName: '',
  908. component: 'dataBook/dataMetaData/details',
  909. meta: {
  910. keepAlive: false,
  911. allowClick: false,
  912. roles: [],
  913. enName: 'metaData details',
  914. icon: '',
  915. editModules: false,
  916. title: '元数据详情',
  917. fullScreen: false,
  918. target: false,
  919. effectiveStatus: true
  920. },
  921. name: 'data-metadata-details',
  922. style: '',
  923. alwaysShow: 0,
  924. metastr: '{"keepAlive":false,"allowClick":false,"enName":"metaData details","editModules":false,"title":"元数据详情","fullScreen":false,"target":false}',
  925. open: null
  926. }
  927. ],
  928. enName: 'metadata',
  929. id: 1213,
  930. redirect: '',
  931. level: 0,
  932. openPath: '',
  933. active: '',
  934. label: '元数据',
  935. sort: 1,
  936. parentId: 1225,
  937. effectiveStatus: true,
  938. parentName: '',
  939. component: '',
  940. meta: {
  941. allowClick: true,
  942. roles: [],
  943. enName: 'metadata',
  944. icon: '',
  945. title: '元数据',
  946. target: false,
  947. effectiveStatus: true
  948. },
  949. name: 'data-metadata',
  950. style: '',
  951. alwaysShow: 0,
  952. metastr: '{"allowClick":true,"enName":"metadata","title":"元数据","target":false}',
  953. open: null
  954. },
  955. {
  956. meun: '',
  957. code: '',
  958. hidden: 0,
  959. rootId: 1225,
  960. icon: '',
  961. remark: '',
  962. type: 0,
  963. title: '业务域',
  964. local: '',
  965. path: '/data-book/business-domain',
  966. urls: '',
  967. children: [
  968. {
  969. meun: '',
  970. code: '',
  971. hidden: 1,
  972. rootId: 1225,
  973. icon: '',
  974. remark: '',
  975. type: 1,
  976. title: '业务域',
  977. local: '',
  978. path: '/data-book/business-domain',
  979. urls: '',
  980. children: [],
  981. enName: 'Business Domain',
  982. id: 1286,
  983. redirect: '',
  984. level: 3,
  985. openPath: '',
  986. active: '',
  987. label: '业务域',
  988. sort: 0,
  989. parentId: 1285,
  990. effectiveStatus: true,
  991. parentName: '',
  992. component: 'dataBook/businessDomain',
  993. meta: {
  994. keepAlive: false,
  995. allowClick: true,
  996. roles: [],
  997. enName: 'Business Domain',
  998. icon: '',
  999. editModules: false,
  1000. title: '业务域',
  1001. fullScreen: false,
  1002. target: false,
  1003. effectiveStatus: true
  1004. },
  1005. name: 'data-book-business-domain-index',
  1006. style: '',
  1007. alwaysShow: 0,
  1008. metastr: '{"keepAlive":false,"allowClick":true,"enName":"Business Domain","editModules":false,"title":"业务域","fullScreen":false,"target":false}',
  1009. open: null
  1010. },
  1011. {
  1012. meun: '',
  1013. code: '',
  1014. hidden: 1,
  1015. rootId: 1225,
  1016. icon: '',
  1017. remark: '',
  1018. type: 1,
  1019. title: '业务域详情',
  1020. local: '',
  1021. path: '/data-book/business-domain/details/:id/:name',
  1022. urls: '',
  1023. children: [],
  1024. enName: 'Business Domain',
  1025. id: 1287,
  1026. redirect: '',
  1027. level: 3,
  1028. openPath: '',
  1029. active: '',
  1030. label: '业务域详情',
  1031. sort: 10,
  1032. parentId: 1285,
  1033. effectiveStatus: true,
  1034. parentName: '',
  1035. component: 'dataBook/businessDomain/details',
  1036. meta: {
  1037. keepAlive: false,
  1038. allowClick: true,
  1039. roles: [],
  1040. enName: 'Business Domain',
  1041. icon: '',
  1042. editModules: false,
  1043. title: '业务域详情',
  1044. fullScreen: false,
  1045. target: false,
  1046. effectiveStatus: true
  1047. },
  1048. name: 'data-book-business-domain-details',
  1049. style: '',
  1050. alwaysShow: 0,
  1051. metastr: '{"keepAlive":false,"allowClick":true,"enName":"Business Domain","editModules":false,"title":"业务域详情","fullScreen":false,"target":false}',
  1052. open: null
  1053. }
  1054. ],
  1055. enName: 'Business Domain',
  1056. id: 1285,
  1057. redirect: '',
  1058. level: 2,
  1059. openPath: '',
  1060. active: '',
  1061. label: '业务域',
  1062. sort: 60,
  1063. parentId: 1225,
  1064. effectiveStatus: true,
  1065. parentName: '',
  1066. component: '',
  1067. meta: {
  1068. allowClick: true,
  1069. roles: [],
  1070. enName: 'Business Domain',
  1071. icon: '',
  1072. title: '业务域',
  1073. target: false,
  1074. effectiveStatus: true
  1075. },
  1076. name: 'data-book-business-domain',
  1077. style: '',
  1078. alwaysShow: 0,
  1079. metastr: '{"allowClick":true,"enName":"Business Domain","title":"业务域","target":false}',
  1080. open: null
  1081. },
  1082. // {
  1083. // meun: '',
  1084. // code: '',
  1085. // hidden: 0,
  1086. // rootId: 1225,
  1087. // icon: '',
  1088. // remark: '',
  1089. // type: 0,
  1090. // title: '数据资源',
  1091. // local: '',
  1092. // path: '/data-book/data-resource',
  1093. // urls: '',
  1094. // children: [
  1095. // {
  1096. // meun: '',
  1097. // code: '',
  1098. // hidden: 1,
  1099. // rootId: 1225,
  1100. // icon: '',
  1101. // remark: '',
  1102. // type: 1,
  1103. // title: '数据资源详情',
  1104. // local: '',
  1105. // path: '/data-book/data-resource/details/:id/:name',
  1106. // urls: '',
  1107. // children: [],
  1108. // enName: 'data Modules Details',
  1109. // id: 1204,
  1110. // redirect: '',
  1111. // level: 3,
  1112. // openPath: '',
  1113. // active: '',
  1114. // label: '数据资源详情',
  1115. // sort: 0,
  1116. // parentId: 1207,
  1117. // effectiveStatus: true,
  1118. // parentName: '',
  1119. // component: 'dataBook/dataResource/details',
  1120. // meta: {
  1121. // keepAlive: false,
  1122. // allowClick: false,
  1123. // roles: [],
  1124. // enName: 'data Modules Details',
  1125. // icon: '',
  1126. // editModules: false,
  1127. // title: '数据资源详情',
  1128. // fullScreen: false,
  1129. // target: false,
  1130. // effectiveStatus: true
  1131. // },
  1132. // name: 'data-book-data-resource-details',
  1133. // style: '',
  1134. // alwaysShow: 0,
  1135. // metastr: '{"keepAlive":false,"allowClick":false,"enName":"data Modules Details","editModules":false,"title":"数据资源详情","fullScreen":false,"target":false}',
  1136. // open: null
  1137. // },
  1138. // {
  1139. // meun: '',
  1140. // code: '',
  1141. // hidden: 1,
  1142. // rootId: 662,
  1143. // icon: '',
  1144. // remark: '',
  1145. // type: 1,
  1146. // title: '数据资源',
  1147. // local: '',
  1148. // path: '/data-book/data-resource',
  1149. // urls: '',
  1150. // children: [],
  1151. // enName: 'data Resource',
  1152. // id: 1208,
  1153. // redirect: '',
  1154. // level: 0,
  1155. // openPath: '',
  1156. // active: '',
  1157. // label: '数据资源',
  1158. // sort: 8,
  1159. // parentId: 1207,
  1160. // effectiveStatus: true,
  1161. // parentName: '',
  1162. // component: 'dataBook/dataResource',
  1163. // meta: {
  1164. // keepAlive: false,
  1165. // allowClick: true,
  1166. // roles: [],
  1167. // enName: 'data Resource',
  1168. // icon: '',
  1169. // editModules: false,
  1170. // title: '数据资源',
  1171. // fullScreen: false,
  1172. // target: false,
  1173. // effectiveStatus: true
  1174. // },
  1175. // name: 'dataBookDataResourceIndex',
  1176. // style: '',
  1177. // alwaysShow: 0,
  1178. // metastr: '{"keepAlive":false,"allowClick":true,"enName":"data Resource","editModules":false,"title":"数据资源","fullScreen":false,"target":false}',
  1179. // open: null
  1180. // }
  1181. // ],
  1182. // enName: 'data Resource',
  1183. // id: 1207,
  1184. // redirect: '',
  1185. // level: 2,
  1186. // openPath: '',
  1187. // active: '',
  1188. // label: '数据资源',
  1189. // sort: 4,
  1190. // parentId: 1225,
  1191. // effectiveStatus: true,
  1192. // parentName: '',
  1193. // component: '',
  1194. // meta: {
  1195. // allowClick: true,
  1196. // roles: [],
  1197. // enName: 'data Resource',
  1198. // icon: '',
  1199. // title: '数据资源',
  1200. // target: false,
  1201. // effectiveStatus: true
  1202. // },
  1203. // name: 'data-book-resource',
  1204. // style: '',
  1205. // alwaysShow: 0,
  1206. // metastr: '{"allowClick":true,"enName":"data Resource","title":"数据资源","target":false}',
  1207. // open: null
  1208. // },
  1209. // {
  1210. // meun: '',
  1211. // code: '',
  1212. // hidden: 0,
  1213. // rootId: 1225,
  1214. // icon: '',
  1215. // remark: '',
  1216. // type: 0,
  1217. // title: '数据模型',
  1218. // local: '',
  1219. // path: '/data-book/data-model',
  1220. // urls: '',
  1221. // children: [
  1222. // {
  1223. // meun: '',
  1224. // code: '',
  1225. // hidden: 1,
  1226. // rootId: 1225,
  1227. // icon: '',
  1228. // remark: '',
  1229. // type: 1,
  1230. // title: '数据模型详情',
  1231. // local: '',
  1232. // path: '/data-book/data-model/details/:id/:name',
  1233. // urls: '',
  1234. // children: [],
  1235. // enName: 'data Modules Details',
  1236. // id: 1212,
  1237. // redirect: '',
  1238. // level: 3,
  1239. // openPath: '',
  1240. // active: '',
  1241. // label: '数据模型详情',
  1242. // sort: 0,
  1243. // parentId: 1210,
  1244. // effectiveStatus: true,
  1245. // parentName: '',
  1246. // component: 'dataBook/dataModel/details',
  1247. // meta: {
  1248. // keepAlive: false,
  1249. // allowClick: false,
  1250. // roles: [],
  1251. // enName: 'data Modules Details',
  1252. // icon: '',
  1253. // editModules: false,
  1254. // title: '数据模型详情',
  1255. // fullScreen: false,
  1256. // target: false,
  1257. // effectiveStatus: true
  1258. // },
  1259. // name: 'data-book-data-model-details',
  1260. // style: '',
  1261. // alwaysShow: 0,
  1262. // metastr: '{"keepAlive":false,"allowClick":false,"enName":"data Modules Details","editModules":false,"title":"数据模型详情","fullScreen":false,"target":false}',
  1263. // open: null
  1264. // },
  1265. // {
  1266. // meun: '',
  1267. // code: '',
  1268. // hidden: 1,
  1269. // rootId: 1225,
  1270. // icon: '',
  1271. // remark: '',
  1272. // type: 1,
  1273. // title: '数据模型',
  1274. // local: '',
  1275. // path: '/data-book/data-model',
  1276. // urls: '',
  1277. // children: [],
  1278. // enName: 'data Model',
  1279. // id: 1211,
  1280. // redirect: '',
  1281. // level: 3,
  1282. // openPath: '',
  1283. // active: '',
  1284. // label: '数据模型',
  1285. // sort: 20,
  1286. // parentId: 1210,
  1287. // effectiveStatus: true,
  1288. // parentName: '',
  1289. // component: 'dataBook/dataModel',
  1290. // meta: {
  1291. // keepAlive: false,
  1292. // allowClick: true,
  1293. // roles: [],
  1294. // enName: 'data Model',
  1295. // icon: '',
  1296. // editModules: false,
  1297. // title: '数据模型',
  1298. // fullScreen: false,
  1299. // target: false,
  1300. // effectiveStatus: true
  1301. // },
  1302. // name: 'data-book-data-model-index',
  1303. // style: '',
  1304. // alwaysShow: 0,
  1305. // metastr: '{"keepAlive":false,"allowClick":true,"enName":"data Model","editModules":false,"title":"数据模型","fullScreen":false,"target":false}',
  1306. // open: null
  1307. // }
  1308. // ],
  1309. // enName: 'data Model',
  1310. // id: 1210,
  1311. // redirect: '',
  1312. // level: 2,
  1313. // openPath: '',
  1314. // active: '',
  1315. // label: '数据模型',
  1316. // sort: 11,
  1317. // parentId: 1225,
  1318. // effectiveStatus: true,
  1319. // parentName: '',
  1320. // component: '',
  1321. // meta: {
  1322. // allowClick: true,
  1323. // roles: [],
  1324. // enName: 'data Model',
  1325. // icon: '',
  1326. // title: '数据模型',
  1327. // target: false,
  1328. // effectiveStatus: true
  1329. // },
  1330. // name: 'data-book-data-model',
  1331. // style: '',
  1332. // alwaysShow: 0,
  1333. // metastr: '{"allowClick":true,"enName":"data Model","title":"数据模型","target":false}',
  1334. // open: null
  1335. // },
  1336. // {
  1337. // meun: '',
  1338. // code: '',
  1339. // hidden: 0,
  1340. // rootId: 1225,
  1341. // icon: '',
  1342. // remark: '',
  1343. // type: 0,
  1344. // title: '数据指标',
  1345. // local: '',
  1346. // path: '/data-book/data-indicator',
  1347. // urls: '',
  1348. // children: [
  1349. // {
  1350. // meun: '',
  1351. // code: '',
  1352. // hidden: 1,
  1353. // rootId: 1225,
  1354. // icon: '',
  1355. // remark: '',
  1356. // type: 1,
  1357. // title: '数据指标',
  1358. // local: '',
  1359. // path: '/data-book/data-indicator',
  1360. // urls: '',
  1361. // children: [],
  1362. // enName: 'data Indicator',
  1363. // id: 1267,
  1364. // redirect: '',
  1365. // level: 3,
  1366. // openPath: '',
  1367. // active: '',
  1368. // label: '数据指标',
  1369. // sort: 1,
  1370. // parentId: 1182,
  1371. // effectiveStatus: true,
  1372. // parentName: '',
  1373. // component: 'dataBook/indicator',
  1374. // meta: {
  1375. // keepAlive: false,
  1376. // allowClick: true,
  1377. // roles: [],
  1378. // enName: 'data Indicator',
  1379. // icon: '',
  1380. // editModules: false,
  1381. // title: '数据指标',
  1382. // fullScreen: false,
  1383. // target: false,
  1384. // effectiveStatus: true
  1385. // },
  1386. // name: 'data-book-indicator-index',
  1387. // style: '',
  1388. // alwaysShow: 0,
  1389. // metastr: '{"keepAlive":false,"allowClick":true,"enName":"data Indicator","editModules":false,"title":"数据指标","fullScreen":false,"target":false}',
  1390. // open: null
  1391. // },
  1392. // {
  1393. // meun: '',
  1394. // code: '',
  1395. // hidden: 1,
  1396. // rootId: 1225,
  1397. // icon: '',
  1398. // remark: '',
  1399. // type: 1,
  1400. // title: '数据指标详情',
  1401. // local: '',
  1402. // path: '/data-book/data-indicator/details/:id/:name',
  1403. // urls: '',
  1404. // children: [],
  1405. // enName: 'data Indicator',
  1406. // id: 1268,
  1407. // redirect: '',
  1408. // level: 3,
  1409. // openPath: '',
  1410. // active: '',
  1411. // label: '数据指标详情',
  1412. // sort: 1,
  1413. // parentId: 1182,
  1414. // effectiveStatus: true,
  1415. // parentName: '',
  1416. // component: 'dataBook/indicator/details',
  1417. // meta: {
  1418. // keepAlive: false,
  1419. // allowClick: true,
  1420. // roles: [],
  1421. // enName: 'data Indicator',
  1422. // icon: '',
  1423. // editModules: false,
  1424. // title: '数据指标详情',
  1425. // fullScreen: false,
  1426. // target: false,
  1427. // effectiveStatus: true
  1428. // },
  1429. // name: 'data-book-indicator-details',
  1430. // style: '',
  1431. // alwaysShow: 0,
  1432. // metastr: '{"keepAlive":false,"allowClick":true,"enName":"data Indicator","editModules":false,"title":"数据指标详情","fullScreen":false,"target":false}',
  1433. // open: null
  1434. // }
  1435. // ],
  1436. // enName: 'data Indicator',
  1437. // id: 1182,
  1438. // redirect: '',
  1439. // level: 2,
  1440. // openPath: '',
  1441. // active: '',
  1442. // label: '数据指标',
  1443. // sort: 30,
  1444. // parentId: 1225,
  1445. // effectiveStatus: true,
  1446. // parentName: 'dataBook',
  1447. // component: '',
  1448. // meta: {
  1449. // allowClick: true,
  1450. // roles: [],
  1451. // enName: 'data Indicator',
  1452. // icon: '',
  1453. // title: '数据指标',
  1454. // target: false,
  1455. // effectiveStatus: true
  1456. // },
  1457. // name: 'data-book-indicator',
  1458. // style: '',
  1459. // alwaysShow: 0,
  1460. // metastr: '{"allowClick":true,"enName":"data Indicator","title":"数据指标","target":false}',
  1461. // open: null
  1462. // },
  1463. {
  1464. meun: '',
  1465. code: '',
  1466. hidden: 0,
  1467. rootId: 1225,
  1468. icon: '',
  1469. remark: '',
  1470. type: 0,
  1471. title: '数据标准',
  1472. local: '',
  1473. path: '/data-book/data-standard',
  1474. urls: '',
  1475. children: [
  1476. {
  1477. meun: '',
  1478. code: '',
  1479. hidden: 1,
  1480. rootId: 1225,
  1481. icon: '',
  1482. remark: '',
  1483. type: 1,
  1484. title: '数据标准',
  1485. local: '',
  1486. path: '/data-book/data-standard',
  1487. urls: '',
  1488. children: [],
  1489. enName: 'data Indicator',
  1490. id: 1269,
  1491. redirect: '',
  1492. level: 3,
  1493. openPath: '',
  1494. active: '',
  1495. label: '数据标准',
  1496. sort: 1,
  1497. parentId: 1202,
  1498. effectiveStatus: true,
  1499. parentName: '',
  1500. component: 'dataBook/dataStandard',
  1501. meta: {
  1502. keepAlive: false,
  1503. allowClick: true,
  1504. roles: [],
  1505. enName: 'data Indicator',
  1506. icon: '',
  1507. editModules: false,
  1508. title: '数据标准',
  1509. fullScreen: false,
  1510. target: false,
  1511. effectiveStatus: true
  1512. },
  1513. name: 'data-book-standard-index',
  1514. style: '',
  1515. alwaysShow: 0,
  1516. metastr: '{"keepAlive":false,"allowClick":true,"enName":"data Indicator","editModules":false,"title":"数据标准","fullScreen":false,"target":false}',
  1517. open: null
  1518. },
  1519. {
  1520. meun: '',
  1521. code: '',
  1522. hidden: 1,
  1523. rootId: 1225,
  1524. icon: '',
  1525. remark: '',
  1526. type: 1,
  1527. title: '数据标准详情',
  1528. local: '',
  1529. path: '/data-book/data-standard/details/:id/:name',
  1530. urls: '',
  1531. children: [],
  1532. enName: 'data Indicator',
  1533. id: 1270,
  1534. redirect: '',
  1535. level: 3,
  1536. openPath: '',
  1537. active: '',
  1538. label: '数据标准详情',
  1539. sort: 10,
  1540. parentId: 1202,
  1541. effectiveStatus: true,
  1542. parentName: '',
  1543. component: 'dataBook/dataStandard/details',
  1544. meta: {
  1545. keepAlive: false,
  1546. allowClick: true,
  1547. roles: [],
  1548. enName: 'data Indicator',
  1549. icon: '',
  1550. editModules: false,
  1551. title: '数据标准详情',
  1552. fullScreen: false,
  1553. target: false,
  1554. effectiveStatus: true
  1555. },
  1556. name: 'data-book-standard-details',
  1557. style: '',
  1558. alwaysShow: 0,
  1559. metastr: '{"keepAlive":false,"allowClick":true,"enName":"data Indicator","editModules":false,"title":"数据标准详情","fullScreen":false,"target":false}',
  1560. open: null
  1561. }
  1562. ],
  1563. enName: 'data Indicator',
  1564. id: 1202,
  1565. redirect: '',
  1566. level: 2,
  1567. openPath: '',
  1568. active: '',
  1569. label: '数据标准',
  1570. sort: 35,
  1571. parentId: 1225,
  1572. effectiveStatus: true,
  1573. parentName: '',
  1574. component: '',
  1575. meta: {
  1576. allowClick: true,
  1577. roles: [],
  1578. enName: 'data Indicator',
  1579. icon: '',
  1580. title: '数据标准',
  1581. target: false,
  1582. effectiveStatus: true
  1583. },
  1584. name: 'data-book-standard',
  1585. style: '',
  1586. alwaysShow: 0,
  1587. metastr: '{"allowClick":true,"enName":"data Indicator","title":"数据标准","target":false}',
  1588. open: null
  1589. },
  1590. {
  1591. meun: '',
  1592. code: '',
  1593. hidden: 0,
  1594. rootId: 2001,
  1595. icon: '',
  1596. remark: '',
  1597. type: 0,
  1598. title: '数据流程',
  1599. local: '',
  1600. path: '/data-book/data-process',
  1601. urls: '',
  1602. children: [
  1603. {
  1604. meun: '',
  1605. code: '',
  1606. hidden: 1,
  1607. rootId: 2002,
  1608. icon: '',
  1609. remark: '',
  1610. type: 1,
  1611. title: '数据流程',
  1612. local: '',
  1613. path: '/data-book/data-process',
  1614. urls: '',
  1615. children: [],
  1616. enName: 'data process',
  1617. id: 1269,
  1618. redirect: '',
  1619. level: 3,
  1620. openPath: '',
  1621. active: '',
  1622. label: '数据流程',
  1623. sort: 1,
  1624. parentId: 2001,
  1625. effectiveStatus: true,
  1626. parentName: '',
  1627. component: 'dataBook/dataProcess',
  1628. meta: {
  1629. keepAlive: false,
  1630. allowClick: true,
  1631. roles: [],
  1632. enName: 'data process',
  1633. icon: '',
  1634. editModules: false,
  1635. title: '数据流程',
  1636. fullScreen: false,
  1637. target: false,
  1638. effectiveStatus: true
  1639. },
  1640. name: 'data-book-process-index',
  1641. style: '',
  1642. alwaysShow: 0,
  1643. metastr: '{"keepAlive":false,"allowClick":true,"enName":"data Indicator","editModules":false,"title":"数据标准","fullScreen":false,"target":false}',
  1644. open: null
  1645. },
  1646. {
  1647. meun: '',
  1648. code: '',
  1649. hidden: 1,
  1650. rootId: 1225,
  1651. icon: '',
  1652. remark: '',
  1653. type: 1,
  1654. title: '数据流程详情',
  1655. local: '',
  1656. path: '/data-book/data-process/details/:id/:name',
  1657. urls: '',
  1658. children: [],
  1659. enName: 'data process',
  1660. id: 1270,
  1661. redirect: '',
  1662. level: 3,
  1663. openPath: '',
  1664. active: '',
  1665. label: '数据流程详情',
  1666. sort: 10,
  1667. parentId: 2001,
  1668. effectiveStatus: true,
  1669. parentName: '',
  1670. component: 'dataBook/dataProcess/details',
  1671. meta: {
  1672. keepAlive: false,
  1673. allowClick: true,
  1674. roles: [],
  1675. enName: 'data process',
  1676. icon: '',
  1677. editModules: false,
  1678. title: '数据流程详情',
  1679. fullScreen: false,
  1680. target: false,
  1681. effectiveStatus: true
  1682. },
  1683. name: 'data-book-process-details',
  1684. style: '',
  1685. alwaysShow: 0,
  1686. metastr: '{"keepAlive":false,"allowClick":true,"enName":"data Indicator","editModules":false,"title":"数据标准详情","fullScreen":false,"target":false}',
  1687. open: null
  1688. }
  1689. ],
  1690. enName: 'data process',
  1691. id: 1202,
  1692. redirect: '',
  1693. level: 2,
  1694. openPath: '',
  1695. active: '',
  1696. label: '数据流程',
  1697. sort: 35,
  1698. parentId: 1225,
  1699. effectiveStatus: true,
  1700. parentName: '',
  1701. component: '',
  1702. meta: {
  1703. allowClick: true,
  1704. roles: [],
  1705. enName: 'data process',
  1706. icon: '',
  1707. title: '数据流程',
  1708. target: false,
  1709. effectiveStatus: true
  1710. },
  1711. name: 'data-book-process',
  1712. style: '',
  1713. alwaysShow: 0,
  1714. metastr: '{"allowClick":true,"enName":"data Indicator","title":"数据标准","target":false}',
  1715. open: null
  1716. },
  1717. {
  1718. meun: '',
  1719. code: '',
  1720. hidden: 0,
  1721. rootId: 1225,
  1722. icon: '',
  1723. remark: '',
  1724. type: 1,
  1725. title: '数据标签',
  1726. local: '',
  1727. path: '/data-book/data-label',
  1728. urls: '',
  1729. children: [
  1730. {
  1731. meun: '',
  1732. code: '',
  1733. hidden: 1,
  1734. rootId: 1225,
  1735. icon: '',
  1736. remark: '',
  1737. type: 1,
  1738. title: '数据标签',
  1739. local: '',
  1740. path: '/data-book/data-label',
  1741. urls: '',
  1742. children: [],
  1743. enName: 'data Label',
  1744. id: 1271,
  1745. redirect: '',
  1746. level: 3,
  1747. openPath: '',
  1748. active: '',
  1749. label: '数据标签',
  1750. sort: 1,
  1751. parentId: 1218,
  1752. effectiveStatus: true,
  1753. parentName: '',
  1754. component: 'dataBook/dataLabel',
  1755. meta: {
  1756. keepAlive: false,
  1757. allowClick: true,
  1758. roles: [],
  1759. enName: 'data Label',
  1760. icon: '',
  1761. editModules: false,
  1762. title: '数据标签',
  1763. fullScreen: false,
  1764. target: false,
  1765. effectiveStatus: true
  1766. },
  1767. name: 'data-book-label-index',
  1768. style: '',
  1769. alwaysShow: 0,
  1770. metastr: '{"keepAlive":false,"allowClick":true,"enName":"data Label","editModules":false,"title":"数据标签","fullScreen":false,"target":false}',
  1771. open: null
  1772. },
  1773. {
  1774. meun: '',
  1775. code: '',
  1776. hidden: 1,
  1777. rootId: 1225,
  1778. icon: '',
  1779. remark: '',
  1780. type: 1,
  1781. title: '数据标签详情',
  1782. local: '',
  1783. path: '/data-book/data-label/details/:id/:name',
  1784. urls: '',
  1785. children: [],
  1786. enName: 'data Label',
  1787. id: 1272,
  1788. redirect: '',
  1789. level: 3,
  1790. openPath: '',
  1791. active: '',
  1792. label: '数据标签详情',
  1793. sort: 1,
  1794. parentId: 1218,
  1795. effectiveStatus: true,
  1796. parentName: '',
  1797. component: 'dataBook/dataLabel/details',
  1798. meta: {
  1799. keepAlive: false,
  1800. allowClick: true,
  1801. roles: [],
  1802. enName: 'data Label',
  1803. icon: '',
  1804. editModules: false,
  1805. title: '数据标签详情',
  1806. fullScreen: false,
  1807. target: false,
  1808. effectiveStatus: true
  1809. },
  1810. name: 'data-book-label-details',
  1811. style: '',
  1812. alwaysShow: 0,
  1813. metastr: '{"keepAlive":false,"allowClick":true,"enName":"data Label","editModules":false,"title":"数据标签详情","fullScreen":false,"target":false}',
  1814. open: null
  1815. }
  1816. ],
  1817. enName: 'data Label',
  1818. id: 1218,
  1819. redirect: '',
  1820. level: 2,
  1821. openPath: '',
  1822. active: '',
  1823. label: '数据标签',
  1824. sort: 40,
  1825. parentId: 1225,
  1826. effectiveStatus: true,
  1827. parentName: '',
  1828. component: '',
  1829. meta: {
  1830. keepAlive: false,
  1831. allowClick: true,
  1832. roles: [],
  1833. enName: 'data Label',
  1834. icon: '',
  1835. editModules: false,
  1836. title: '数据标签',
  1837. fullScreen: false,
  1838. target: false,
  1839. effectiveStatus: true
  1840. },
  1841. name: 'data-book-label',
  1842. style: '',
  1843. alwaysShow: 0,
  1844. metastr: '{"keepAlive":false,"allowClick":true,"enName":"data Label","editModules":false,"title":"数据标签","fullScreen":false,"target":false}',
  1845. open: null
  1846. }
  1847. ],
  1848. enName: 'data book',
  1849. id: 1225,
  1850. redirect: '',
  1851. level: 1,
  1852. openPath: '',
  1853. active: '',
  1854. label: '数据地图',
  1855. sort: 49,
  1856. parentId: 0,
  1857. effectiveStatus: true,
  1858. parentName: '',
  1859. component: 'Layout',
  1860. meta: {
  1861. allowClick: false,
  1862. roles: [],
  1863. enName: 'data book',
  1864. icon: 'mdi-book-open-outline',
  1865. title: '数据地图',
  1866. target: false,
  1867. effectiveStatus: true
  1868. },
  1869. name: 'data-book',
  1870. style: '',
  1871. alwaysShow: 0,
  1872. metastr: '{"allowClick":false,"enName":"data book","title":"数据地图","target":false}',
  1873. open: null
  1874. },
  1875. {
  1876. meun: '',
  1877. code: '',
  1878. hidden: 0,
  1879. rootId: 0,
  1880. icon: 'mdi-factory',
  1881. remark: '',
  1882. type: 0,
  1883. title: '数据工厂',
  1884. local: '',
  1885. path: '/dataFactory',
  1886. urls: '',
  1887. children: [
  1888. {
  1889. meun: '',
  1890. code: '',
  1891. hidden: 0,
  1892. rootId: 972,
  1893. icon: '',
  1894. remark: '',
  1895. type: 1,
  1896. title: '生产线管理',
  1897. local: '',
  1898. path: process.env.VUE_APP_N8N_URL,
  1899. urls: '',
  1900. children: [],
  1901. enName: 'Assembly Line',
  1902. id: 973,
  1903. redirect: '',
  1904. level: 2,
  1905. openPath: '',
  1906. active: '',
  1907. label: '生产线管理',
  1908. sort: 6,
  1909. parentId: 972,
  1910. effectiveStatus: true,
  1911. parentName: 'dataFactory',
  1912. component: 'dataFactory/productionLine',
  1913. meta: {
  1914. keepAlive: false,
  1915. allowClick: false,
  1916. roles: [],
  1917. enName: 'Assembly Line',
  1918. icon: '',
  1919. editModules: false,
  1920. title: '生产线管理',
  1921. fullScreen: false,
  1922. target: true,
  1923. effectiveStatus: true
  1924. },
  1925. name: 'productionLine',
  1926. style: '',
  1927. alwaysShow: 0,
  1928. metastr: '{"keepAlive":false,"allowClick":false,"enName":"Assembly Line","editModules":false,"title":"生产线管理","fullScreen":false,"target":true}',
  1929. open: null,
  1930. target: true
  1931. }
  1932. // {
  1933. // meun: '',
  1934. // code: '',
  1935. // hidden: 0,
  1936. // rootId: 972,
  1937. // icon: '',
  1938. // remark: '',
  1939. // type: 1,
  1940. // title: '原料管理',
  1941. // local: '',
  1942. // path: '/dataFactory/log-manage',
  1943. // urls: '',
  1944. // children: [],
  1945. // enName: 'log manage',
  1946. // id: 974,
  1947. // redirect: '',
  1948. // level: 2,
  1949. // openPath: '',
  1950. // active: '',
  1951. // label: '原料管理',
  1952. // sort: 10,
  1953. // parentId: 972,
  1954. // effectiveStatus: true,
  1955. // parentName: 'dataFactory',
  1956. // component: 'dataFactory/logManage',
  1957. // meta: {
  1958. // keepAlive: false,
  1959. // allowClick: false,
  1960. // roles: [],
  1961. // enName: 'log manage',
  1962. // icon: '',
  1963. // editModules: false,
  1964. // title: '原料管理',
  1965. // fullScreen: false,
  1966. // target: false,
  1967. // effectiveStatus: true
  1968. // },
  1969. // name: 'productionLineLogManage',
  1970. // style: '',
  1971. // alwaysShow: 0,
  1972. // metastr: '{"keepAlive":false,"allowClick":false,"enName":"log manage","editModules":false,"title":"生产线日志","fullScreen":false,"target":false}',
  1973. // open: null
  1974. // }
  1975. ],
  1976. enName: 'production line manage',
  1977. id: 972,
  1978. redirect: '',
  1979. level: 1,
  1980. openPath: '',
  1981. active: '',
  1982. label: '数据工厂',
  1983. sort: 46,
  1984. parentId: 0,
  1985. effectiveStatus: true,
  1986. parentName: 'dataFactory',
  1987. component: 'Layout',
  1988. meta: {
  1989. allowClick: false,
  1990. roles: [],
  1991. enName: 'production line manage',
  1992. icon: 'mdi-factory',
  1993. title: '数据工厂',
  1994. target: false,
  1995. effectiveStatus: true
  1996. },
  1997. name: 'dataFactory',
  1998. style: '',
  1999. alwaysShow: 0,
  2000. metastr: '{"allowClick":false,"enName":"production line manage","title":"数据工厂","target":false}',
  2001. open: null
  2002. },
  2003. {
  2004. meun: '',
  2005. code: '',
  2006. hidden: 0,
  2007. rootId: 0,
  2008. icon: 'mdi-application-settings-outline',
  2009. remark: '',
  2010. type: 0,
  2011. title: '数据目录',
  2012. local: '',
  2013. path: '/dataCatalog',
  2014. urls: '',
  2015. children: [
  2016. {
  2017. hidden: 1,
  2018. icon: '',
  2019. type: 1,
  2020. title: '数据目录',
  2021. path: '/dataCatalog',
  2022. children: [],
  2023. enName: 'data Catalog',
  2024. redirect: '',
  2025. active: '',
  2026. label: '数据目录',
  2027. sort: 0,
  2028. component: 'dataCatalog',
  2029. meta: {
  2030. roles: [],
  2031. enName: 'data Catalog',
  2032. icon: '',
  2033. title: '数据目录',
  2034. fullScreen: false
  2035. },
  2036. name: 'index',
  2037. alwaysShow: 0
  2038. }
  2039. ],
  2040. enName: 'data catalog',
  2041. id: 972,
  2042. redirect: '',
  2043. level: 1,
  2044. openPath: '',
  2045. active: '',
  2046. label: '数据目录',
  2047. sort: 46,
  2048. parentId: 0,
  2049. effectiveStatus: true,
  2050. parentName: 'dataCatalog',
  2051. component: 'Layout',
  2052. meta: {
  2053. allowClick: false,
  2054. roles: [],
  2055. enName: 'data catalog',
  2056. icon: 'mdi-application-settings-outline',
  2057. title: '数据目录',
  2058. target: false,
  2059. effectiveStatus: true
  2060. },
  2061. name: 'dataCatalog',
  2062. style: '',
  2063. alwaysShow: 0,
  2064. metastr: '{"allowClick":false,"enName":"data catalog","title":"数据目录","target":false}'
  2065. },
  2066. {
  2067. hidden: 0,
  2068. rootId: 0,
  2069. icon: 'mdi-widgets-outline',
  2070. type: 0,
  2071. path: '/dataReview',
  2072. children: [
  2073. {
  2074. hidden: 1,
  2075. icon: '',
  2076. type: 1,
  2077. title: '数据审核',
  2078. path: '/dataReview',
  2079. children: [],
  2080. enName: 'data Review',
  2081. redirect: '',
  2082. active: '',
  2083. label: '数据审核',
  2084. sort: 0,
  2085. component: 'dataReview',
  2086. meta: {
  2087. roles: [],
  2088. enName: 'data Review',
  2089. icon: '',
  2090. title: '数据审核',
  2091. fullScreen: false
  2092. },
  2093. name: 'index',
  2094. alwaysShow: 0
  2095. }
  2096. ],
  2097. enName: 'data Review',
  2098. redirect: '',
  2099. active: '',
  2100. sort: 0,
  2101. component: 'Layout',
  2102. meta: {
  2103. allowClick: false,
  2104. roles: [],
  2105. enName: 'data Review',
  2106. icon: 'mdi-widgets-outline',
  2107. title: '数据审核',
  2108. target: false,
  2109. effectiveStatus: true
  2110. },
  2111. name: 'dataReview',
  2112. alwaysShow: 0
  2113. },
  2114. // {
  2115. // meun: '',
  2116. // code: '',
  2117. // hidden: 0,
  2118. // rootId: 0,
  2119. // icon: 'mdi-widgets-outline',
  2120. // remark: '',
  2121. // type: 0,
  2122. // title: '数据来源',
  2123. // local: '',
  2124. // path: '/data-origin',
  2125. // urls: '',
  2126. // children: [
  2127. // {
  2128. // meun: '',
  2129. // code: '',
  2130. // hidden: 0,
  2131. // rootId: 1319,
  2132. // icon: 'mdi-widgets-outline',
  2133. // remark: '',
  2134. // type: 1,
  2135. // title: 'RDBMS数据源',
  2136. // local: '',
  2137. // path: '/data-origin/rdbms',
  2138. // urls: '',
  2139. // children: [],
  2140. // enName: 'RDBMS Data Source',
  2141. // id: 1328,
  2142. // redirect: '',
  2143. // level: 2,
  2144. // openPath: '',
  2145. // active: '',
  2146. // label: 'RDBMS数据源',
  2147. // sort: 1,
  2148. // parentId: 1319,
  2149. // effectiveStatus: true,
  2150. // parentName: '',
  2151. // component: 'dataOrigin/rdbmsDataSource',
  2152. // meta: {
  2153. // keepAlive: false,
  2154. // allowClick: false,
  2155. // roles: [],
  2156. // enName: 'RDBMS Data Source',
  2157. // icon: 'mdi-widgets-outline',
  2158. // editModules: false,
  2159. // title: 'RDBMS数据源',
  2160. // fullScreen: false,
  2161. // target: false,
  2162. // dataPermission: false,
  2163. // effectiveStatus: true
  2164. // },
  2165. // name: 'data-origin',
  2166. // style: '',
  2167. // alwaysShow: 0,
  2168. // metastr: '{"keepAlive":false,"allowClick":false,"enName":"RDBMS Data Source","editModules":false,"title":"RDBMS数据源","fullScreen":false,"target":false,"dataPermission":false}',
  2169. // open: null
  2170. // },
  2171. // {
  2172. // meun: '',
  2173. // code: '',
  2174. // hidden: 0,
  2175. // rootId: 1319,
  2176. // icon: 'mdi-widgets-outline',
  2177. // remark: '',
  2178. // type: 1,
  2179. // title: '非结构化数据源',
  2180. // local: '',
  2181. // path: '/data-origin/unstructured',
  2182. // urls: '',
  2183. // children: [
  2184. // {
  2185. // meun: '',
  2186. // code: '',
  2187. // hidden: 0,
  2188. // rootId: 1319,
  2189. // icon: 'mdi-account-plus-outline',
  2190. // remark: '',
  2191. // type: 1,
  2192. // title: '手动收集',
  2193. // local: '',
  2194. // path: '/data-origin/unstructured/manual-collection',
  2195. // urls: '',
  2196. // children: [],
  2197. // enName: 'Manual collection',
  2198. // id: 1320,
  2199. // redirect: '',
  2200. // level: 3,
  2201. // openPath: '',
  2202. // active: '',
  2203. // label: '手动收集',
  2204. // sort: 1,
  2205. // parentId: 1327,
  2206. // effectiveStatus: true,
  2207. // parentName: '',
  2208. // component: 'dataOrigin/unstructuredData/manualCollection',
  2209. // meta: {
  2210. // keepAlive: false,
  2211. // allowClick: false,
  2212. // roles: [
  2213. // {
  2214. // active: '1',
  2215. // alwaysShow: 0,
  2216. // children: [],
  2217. // code: '',
  2218. // component: '',
  2219. // effectiveStatus: true,
  2220. // enName: 'Excel Import',
  2221. // hidden: 0,
  2222. // icon: '',
  2223. // id: 1321,
  2224. // label: 'Excel导入',
  2225. // level: 3,
  2226. // local: '',
  2227. // meta: null,
  2228. // metastr: '{"enName":"Excel Import","title":"Excel导入","target":false}',
  2229. // meun: '',
  2230. // name: 'excelImport',
  2231. // open: 0,
  2232. // openPath: '',
  2233. // parentId: 1320,
  2234. // parentName: '',
  2235. // path: '',
  2236. // redirect: '',
  2237. // remark: '',
  2238. // rootId: 1319,
  2239. // sort: 0,
  2240. // style: '',
  2241. // type: 3,
  2242. // urls: ''
  2243. // },
  2244. // {
  2245. // active: '1',
  2246. // alwaysShow: 0,
  2247. // children: [],
  2248. // code: '',
  2249. // component: '',
  2250. // effectiveStatus: true,
  2251. // enName: 'Image Import',
  2252. // hidden: 0,
  2253. // icon: '',
  2254. // id: 1322,
  2255. // label: '名片解析',
  2256. // level: 3,
  2257. // local: '',
  2258. // meta: null,
  2259. // metastr: '{"enName":"Image Import","title":"名片解析","target":false}',
  2260. // meun: '',
  2261. // name: 'imageImport',
  2262. // open: 0,
  2263. // openPath: '',
  2264. // parentId: 1320,
  2265. // parentName: '',
  2266. // path: '',
  2267. // redirect: '',
  2268. // remark: '',
  2269. // rootId: 1319,
  2270. // sort: 5,
  2271. // style: '',
  2272. // type: 3,
  2273. // urls: ''
  2274. // },
  2275. // {
  2276. // active: '1',
  2277. // alwaysShow: 0,
  2278. // children: [],
  2279. // code: '',
  2280. // component: '',
  2281. // effectiveStatus: true,
  2282. // enName: 'Manual Import',
  2283. // hidden: 0,
  2284. // icon: '',
  2285. // id: 1323,
  2286. // label: '手动输入',
  2287. // level: 3,
  2288. // local: '',
  2289. // meta: null,
  2290. // metastr: '{"enName":"Manual Import","title":"手动输入","target":false}',
  2291. // meun: '',
  2292. // name: 'manualImport',
  2293. // open: 0,
  2294. // openPath: '',
  2295. // parentId: 1320,
  2296. // parentName: '',
  2297. // path: '',
  2298. // redirect: '',
  2299. // remark: '',
  2300. // rootId: 1319,
  2301. // sort: 10,
  2302. // style: '',
  2303. // type: 3,
  2304. // urls: ''
  2305. // }
  2306. // ],
  2307. // enName: 'Manual collection',
  2308. // icon: 'mdi-account-plus-outline',
  2309. // editModules: false,
  2310. // title: '手动收集',
  2311. // fullScreen: false,
  2312. // target: false,
  2313. // dataPermission: false,
  2314. // effectiveStatus: true
  2315. // },
  2316. // name: 'manual-collection',
  2317. // style: '',
  2318. // alwaysShow: 0,
  2319. // metastr: '{"keepAlive":false,"allowClick":false,"enName":"Manual collection","editModules":false,"title":"手动收集","fullScreen":false,"target":false,"dataPermission":false}',
  2320. // open: null
  2321. // },
  2322. // {
  2323. // meun: '',
  2324. // code: '',
  2325. // hidden: 0,
  2326. // rootId: 1319,
  2327. // icon: 'mdi-bug',
  2328. // remark: '',
  2329. // type: 1,
  2330. // title: '自动收集',
  2331. // local: '',
  2332. // path: '/data-origin/unstructured/auto-collection',
  2333. // urls: '',
  2334. // children: [],
  2335. // enName: 'Auto collection',
  2336. // id: 1324,
  2337. // redirect: '',
  2338. // level: 3,
  2339. // openPath: '',
  2340. // active: '',
  2341. // label: '自动收集',
  2342. // sort: 1,
  2343. // parentId: 1327,
  2344. // effectiveStatus: true,
  2345. // parentName: '',
  2346. // component: 'dataOrigin/unstructuredData/autoCollection',
  2347. // meta: {
  2348. // keepAlive: false,
  2349. // allowClick: false,
  2350. // roles: [
  2351. // {
  2352. // active: '1',
  2353. // alwaysShow: 0,
  2354. // children: [],
  2355. // code: '',
  2356. // component: '',
  2357. // effectiveStatus: true,
  2358. // enName: 'Spider Management',
  2359. // hidden: 0,
  2360. // icon: 'mdi-bug',
  2361. // id: 1325,
  2362. // label: '爬虫管理',
  2363. // level: 3,
  2364. // local: '',
  2365. // meta: null,
  2366. // metastr: '{"enName":"Spider Management","title":"爬虫管理","target":false}',
  2367. // meun: '',
  2368. // name: 'spiderManagement',
  2369. // open: 0,
  2370. // openPath: '',
  2371. // parentId: 1324,
  2372. // parentName: '',
  2373. // path: '',
  2374. // redirect: '',
  2375. // remark: '',
  2376. // rootId: 1319,
  2377. // sort: 1,
  2378. // style: '',
  2379. // type: 3,
  2380. // urls: ''
  2381. // },
  2382. // {
  2383. // active: '1',
  2384. // alwaysShow: 0,
  2385. // children: [],
  2386. // code: '',
  2387. // component: '',
  2388. // effectiveStatus: true,
  2389. // enName: 'Page Parsing',
  2390. // hidden: 0,
  2391. // icon: 'mdi-bug',
  2392. // id: 1326,
  2393. // label: '网页解析',
  2394. // level: 3,
  2395. // local: '',
  2396. // meta: null,
  2397. // metastr: '{"enName":"Page Parsing","title":"网页解析","target":false}',
  2398. // meun: '',
  2399. // name: 'pageParsing',
  2400. // open: 0,
  2401. // openPath: '',
  2402. // parentId: 1324,
  2403. // parentName: '',
  2404. // path: '',
  2405. // redirect: '',
  2406. // remark: '',
  2407. // rootId: 1319,
  2408. // sort: 1,
  2409. // style: '',
  2410. // type: 3,
  2411. // urls: ''
  2412. // }
  2413. // ],
  2414. // enName: 'Auto collection',
  2415. // icon: 'mdi-bug',
  2416. // editModules: false,
  2417. // title: '自动收集',
  2418. // fullScreen: false,
  2419. // target: false,
  2420. // dataPermission: false,
  2421. // effectiveStatus: true
  2422. // },
  2423. // name: 'auto-collection',
  2424. // style: '',
  2425. // alwaysShow: 0,
  2426. // metastr: '{"keepAlive":false,"allowClick":false,"enName":"Auto collection","editModules":false,"title":"自动收集","fullScreen":false,"target":false,"dataPermission":false}',
  2427. // open: null
  2428. // }
  2429. // ],
  2430. // enName: 'Unstructured Data Source',
  2431. // id: 1327,
  2432. // redirect: '',
  2433. // level: 2,
  2434. // openPath: '',
  2435. // active: '',
  2436. // label: '非结构化数据源',
  2437. // sort: 10,
  2438. // parentId: 1319,
  2439. // effectiveStatus: true,
  2440. // parentName: '',
  2441. // component: '',
  2442. // meta: {
  2443. // keepAlive: false,
  2444. // allowClick: false,
  2445. // roles: [],
  2446. // enName: 'Unstructured Data Source',
  2447. // icon: 'mdi-widgets-outline',
  2448. // editModules: false,
  2449. // title: '非结构化数据源',
  2450. // fullScreen: false,
  2451. // target: false,
  2452. // dataPermission: false,
  2453. // effectiveStatus: true
  2454. // },
  2455. // name: 'unstructured',
  2456. // style: '',
  2457. // alwaysShow: 0,
  2458. // metastr: '{"keepAlive":false,"allowClick":false,"enName":"Unstructured Data Source","editModules":false,"title":"非结构化数据源","fullScreen":false,"target":false,"dataPermission":false}',
  2459. // open: null
  2460. // }
  2461. // ],
  2462. // enName: 'Data collection',
  2463. // id: 1319,
  2464. // redirect: '',
  2465. // level: 1,
  2466. // openPath: '',
  2467. // active: '',
  2468. // label: '数据来源',
  2469. // sort: 47,
  2470. // parentId: 0,
  2471. // effectiveStatus: true,
  2472. // parentName: '',
  2473. // component: 'Layout',
  2474. // meta: {
  2475. // allowClick: false,
  2476. // roles: [],
  2477. // enName: 'Data collection',
  2478. // icon: 'mdi-widgets-outline',
  2479. // title: '数据来源',
  2480. // target: false,
  2481. // effectiveStatus: true
  2482. // },
  2483. // name: 'data-origin',
  2484. // style: '',
  2485. // alwaysShow: 0,
  2486. // metastr: '{"allowClick":false,"enName":"Data collection","title":"数据来源","target":false}',
  2487. // open: null
  2488. // },
  2489. {
  2490. hidden: 0,
  2491. rootId: 0,
  2492. icon: 'mdi-cog-outline',
  2493. type: 0,
  2494. path: '/model-system',
  2495. children: [
  2496. {
  2497. hidden: 0,
  2498. icon: '',
  2499. type: 1,
  2500. title: '质量管理',
  2501. path: '/model-system/model-statistics',
  2502. children: [],
  2503. enName: 'model-statistics',
  2504. redirect: '',
  2505. active: '',
  2506. label: '质量管理',
  2507. sort: 0,
  2508. component: 'modelSystem/modelStatistics',
  2509. meta: {
  2510. roles: [],
  2511. enName: 'model-statistics',
  2512. icon: '',
  2513. title: '质量管理',
  2514. fullScreen: false
  2515. },
  2516. name: 'model-statistics',
  2517. alwaysShow: 0
  2518. },
  2519. {
  2520. hidden: 0,
  2521. icon: '',
  2522. type: 1,
  2523. title: 'QA反馈管理',
  2524. path: '/model-system/model-qa',
  2525. children: [],
  2526. enName: 'model-qa',
  2527. redirect: '',
  2528. active: '',
  2529. label: 'QA反馈管理',
  2530. sort: 0,
  2531. component: 'modelSystem/modelQa',
  2532. meta: {
  2533. roles: [],
  2534. enName: 'model-qa',
  2535. icon: '',
  2536. title: 'QA反馈管理',
  2537. fullScreen: false
  2538. },
  2539. name: 'model-qa',
  2540. alwaysShow: 0
  2541. },
  2542. {
  2543. hidden: 0,
  2544. icon: '',
  2545. type: 1,
  2546. title: '典型业务知识库',
  2547. path: '/model-system/model-train-manage',
  2548. children: [],
  2549. enName: 'model-train-manage',
  2550. redirect: '',
  2551. active: '',
  2552. label: '典型业务知识库',
  2553. sort: 10,
  2554. component: 'modelSystem/modelTrainManage',
  2555. meta: {
  2556. roles: [],
  2557. enName: 'model-train-manage',
  2558. icon: '',
  2559. title: '典型业务知识库',
  2560. fullScreen: false
  2561. },
  2562. name: 'model-train',
  2563. alwaysShow: 0
  2564. },
  2565. {
  2566. hidden: 0,
  2567. icon: '',
  2568. type: 1,
  2569. title: '知识库冷启动',
  2570. path: '/model-system/model-train',
  2571. children: [],
  2572. enName: 'model-train',
  2573. redirect: '',
  2574. active: '',
  2575. label: '知识库冷启动',
  2576. sort: 10,
  2577. component: 'modelSystem/modelTrain',
  2578. meta: {
  2579. roles: [],
  2580. enName: 'model-train',
  2581. icon: '',
  2582. title: '知识库冷启动',
  2583. fullScreen: false
  2584. },
  2585. name: 'model-train',
  2586. alwaysShow: 0
  2587. },
  2588. {
  2589. hidden: 0,
  2590. icon: '',
  2591. type: 1,
  2592. title: '内存管理',
  2593. path: '/model-system/model-history',
  2594. children: [],
  2595. enName: 'model-history',
  2596. redirect: '',
  2597. active: '',
  2598. label: '内存管理',
  2599. sort: 0,
  2600. component: 'modelSystem/modelHistory',
  2601. meta: {
  2602. roles: [],
  2603. enName: 'model-history',
  2604. icon: '',
  2605. title: '内存管理',
  2606. fullScreen: false
  2607. },
  2608. name: 'model-history',
  2609. alwaysShow: 0
  2610. },
  2611. {
  2612. hidden: 0,
  2613. icon: '',
  2614. type: 1,
  2615. title: '备份与恢复',
  2616. path: '/model-system/backup',
  2617. children: [],
  2618. enName: 'backup',
  2619. redirect: '',
  2620. active: '',
  2621. label: '备份与恢复',
  2622. sort: 10,
  2623. component: 'modelSystem/backup',
  2624. meta: {
  2625. roles: [],
  2626. enName: 'backup',
  2627. icon: '',
  2628. title: '备份与恢复',
  2629. fullScreen: false
  2630. },
  2631. name: 'backup',
  2632. alwaysShow: 0
  2633. }
  2634. ],
  2635. name: 'model-system',
  2636. enName: 'modelSystem',
  2637. redirect: '',
  2638. active: '',
  2639. sort: 100,
  2640. component: 'Layout',
  2641. meta: {
  2642. allowClick: false,
  2643. roles: [],
  2644. enName: 'modelSystem',
  2645. icon: 'mdi-cog-outline',
  2646. title: '知识库管理',
  2647. target: false,
  2648. effectiveStatus: true
  2649. },
  2650. alwaysShow: 0
  2651. }
  2652. ],
  2653. permission: []
  2654. }