menu-list-sp.js 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920
  1. // 此处定义所有有关 sa-plus 的路由菜单
  2. // 如需添加自定义菜单,请不要更改此文件,请在 menu-list.js 里添加 (没有这个文件就新建)
  3. window.menuList = window.menuList || [];
  4. window.menuList.unshift({
  5. id: 'bas',
  6. name: '身份相关',
  7. isShow: false, // 隐藏显示
  8. info: '身份相关权限,不显示在菜单上',
  9. childList: [{
  10. id: '1',
  11. name: '身份-超管',
  12. info: '最高权限,超管身份的代表(请谨慎授权)',
  13. isShow: false
  14. },
  15. {
  16. id: '11',
  17. name: '身份-普通账号',
  18. isShow: false,
  19. info: '无特殊权限'
  20. },
  21. {
  22. id: '99',
  23. name: '允许进入后台管理',
  24. isShow: false,
  25. info: '只有拥有这个权限的角色才可以进入后台'
  26. },
  27. ]
  28. }, {
  29. id: 'console',
  30. name: '监控中心',
  31. icon: 'el-icon-view',
  32. info: '对本系统的各种监控',
  33. parent: true,
  34. childList: [{
  35. id: 'sql-console',
  36. name: 'SQL监控台',
  37. url: 'sa-view-sp/sp-console/sql-console.html',
  38. info: 'sql控制台'
  39. },
  40. {
  41. id: 'redis-console',
  42. name: 'Redis控制台',
  43. url: 'sa-view-sp/sp-console/redis-console.html',
  44. info: 'redis常用工具'
  45. },
  46. {
  47. id: 'apilog-list',
  48. name: 'API请求日志',
  49. url: 'sa-view-sp/sp-apilog/api-log-list.html',
  50. info: '记录本系统所有的api请求'
  51. },
  52. {
  53. id: 'form-generator',
  54. name: '在线表单构建',
  55. url: 'https://mrhj.gitee.io/form-generator/#/'
  56. },
  57. ]
  58. }, {
  59. id: 'auth',
  60. name: '权限控制',
  61. parent: true,
  62. icon: 'el-icon-unlock',
  63. info: '对系统角色权限的分配等设计,敏感度较高,请谨慎授权',
  64. childList: [{
  65. id: 'admin-list',
  66. name: '用户列表',
  67. url: 'sa-view-sp/sp-admin/admin-list.html',
  68. info: '所有管理员账号'
  69. }, {
  70. id: 'role-list',
  71. name: '角色列表',
  72. url: 'sa-view-sp/sp-role/role-list.html',
  73. info: '管理系统各种角色',
  74. childList: [{
  75. id: 'role-add',
  76. name: '添加角色',
  77. info: '添加角色的权限',
  78. isShow: false
  79. }]
  80. },
  81. {
  82. id: 'menu-list',
  83. name: '菜单列表',
  84. url: 'sa-view-sp/sp-role/menu-list.html',
  85. info: '所有菜单项预览'
  86. },
  87. // {id: 'apilog-list', name: '请求日志监控', url: 'sa-view-sp/sp-apilog/api-log-list.html', info: '记录本系统所有的api请求'},
  88. ]
  89. }, {
  90. id: 'sp-cfg',
  91. name: '系统配置',
  92. icon: 'el-icon-setting',
  93. parent: true,
  94. info: '有关系统的一些配置',
  95. childList: [
  96. {
  97. id: 'sp-cfg-app',
  98. name: '系统对公配置',
  99. url: 'sa-view-sp/sp-cfg/app-cfg.html'
  100. },
  101. {
  102. id: 'sp-cfg-server',
  103. name: '服务器私有配置',
  104. url: 'sa-view-sp/sp-cfg/server-cfg.html'
  105. },
  106. {
  107. id: 'sp-cfg-cooper_entrust',
  108. name: '互助委托书校验配置',
  109. url: 'sa-view-sp/sp-cfg/cooper_entrust-cfg.html'
  110. },
  111. {
  112. id: 'tb-agreement',
  113. name: '隐私政策&协议',
  114. url: 'sa-view/tb-agreement/tb-agreement-list.html',
  115. childList: [{
  116. id: 'tb-agreement-add',
  117. name: '协议表添加',
  118. isShow: true
  119. },
  120. {
  121. id: 'tb-agreement-edit',
  122. name: '协议表更新',
  123. isShow: true
  124. },
  125. {
  126. id: 'tb-agreement-del',
  127. name: '协议表删除',
  128. isShow: true
  129. },
  130. ]
  131. },
  132. {
  133. id: 'ht-byte',
  134. name: '航通',
  135. icon: 'el-icon-folder-opened',
  136. parent: true,
  137. info: '航通基础信息字节码表表数据的维护',
  138. childList: [{
  139. id: 'ht-byte-list',
  140. name: 'MQ数据-列表',
  141. url: 'sa-view/ht-byte/ht-byte-list.html',
  142. }, ]
  143. },
  144. ]
  145. }, {
  146. id: 'tb-base-data',
  147. name: '基础数据管理',
  148. parent: true,
  149. icon: 'el-icon-copy-document',
  150. childList: [
  151. {
  152. id: 'base-level-one',
  153. name: '一级市场',
  154. icon: 'el-icon-school',
  155. parent: true,
  156. childList: [{
  157. id: 'tb-trade-area',
  158. icon: 'el-icon-s-management',
  159. name: '场所管理',
  160. url: 'sa-view/tb-trade-area/tb-trade-area-list.html',
  161. childList: [{
  162. id: 'tb-trade-area-add',
  163. name: '添加场所',
  164. isShow: false
  165. },
  166. {
  167. id: 'tb-trade-area-edit',
  168. name: '更新场所',
  169. isShow: false
  170. },
  171. {
  172. id: 'tb-trade-area-del',
  173. name: '删除场所',
  174. isShow: false
  175. },
  176. ]
  177. },
  178. {
  179. id: 'tb-group',
  180. icon: 'el-icon-s-data',
  181. name: '互助组管理',
  182. url: 'sa-view/tb-group/tb-group-list.html',
  183. childList: [{
  184. id: 'tb-group-add',
  185. name: '互助组添加',
  186. isShow: false
  187. },
  188. {
  189. id: 'tb-group-edit',
  190. name: '互助组更新',
  191. isShow: false
  192. },
  193. {
  194. id: 'tb-group-del',
  195. name: '互助组删除',
  196. isShow: false
  197. },
  198. {
  199. id: 'tb-member-list',
  200. name: '查寻组内成员',
  201. isShow: false
  202. },
  203. ]
  204. },
  205. {
  206. id: 'tb-people',
  207. icon: 'el-icon-user',
  208. name: '边民管理',
  209. url: 'sa-view/tb-people/tb-people-list.html',
  210. childList: [{
  211. id: 'tb-people-add',
  212. name: '边民添加',
  213. isShow: false
  214. },
  215. {
  216. id: 'tb-people-bind-shop',
  217. name: '绑定店铺',
  218. isShow: false
  219. },
  220. {
  221. id: 'tb-people-edit',
  222. name: '边民更新',
  223. isShow: false
  224. },
  225. {
  226. id: 'tb-people-del',
  227. name: '边民删除',
  228. isShow: false
  229. },
  230. ]
  231. },
  232. {
  233. id: 'tb-shop',
  234. icon: 'el-icon-receiving',
  235. name: '商铺管理',
  236. url: 'sa-view/tb-shop/tb-shop-list.html',
  237. childList: [{
  238. id: 'tb-shop-add',
  239. name: '商铺添加',
  240. isShow: false
  241. },
  242. {
  243. id: 'tb-shop-edit',
  244. name: '商铺更新',
  245. isShow: false
  246. },
  247. {
  248. id: 'tb-shop-del',
  249. name: '商铺删除',
  250. isShow: false
  251. },
  252. ]
  253. },
  254. {
  255. id: 'tb-goods-units',
  256. name: '计价单位',
  257. icon:'el-icon-smoking',
  258. url: 'sa-view/tb-goods-units/tb-goods-units-list.html',
  259. childList: [{
  260. id: 'tb-goods-units-add',
  261. name: '计价单位添加',
  262. isShow: false
  263. },
  264. {
  265. id: 'tb-goods-units-edit',
  266. name: '计价单位更新',
  267. isShow: false
  268. },
  269. {
  270. id: 'tb-goods-units-del',
  271. name: '计价单位删除',
  272. isShow: false
  273. },
  274. ]
  275. },
  276. {
  277. id: 'tb-goods-type',
  278. name: '商品分类',
  279. icon:'el-icon-notebook-2',
  280. url: 'sa-view/tb-goods-type/tb-goods-type-list.html',
  281. childList: [{
  282. id: 'tb-goods-type-add',
  283. name: '商品分类添加',
  284. isShow: true
  285. },
  286. {
  287. id: 'tb-goods-type-edit',
  288. name: '商品分类更新',
  289. isShow: true
  290. },
  291. {
  292. id: 'tb-goods-type-del',
  293. name: '商品分类删除',
  294. isShow: true
  295. },
  296. ]
  297. },
  298. {
  299. id: 'tb-goods',
  300. name: '监管商品',
  301. icon:'el-icon-grape',
  302. url: 'sa-view/tb-goods/tb-goods-list.html',
  303. childList: [{
  304. id: 'tb-goods-add',
  305. name: '商品添加',
  306. isShow: false
  307. },
  308. {
  309. id: 'tb-goods-edit',
  310. name: '商品更新',
  311. isShow: false
  312. },
  313. {
  314. id: 'tb-goods-del',
  315. name: '商品删除',
  316. isShow: false
  317. },
  318. ]
  319. },
  320. {
  321. id: 'tb-cooperative',
  322. icon: 'el-icon-film',
  323. name: '合作社',
  324. url: 'sa-view/tb-cooperative/tb-cooperative-list.html',
  325. childList: [{
  326. id: 'tb-cooperative-add',
  327. name: '添加合作社',
  328. isShow: false
  329. },
  330. {
  331. id: 'tb-cooperative-edit',
  332. name: '更新合作社',
  333. isShow: false
  334. },
  335. {
  336. id: 'tb-cooperative-del',
  337. name: '删除合作社',
  338. isShow: false
  339. },
  340. ]
  341. },
  342. ]
  343. },
  344. {
  345. id: 'base-level-two',
  346. name: '二级市场',
  347. parent: true,
  348. icon: 'el-icon-office-building',
  349. childList: [{
  350. id: 'tb-purchaser',
  351. icon: 'el-icon-film',
  352. name: '企业收购商',
  353. url: 'sa-view/tb-purchaser/tb-purchaser-list.html',
  354. childList: [{
  355. id: 'tb-purchaser-add',
  356. name: '收购商添加',
  357. isShow: false
  358. },
  359. {
  360. id: 'tb-purchaser-edit',
  361. name: '收购商更新',
  362. isShow: false
  363. },
  364. {
  365. id: 'tb-purchaser-del',
  366. name: '收购商删除',
  367. isShow: false
  368. },
  369. ]
  370. },
  371. {
  372. id: 'tb-purchaser-judge',
  373. icon: 'el-icon-s-check',
  374. name: '企业收购商审核',
  375. url: 'sa-view/tb-purchaser/tb-purchaser-judge.html',
  376. childList: [{
  377. id: 'tb-purchaser-judge',
  378. name: '收购商审核',
  379. isShow: false
  380. }, ]
  381. }, {
  382. id: 'tb-purchaser-personal',
  383. icon: 'el-icon-film',
  384. name: '个人收购商',
  385. url: 'sa-view/tb-purchaser-personal/tb-purchaser-personal-list.html',
  386. childList: [{
  387. id: 'tb-purchaser-add',
  388. name: '收购商添加',
  389. isShow: false
  390. },
  391. {
  392. id: 'tb-purchaser-edit',
  393. name: '收购商更新',
  394. isShow: false
  395. },
  396. {
  397. id: 'tb-purchaser-del',
  398. name: '收购商删除',
  399. isShow: false
  400. },
  401. ]
  402. },
  403. {
  404. id: 'tb-purchaser-personal-judge',
  405. icon: 'el-icon-s-check',
  406. name: '个人收购商审核',
  407. url: 'sa-view/tb-purchaser-personal/tb-purchaser-personal-judge.html',
  408. childList: [{
  409. id: 'tb-purchaser-judge',
  410. name: '收购商审核',
  411. isShow: false
  412. }, ]
  413. },
  414. {
  415. id: 'tb-people-tax-account',
  416. icon: 'el-icon-folder-opened',
  417. name: '个体户(开票)',
  418. url: 'sa-view/tb-people-tax-account/tb-people-tax-account-list.html',
  419. childList: [{
  420. id: 'tb-people-tax-account-add',
  421. name: '个体户(开票)添加',
  422. isShow: false
  423. },
  424. {
  425. id: 'tb-people-tax-account-edit',
  426. name: '个体户(开票)更新',
  427. isShow: false
  428. },
  429. {
  430. id: 'tb-people-tax-account-del',
  431. name: '个体户(开票)删除',
  432. isShow: false
  433. },
  434. ]
  435. },
  436. ]
  437. },
  438. ]
  439. }, {
  440. id: 'app-setting',
  441. name: '移动端管理',
  442. icon: 'el-icon-mobile-phone',
  443. parent: true,
  444. childList: [{
  445. id: 'app-menu',
  446. icon: 'el-icon-s-operation',
  447. name: '菜单管理',
  448. url: 'sa-view/app-menu/app-menu-list.html',
  449. childList: [{
  450. id: 'app-menu-add',
  451. name: 'app菜单管理添加',
  452. isShow: false
  453. },
  454. {
  455. id: 'app-menu-edit',
  456. name: 'app菜单管理更新',
  457. isShow: false
  458. },
  459. {
  460. id: 'app-menu-del',
  461. name: 'app菜单管理删除',
  462. isShow: false
  463. },
  464. ]
  465. },
  466. {
  467. id: 'app-role',
  468. icon: 'el-icon-postcard',
  469. name: '角色管理',
  470. url: 'sa-view/app-role/app-role-list.html',
  471. childList: [{
  472. id: 'app-role-add',
  473. name: '添加',
  474. isShow: false
  475. },
  476. {
  477. id: 'app-role-edit',
  478. name: '更新',
  479. isShow: false
  480. },
  481. {
  482. id: 'app-role-del',
  483. name: '删除',
  484. isShow: false
  485. },
  486. ]
  487. },
  488. {
  489. id: 'app-user',
  490. icon: 'el-icon-user-solid',
  491. name: '账号管理',
  492. url: 'sa-view/app-user/app-user-list.html',
  493. childList: [{
  494. id: 'app-user-add',
  495. name: '添加',
  496. isShow: false
  497. },
  498. {
  499. id: 'app-user-edit',
  500. name: '更新',
  501. isShow: false
  502. },
  503. {
  504. id: 'app-user-del',
  505. name: '删除',
  506. isShow: false
  507. },
  508. ]
  509. },
  510. {
  511. id: 'tb-app',
  512. name: 'APK管理',
  513. icon: 'el-icon-apple',
  514. url: 'sa-view/tb-app/tb-app-list.html',
  515. childList: [{
  516. id: 'tb-app-add',
  517. name: 'APK管理添加',
  518. isShow: false
  519. },
  520. {
  521. id: 'tb-app-edit',
  522. name: 'APK管理更新',
  523. isShow: false
  524. },
  525. {
  526. id: 'tb-app-del',
  527. name: 'APK管理删除',
  528. isShow: false
  529. },
  530. ]
  531. },
  532. {
  533. id: 'tb-port-news',
  534. name: '口岸资讯管理',
  535. icon:'el-icon-document',
  536. url: 'sa-view/tb-port-news/tb-port-news-list.html',
  537. childList: [{
  538. id: 'tb-port-news-add',
  539. name: '口岸资讯添加',
  540. isShow: true
  541. },
  542. {
  543. id: 'tb-port-news-edit',
  544. name: '口岸资讯更新',
  545. isShow: true
  546. },
  547. {
  548. id: 'tb-port-news-del',
  549. name: '口岸资讯删除',
  550. isShow: true
  551. },
  552. ]
  553. },
  554. {
  555. id: 'tb-message',
  556. name: '通知消息',
  557. icon: 'el-icon-receiving',
  558. url: 'sa-view/tb-message/tb-message-list.html',
  559. childList: [{
  560. id: 'tb-message-add',
  561. name: '通知消息添加',
  562. isShow: false
  563. },
  564. {
  565. id: 'tb-message-edit',
  566. name: '通知消息更新',
  567. isShow: false
  568. },
  569. {
  570. id: 'tb-message-del',
  571. name: '通知消息删除',
  572. isShow: false
  573. },
  574. ]
  575. },
  576. {
  577. id: 'tb-banner',
  578. name: '轮播图',
  579. icon:'el-icon-picture-outline',
  580. url: 'sa-view/tb-banner/tb-banner-list.html',
  581. childList: [{
  582. id: 'tb-banner-add',
  583. name: '轮播图添加',
  584. isShow: true
  585. },
  586. {
  587. id: 'tb-banner-edit',
  588. name: '轮播图更新',
  589. isShow: true
  590. },
  591. {
  592. id: 'tb-banner-del',
  593. name: '轮播图删除',
  594. isShow: true
  595. },
  596. ]
  597. },
  598. {
  599. id: 'app-user-login-log',
  600. name: '登录日志',
  601. icon: 'el-icon-set-up',
  602. url: 'sa-view/app-user-login-log/app-user-login-log-list.html',
  603. childList: [{
  604. id: 'app-user-login-log-del',
  605. name: '删除',
  606. isShow: false
  607. }, ]
  608. },
  609. ]
  610. }, {
  611. id: 'trade-manager',
  612. name: '交易管理',
  613. parent: true,
  614. icon: 'el-icon-s-unfold',
  615. childList: [{
  616. id: 'level-one-market',
  617. icon: 'el-icon-school',
  618. name: '一级市场',
  619. parent: true,
  620. childList: [{
  621. id: 'listing-manage',
  622. name: '上架管理',
  623. icon: 'el-icon-shopping-cart-full',
  624. parent: true,
  625. childList: [{
  626. id: 'listing-management',
  627. name: '整车订单',
  628. icon: 'el-icon-notebook-2',
  629. url: 'sa-view/listing-management/listing-management.html',
  630. childList: [{
  631. id: 'tb-order-edit-price',
  632. name: '修改上架金额',
  633. isShow: false
  634. }]
  635. }]
  636. },
  637. {
  638. id: 'level-order',
  639. name: '交易订单',
  640. icon: 'el-icon-s-operation',
  641. parent: true,
  642. childList: [{
  643. id: 'ht-trade-settlement',
  644. name: '进境结算单',
  645. icon: 'el-icon-s-home',
  646. url: 'sa-view/ht-trade-settlement/ht-trade-settlement-list.html',
  647. childList: [{
  648. id: 'ht-trade-settlement-add',
  649. name: '添加订单',
  650. isShow: false
  651. },
  652. {
  653. id: 'ht-trade-settlement-edit',
  654. name: '修改订单',
  655. isShow: false
  656. },
  657. {
  658. id: 'tb-order-edit-price',
  659. name: '修改上架金额',
  660. isShow: false
  661. },
  662. {
  663. id: 'ht-trade-settlement-hzsconfirm',
  664. name: '互助社确认',
  665. isShow: false
  666. },
  667. ]
  668. },
  669. {
  670. id: 'tb-order',
  671. name: '边民购买订单',
  672. icon: 'el-icon-s-custom',
  673. url: 'sa-view/tb-order/tb-order-list.html',
  674. childList: [{
  675. id: 'tb-order-edit',
  676. name: '修改订单',
  677. isShow: false
  678. },
  679. {
  680. id: 'tb-order-del',
  681. name: '删除订单',
  682. isShow: false
  683. },
  684. {
  685. id: 'bank-info',
  686. name: '银行回执',
  687. isShow: false
  688. },
  689. {
  690. id: 'tb-order-deduction',
  691. name: '订单扣款',
  692. isShow: false
  693. },
  694. {
  695. id: 'tb-order-send009',
  696. name: '补推009',
  697. isShow: false
  698. },
  699. {
  700. id: 'tb-order-sendCXB001',
  701. name: '推送结关',
  702. isShow: false
  703. },
  704. ]
  705. },
  706. {
  707. id: 'tb-import-order',
  708. name: '进口申报单',
  709. icon: 'el-icon-s-unfold',
  710. url: 'sa-view/tb-import-order/tb-import-order-list.html',
  711. childList: [{
  712. id: 'tb-import-order-add',
  713. name: '订单添加',
  714. isShow: false
  715. },
  716. {
  717. id: 'tb-import-order-edit',
  718. name: '订单更新',
  719. isShow: false
  720. },
  721. {
  722. id: 'tb-import-order-del',
  723. name: '订单删除',
  724. isShow: false
  725. },
  726. ]
  727. },
  728. ]
  729. },
  730. {
  731. id: 'returns-chargebacks-list',
  732. name: '退运/单管理',
  733. parent: true,
  734. icon: 'el-icon-position',
  735. childList: [{
  736. id: 'ht-returns-settlement',
  737. name: '退运订单',
  738. icon: 'el-icon-c-scale-to-original',
  739. url: 'sa-view/ht-settlement-error/ht-trade-returns-list.html'
  740. },
  741. {
  742. id: 'ht-chargebacks-settlement',
  743. name: '退单订单',
  744. icon: 'el-icon-date',
  745. url: 'sa-view/ht-settlement-error/ht-trade-chargebacks-list.html'
  746. },
  747. ]
  748. },
  749. ]
  750. },
  751. {
  752. id: 'order-list',
  753. name: '二级市场',
  754. parent: true,
  755. icon: 'el-icon-office-building',
  756. childList: [{
  757. id: 'tb-import-order-judge',
  758. name: '互助委托协议审核',
  759. url: 'sa-view/tb-import-order/tb-import-order-judge.html',
  760. childList: [{
  761. id: 'tb-import-order-do-judge',
  762. name: '审核',
  763. isShow: false
  764. }, ]
  765. },
  766. {
  767. id: 'tb-orders',
  768. name: '订单管理',
  769. icon: 'el-icon-document-copy',
  770. url: 'sa-view/tb-orders/tb-orders-list.html',
  771. childList: [{
  772. id: 'tb-orders-add',
  773. name: '添加订单',
  774. isShow: false
  775. },
  776. {
  777. id: 'tb-orders-edit',
  778. name: '修改订单',
  779. isShow: false
  780. },
  781. {
  782. id: 'tb-orders-del',
  783. name: '删除订单',
  784. isShow: false
  785. },
  786. {
  787. id: 'tb-orders-deduction',
  788. name: '采购商补扣款',
  789. isShow: false
  790. },
  791. ]
  792. }
  793. ]
  794. },
  795. ]
  796. }, {
  797. id: 'transport-sys',
  798. name: '货运管理',
  799. parent: true,
  800. icon: 'el-icon-s-grid',
  801. childList: [{
  802. id: 'tb-driver',
  803. icon: 'el-icon-s-custom',
  804. name: '司机管理',
  805. url: 'sa-view/tb-driver/tb-driver-list.html',
  806. childList: [{
  807. id: 'tb-driver-add',
  808. name: '司机添加',
  809. isShow: true
  810. },
  811. {
  812. id: 'tb-driver-edit',
  813. name: '司机更新',
  814. isShow: true
  815. },
  816. {
  817. id: 'tb-driver-del',
  818. name: '司机删除',
  819. isShow: true
  820. },
  821. ]
  822. },
  823. {
  824. id: 'tb-vehicle',
  825. icon: 'el-icon-s-check',
  826. name: '车辆管理',
  827. url: 'sa-view/tb-vehicle/tb-vehicle-list.html',
  828. childList: [{
  829. id: 'tb-vehicle-add',
  830. name: '车辆添加',
  831. isShow: true
  832. },
  833. {
  834. id: 'tb-vehicle-edit',
  835. name: '车辆更新',
  836. isShow: true
  837. },
  838. {
  839. id: 'tb-vehicle-del',
  840. name: '车辆删除',
  841. isShow: true
  842. },
  843. ]
  844. }
  845. ]
  846. }, {
  847. id: 'tb-fee-manager',
  848. name: '费项管理',
  849. parent: true,
  850. icon: 'el-icon-s-shop',
  851. childList: [{
  852. id: 'tb-company-list',
  853. name: '收费企业',
  854. icon: 'el-icon-folder-opened',
  855. info: '企业管理表数据的维护',
  856. url: 'sa-view/tb-company/tb-company-list.html',
  857. childList: [{
  858. id: 'tb-company-add',
  859. name: '企业添加',
  860. isShow: false
  861. },
  862. {
  863. id: 'tb-company-edit',
  864. name: '企业更新',
  865. isShow: false
  866. },
  867. {
  868. id: 'tb-company-del',
  869. name: '企业删除',
  870. isShow: false
  871. },
  872. ]
  873. },
  874. {
  875. id: 'tb-fee-item-list',
  876. name: '费用管理',
  877. icon: 'el-icon-folder-opened',
  878. info: '费项管理表数据的维护',
  879. url: 'sa-view/tb-fee-item/tb-fee-item-list.html',
  880. childList: [{
  881. id: 'tb-fee-item-add',
  882. name: '费项添加',
  883. isShow: false
  884. },
  885. {
  886. id: 'tb-fee-item-edit',
  887. name: '费项更新',
  888. isShow: false
  889. },
  890. {
  891. id: 'tb-fee-item-del',
  892. name: '费项删除',
  893. isShow: false
  894. },
  895. ]
  896. },
  897. {
  898. id: 'tb-fee-item-record',
  899. name: '收费记录',
  900. icon: 'el-icon-folder-opened',
  901. url: 'sa-view/tb-fee-item-record/tb-fee-item-record-list.html'
  902. },
  903. ]
  904. }
  905. );