menu-list-sp.js 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953
  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. {
  622. id: 'level-order',
  623. name: '交易订单',
  624. icon: 'el-icon-s-operation',
  625. parent: true,
  626. childList: [{
  627. id: 'ht-trade-settlement',
  628. name: '进境结算单',
  629. icon: 'el-icon-s-home',
  630. url: 'sa-view/ht-trade-settlement/ht-trade-settlement-list.html',
  631. childList: [{
  632. id: 'ht-trade-settlement-add',
  633. name: '添加订单',
  634. isShow: false
  635. },
  636. {
  637. id: 'ht-trade-settlement-edit',
  638. name: '修改订单',
  639. isShow: false
  640. },
  641. {
  642. id: 'tb-order-edit-price',
  643. name: '修改上架金额',
  644. isShow: false
  645. },
  646. {
  647. id: 'ht-trade-settlement-hzsconfirm',
  648. name: '互助社确认',
  649. isShow: false
  650. },
  651. ]
  652. },
  653. {
  654. id: 'tb-order',
  655. name: '边民购买订单',
  656. icon: 'el-icon-s-custom',
  657. url: 'sa-view/tb-order/tb-order-list.html',
  658. childList: [{
  659. id: 'tb-order-edit',
  660. name: '修改订单',
  661. isShow: false
  662. },
  663. {
  664. id: 'tb-order-del',
  665. name: '删除订单',
  666. isShow: false
  667. },
  668. {
  669. id: 'bank-info',
  670. name: '银行回执',
  671. isShow: false
  672. },
  673. {
  674. id: 'tb-order-deduction',
  675. name: '订单扣款',
  676. isShow: false
  677. },
  678. {
  679. id: 'tb-order-send009',
  680. name: '补推009',
  681. isShow: false
  682. },
  683. {
  684. id: 'tb-order-sendCXB001',
  685. name: '推送结关',
  686. isShow: false
  687. },
  688. {
  689. id: 'tb-order-refund',
  690. name: '退款',
  691. isShow: false
  692. },
  693. ]
  694. },
  695. {
  696. id: 'tb-import-order',
  697. name: '进口申报单',
  698. icon: 'el-icon-s-unfold',
  699. url: 'sa-view/tb-import-order/tb-import-order-list.html',
  700. childList: [{
  701. id: 'tb-import-order-add',
  702. name: '订单添加',
  703. isShow: false
  704. },
  705. {
  706. id: 'tb-import-order-edit',
  707. name: '订单更新',
  708. isShow: false
  709. },
  710. {
  711. id: 'tb-import-order-del',
  712. name: '订单删除',
  713. isShow: false
  714. },
  715. ]
  716. },
  717. ]
  718. },
  719. {
  720. id: 'listing-manage',
  721. name: '上架管理',
  722. icon: 'el-icon-shopping-cart-full',
  723. parent: true,
  724. childList: [{
  725. id: 'listing-management',
  726. name: '整车订单',
  727. icon: 'el-icon-notebook-2',
  728. url: 'sa-view/listing-management/listing-management.html',
  729. childList: [{
  730. id: 'tb-order-edit-price',
  731. name: '修改上架金额',
  732. isShow: false
  733. }]
  734. }]
  735. },
  736. {
  737. id: 'tb-wallet-manager',
  738. name: '服务点管理',
  739. parent: true,
  740. icon:'el-icon-s-operation',
  741. childList: [
  742. {
  743. id: 'tb-wallet-topup',
  744. name: '充值记录',
  745. url: 'sa-view/tb-wallet-topup/tb-wallet-topup-list.html',
  746. icon:'el-icon-collection'
  747. },
  748. {
  749. id: 'tb-wallet-record',
  750. name: '扣除记录',
  751. url: 'sa-view/tb-wallet-record/tb-wallet-record-list.html',
  752. icon:'el-icon-notebook-1'
  753. },
  754. {
  755. id: 'tb-wallet-topdown',
  756. name: '提现记录',
  757. url: 'sa-view/tb-wallet-topdown/tb-wallet-topdown-list.html',
  758. icon:'el-icon-files'
  759. },
  760. ]
  761. },
  762. {
  763. id: 'returns-chargebacks-list',
  764. name: '退运/单管理',
  765. parent: true,
  766. icon: 'el-icon-position',
  767. childList: [{
  768. id: 'ht-returns-settlement',
  769. name: '退运订单',
  770. icon: 'el-icon-c-scale-to-original',
  771. url: 'sa-view/ht-settlement-error/ht-trade-returns-list.html'
  772. },
  773. {
  774. id: 'ht-chargebacks-settlement',
  775. name: '退单订单',
  776. icon: 'el-icon-date',
  777. url: 'sa-view/ht-settlement-error/ht-trade-chargebacks-list.html'
  778. },
  779. ]
  780. },
  781. ]
  782. },
  783. {
  784. id: 'order-list',
  785. name: '二级市场',
  786. parent: true,
  787. icon: 'el-icon-office-building',
  788. childList: [{
  789. id: 'tb-import-order-judge',
  790. name: '互助委托协议审核',
  791. url: 'sa-view/tb-import-order/tb-import-order-judge.html',
  792. childList: [{
  793. id: 'tb-import-order-do-judge',
  794. name: '审核',
  795. isShow: false
  796. }, ]
  797. },
  798. {
  799. id: 'tb-orders',
  800. name: '订单管理',
  801. icon: 'el-icon-document-copy',
  802. url: 'sa-view/tb-orders/tb-orders-list.html',
  803. childList: [{
  804. id: 'tb-orders-add',
  805. name: '添加订单',
  806. isShow: false
  807. },
  808. {
  809. id: 'tb-orders-edit',
  810. name: '修改订单',
  811. isShow: false
  812. },
  813. {
  814. id: 'tb-orders-del',
  815. name: '删除订单',
  816. isShow: false
  817. },
  818. {
  819. id: 'tb-orders-deduction',
  820. name: '采购商补扣款',
  821. isShow: false
  822. },
  823. ]
  824. }
  825. ]
  826. },
  827. ]
  828. }, {
  829. id: 'transport-sys',
  830. name: '货运管理',
  831. parent: true,
  832. icon: 'el-icon-s-grid',
  833. childList: [{
  834. id: 'tb-driver',
  835. icon: 'el-icon-s-custom',
  836. name: '司机管理',
  837. url: 'sa-view/tb-driver/tb-driver-list.html',
  838. childList: [{
  839. id: 'tb-driver-add',
  840. name: '司机添加',
  841. isShow: true
  842. },
  843. {
  844. id: 'tb-driver-edit',
  845. name: '司机更新',
  846. isShow: true
  847. },
  848. {
  849. id: 'tb-driver-del',
  850. name: '司机删除',
  851. isShow: true
  852. },
  853. ]
  854. },
  855. {
  856. id: 'tb-vehicle',
  857. icon: 'el-icon-s-check',
  858. name: '车辆管理',
  859. url: 'sa-view/tb-vehicle/tb-vehicle-list.html',
  860. childList: [{
  861. id: 'tb-vehicle-add',
  862. name: '车辆添加',
  863. isShow: true
  864. },
  865. {
  866. id: 'tb-vehicle-edit',
  867. name: '车辆更新',
  868. isShow: true
  869. },
  870. {
  871. id: 'tb-vehicle-del',
  872. name: '车辆删除',
  873. isShow: true
  874. },
  875. ]
  876. }
  877. ]
  878. }, {
  879. id: 'tb-fee-manager',
  880. name: '费项管理',
  881. parent: true,
  882. icon: 'el-icon-s-shop',
  883. childList: [{
  884. id: 'tb-company-list',
  885. name: '收费企业',
  886. icon: 'el-icon-folder-opened',
  887. info: '企业管理表数据的维护',
  888. url: 'sa-view/tb-company/tb-company-list.html',
  889. childList: [{
  890. id: 'tb-company-add',
  891. name: '企业添加',
  892. isShow: false
  893. },
  894. {
  895. id: 'tb-company-edit',
  896. name: '企业更新',
  897. isShow: false
  898. },
  899. {
  900. id: 'tb-company-del',
  901. name: '企业删除',
  902. isShow: false
  903. },
  904. ]
  905. },
  906. {
  907. id: 'tb-fee-item-list',
  908. name: '费用管理',
  909. icon: 'el-icon-folder-opened',
  910. info: '费项管理表数据的维护',
  911. url: 'sa-view/tb-fee-item/tb-fee-item-list.html',
  912. childList: [{
  913. id: 'tb-fee-item-add',
  914. name: '费项添加',
  915. isShow: false
  916. },
  917. {
  918. id: 'tb-fee-item-edit',
  919. name: '费项更新',
  920. isShow: false
  921. },
  922. {
  923. id: 'tb-fee-item-del',
  924. name: '费项删除',
  925. isShow: false
  926. },
  927. ]
  928. },
  929. {
  930. id: 'tb-fee-item-record',
  931. name: '收费记录',
  932. icon: 'el-icon-folder-opened',
  933. url: 'sa-view/tb-fee-item-record/tb-fee-item-record-list.html'
  934. },
  935. ]
  936. }
  937. );