menu-list-sp.js 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968
  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. id: 'tb-app',
  97. name: 'APK管理',
  98. url: 'sa-view/tb-app/tb-app-list.html',
  99. childList: [{
  100. id: 'tb-app-add',
  101. name: 'APK管理添加',
  102. isShow: false
  103. },
  104. {
  105. id: 'tb-app-edit',
  106. name: 'APK管理更新',
  107. isShow: false
  108. },
  109. {
  110. id: 'tb-app-del',
  111. name: 'APK管理删除',
  112. isShow: false
  113. },
  114. ]
  115. },
  116. {
  117. id: 'sp-cfg-app',
  118. name: '系统对公配置',
  119. url: 'sa-view-sp/sp-cfg/app-cfg.html'
  120. },
  121. {
  122. id: 'sp-cfg-server',
  123. name: '服务器私有配置',
  124. url: 'sa-view-sp/sp-cfg/server-cfg.html'
  125. },
  126. {
  127. id: 'sp-cfg-cooper_entrust',
  128. name: '互助委托书校验配置',
  129. url: 'sa-view-sp/sp-cfg/cooper_entrust-cfg.html'
  130. },
  131. {
  132. id: 'tb-port-news',
  133. name: '口岸资讯管理',
  134. url: 'sa-view/tb-port-news/tb-port-news-list.html',
  135. childList: [{
  136. id: 'tb-port-news-add',
  137. name: '口岸资讯添加',
  138. isShow: true
  139. },
  140. {
  141. id: 'tb-port-news-edit',
  142. name: '口岸资讯更新',
  143. isShow: true
  144. },
  145. {
  146. id: 'tb-port-news-del',
  147. name: '口岸资讯删除',
  148. isShow: true
  149. },
  150. ]
  151. },
  152. {
  153. id: 'tb-banner',
  154. name: '轮播图',
  155. url: 'sa-view/tb-banner/tb-banner-list.html',
  156. childList: [{
  157. id: 'tb-banner-add',
  158. name: '轮播图添加',
  159. isShow: true
  160. },
  161. {
  162. id: 'tb-banner-edit',
  163. name: '轮播图更新',
  164. isShow: true
  165. },
  166. {
  167. id: 'tb-banner-del',
  168. name: '轮播图删除',
  169. isShow: true
  170. },
  171. ]
  172. },
  173. {
  174. id: 'tb-agreement',
  175. name: '隐私政策&协议',
  176. url: 'sa-view/tb-agreement/tb-agreement-list.html',
  177. childList: [{
  178. id: 'tb-agreement-add',
  179. name: '协议表添加',
  180. isShow: true
  181. },
  182. {
  183. id: 'tb-agreement-edit',
  184. name: '协议表更新',
  185. isShow: true
  186. },
  187. {
  188. id: 'tb-agreement-del',
  189. name: '协议表删除',
  190. isShow: true
  191. },
  192. ]
  193. },
  194. ]
  195. }, {
  196. id: 'tb-base-data',
  197. name: '基础数据管理',
  198. parent: true,
  199. icon: 'el-icon-copy-document',
  200. childList: [{
  201. id: 'tb-trade-area',
  202. icon: 'el-icon-s-management',
  203. name: '场所管理',
  204. url: 'sa-view/tb-trade-area/tb-trade-area-list.html',
  205. childList: [{
  206. id: 'tb-trade-area-add',
  207. name: '添加场所',
  208. isShow: false
  209. },
  210. {
  211. id: 'tb-trade-area-edit',
  212. name: '更新场所',
  213. isShow: false
  214. },
  215. {
  216. id: 'tb-trade-area-del',
  217. name: '删除场所',
  218. isShow: false
  219. },
  220. ]
  221. },
  222. {
  223. id: 'tb-group',
  224. icon: 'el-icon-s-data',
  225. name: '互助组管理',
  226. url: 'sa-view/tb-group/tb-group-list.html',
  227. childList: [{
  228. id: 'tb-group-add',
  229. name: '互助组添加',
  230. isShow: false
  231. },
  232. {
  233. id: 'tb-group-edit',
  234. name: '互助组更新',
  235. isShow: false
  236. },
  237. {
  238. id: 'tb-group-del',
  239. name: '互助组删除',
  240. isShow: false
  241. },
  242. {
  243. id: 'tb-member-list',
  244. name: '查寻组内成员',
  245. isShow: false
  246. },
  247. ]
  248. },
  249. {
  250. id: 'tb-people',
  251. icon: 'el-icon-user',
  252. name: '边民管理',
  253. url: 'sa-view/tb-people/tb-people-list.html',
  254. childList: [{
  255. id: 'tb-people-add',
  256. name: '边民添加',
  257. isShow: false
  258. },
  259. {
  260. id: 'tb-people-bind-shop',
  261. name: '绑定店铺',
  262. isShow: false
  263. },
  264. {
  265. id: 'tb-people-edit',
  266. name: '边民更新',
  267. isShow: false
  268. },
  269. {
  270. id: 'tb-people-del',
  271. name: '边民删除',
  272. isShow: false
  273. },
  274. ]
  275. },
  276. {
  277. id: 'tb-people-tax-account',
  278. icon: 'el-icon-folder-opened',
  279. name: '个体户(开票)',
  280. url: 'sa-view/tb-people-tax-account/tb-people-tax-account-list.html',
  281. childList: [{
  282. id: 'tb-people-tax-account-add',
  283. name: '个体户(开票)添加',
  284. isShow: false
  285. },
  286. {
  287. id: 'tb-people-tax-account-edit',
  288. name: '个体户(开票)更新',
  289. isShow: false
  290. },
  291. {
  292. id: 'tb-people-tax-account-del',
  293. name: '个体户(开票)删除',
  294. isShow: false
  295. },
  296. ]
  297. },
  298. // {
  299. // id: 'tb-enterprise-judge',
  300. // icon: 'el-icon-s-check',
  301. // name: '商户审核',
  302. // url: 'sa-view/tb-enterprise/tb-enterprise-judge.html',
  303. // childList: [{
  304. // id: 'tb-enterprise-judge',
  305. // name: '商户审核',
  306. // isShow: false
  307. // }, ]
  308. // },
  309. // {
  310. // id: 'tb-enterprise',
  311. // icon: 'el-icon-film',
  312. // name: '商户列表',
  313. // url: 'sa-view/tb-enterprise/tb-enterprise-list.html',
  314. // childList: [{
  315. // id: 'tb-enterprise-add',
  316. // name: '商家添加',
  317. // isShow: false
  318. // },
  319. // {
  320. // id: 'tb-enterprise-edit',
  321. // name: '商家更新',
  322. // isShow: false
  323. // },
  324. // {
  325. // id: 'tb-enterprise-del',
  326. // name: '商家删除',
  327. // isShow: false
  328. // },
  329. // ]
  330. // },
  331. {
  332. id: 'tb-shop',
  333. icon: 'el-icon-receiving',
  334. name: '商铺管理',
  335. url: 'sa-view/tb-shop/tb-shop-list.html',
  336. childList: [{
  337. id: 'tb-shop-add',
  338. name: '商铺添加',
  339. isShow: false
  340. },
  341. {
  342. id: 'tb-shop-edit',
  343. name: '商铺更新',
  344. isShow: false
  345. },
  346. {
  347. id: 'tb-shop-del',
  348. name: '商铺删除',
  349. isShow: false
  350. },
  351. ]
  352. },
  353. {
  354. id: 'tb-purchaser-judge',
  355. icon: 'el-icon-s-check',
  356. name: '企业收购商审核',
  357. url: 'sa-view/tb-purchaser/tb-purchaser-judge.html',
  358. childList: [{
  359. id: 'tb-purchaser-judge',
  360. name: '收购商审核',
  361. isShow: false
  362. }, ]
  363. },
  364. {
  365. id: 'tb-purchaser',
  366. icon: 'el-icon-film',
  367. name: '企业收购商',
  368. url: 'sa-view/tb-purchaser/tb-purchaser-list.html',
  369. childList: [{
  370. id: 'tb-purchaser-add',
  371. name: '收购商添加',
  372. isShow: false
  373. },
  374. {
  375. id: 'tb-purchaser-edit',
  376. name: '收购商更新',
  377. isShow: false
  378. },
  379. {
  380. id: 'tb-purchaser-del',
  381. name: '收购商删除',
  382. isShow: false
  383. },
  384. ]
  385. },
  386. {
  387. id: 'tb-purchaser-personal-judge',
  388. icon: 'el-icon-s-check',
  389. name: '个人收购商审核',
  390. url: 'sa-view/tb-purchaser-personal/tb-purchaser-personal-judge.html',
  391. childList: [{
  392. id: 'tb-purchaser-judge',
  393. name: '收购商审核',
  394. isShow: false
  395. }, ]
  396. },
  397. {
  398. id: 'tb-purchaser-personal',
  399. icon: 'el-icon-film',
  400. name: '个人收购商',
  401. url: 'sa-view/tb-purchaser-personal/tb-purchaser-personal-list.html',
  402. childList: [{
  403. id: 'tb-purchaser-add',
  404. name: '收购商添加',
  405. isShow: false
  406. },
  407. {
  408. id: 'tb-purchaser-edit',
  409. name: '收购商更新',
  410. isShow: false
  411. },
  412. {
  413. id: 'tb-purchaser-del',
  414. name: '收购商删除',
  415. isShow: false
  416. },
  417. ]
  418. },
  419. {
  420. id: 'tb-cooperative',
  421. icon: 'el-icon-film',
  422. name: '合作社列表',
  423. url: 'sa-view/tb-cooperative/tb-cooperative-list.html',
  424. childList: [{
  425. id: 'tb-cooperative-add',
  426. name: '添加合作社',
  427. isShow: false
  428. },
  429. {
  430. id: 'tb-cooperative-edit',
  431. name: '更新合作社',
  432. isShow: false
  433. },
  434. {
  435. id: 'tb-cooperative-del',
  436. name: '删除合作社',
  437. isShow: false
  438. },
  439. ]
  440. },
  441. {
  442. id: 'tb-message',
  443. name: '通知消息',
  444. icon: 'el-icon-receiving',
  445. url: 'sa-view/tb-message/tb-message-list.html',
  446. childList: [{
  447. id: 'tb-message-add',
  448. name: '通知消息添加',
  449. isShow: false
  450. },
  451. {
  452. id: 'tb-message-edit',
  453. name: '通知消息更新',
  454. isShow: false
  455. },
  456. {
  457. id: 'tb-message-del',
  458. name: '通知消息删除',
  459. isShow: false
  460. },
  461. ]
  462. },
  463. {
  464. id: 'app-user-login-log',
  465. name: '移动端登录日志',
  466. icon: 'el-icon-receiving',
  467. url: 'sa-view/app-user-login-log/app-user-login-log-list.html',
  468. childList: [{
  469. id: 'app-user-login-log-del',
  470. name: '删除',
  471. isShow: false
  472. }, ]
  473. },
  474. ]
  475. }, {
  476. id: 'app-setting',
  477. name: '移动端管理',
  478. icon: 'el-icon-mobile-phone',
  479. parent: true,
  480. childList: [{
  481. id: 'app-menu',
  482. icon: 'el-icon-s-operation',
  483. name: '菜单管理',
  484. url: 'sa-view/app-menu/app-menu-list.html',
  485. childList: [{
  486. id: 'app-menu-add',
  487. name: 'app菜单管理添加',
  488. isShow: false
  489. },
  490. {
  491. id: 'app-menu-edit',
  492. name: 'app菜单管理更新',
  493. isShow: false
  494. },
  495. {
  496. id: 'app-menu-del',
  497. name: 'app菜单管理删除',
  498. isShow: false
  499. },
  500. ]
  501. },
  502. {
  503. id: 'app-role',
  504. icon: 'el-icon-user-solid',
  505. name: '角色管理',
  506. url: 'sa-view/app-role/app-role-list.html',
  507. childList: [{
  508. id: 'app-role-add',
  509. name: '添加',
  510. isShow: false
  511. },
  512. {
  513. id: 'app-role-edit',
  514. name: '更新',
  515. isShow: false
  516. },
  517. {
  518. id: 'app-role-del',
  519. name: '删除',
  520. isShow: false
  521. },
  522. ]
  523. },
  524. {
  525. id: 'app-user',
  526. icon: 'el-icon-user-solid',
  527. name: '账号管理',
  528. url: 'sa-view/app-user/app-user-list.html',
  529. childList: [{
  530. id: 'app-user-add',
  531. name: '添加',
  532. isShow: false
  533. },
  534. {
  535. id: 'app-user-edit',
  536. name: '更新',
  537. isShow: false
  538. },
  539. {
  540. id: 'app-user-del',
  541. name: '删除',
  542. isShow: false
  543. },
  544. ]
  545. },
  546. ]
  547. }, {
  548. id: 'trade-manager',
  549. name: '贸易管理',
  550. parent: true,
  551. icon: 'el-icon-s-unfold',
  552. childList: [
  553. {
  554. id: 'tb-goods-units',
  555. name: '计价单位',
  556. url: 'sa-view/tb-goods-units/tb-goods-units-list.html',
  557. childList: [{
  558. id: 'tb-goods-units-add',
  559. name: '计价单位添加',
  560. isShow: false
  561. },
  562. {
  563. id: 'tb-goods-units-edit',
  564. name: '计价单位更新',
  565. isShow: false
  566. },
  567. {
  568. id: 'tb-goods-units-del',
  569. name: '计价单位删除',
  570. isShow: false
  571. },
  572. ]
  573. },
  574. {
  575. id: 'tb-goods-type',
  576. name: '商品分类',
  577. url: 'sa-view/tb-goods-type/tb-goods-type-list.html',
  578. childList: [{
  579. id: 'tb-goods-type-add',
  580. name: '商品分类添加',
  581. isShow: true
  582. },
  583. {
  584. id: 'tb-goods-type-edit',
  585. name: '商品分类更新',
  586. isShow: true
  587. },
  588. {
  589. id: 'tb-goods-type-del',
  590. name: '商品分类删除',
  591. isShow: true
  592. },
  593. ]
  594. },
  595. {
  596. id: 'tb-goods',
  597. name: '监管商品',
  598. url: 'sa-view/tb-goods/tb-goods-list.html',
  599. childList: [{
  600. id: 'tb-goods-add',
  601. name: '商品添加',
  602. isShow: false
  603. },
  604. {
  605. id: 'tb-goods-edit',
  606. name: '商品更新',
  607. isShow: false
  608. },
  609. {
  610. id: 'tb-goods-del',
  611. name: '商品删除',
  612. isShow: false
  613. },
  614. ]
  615. },
  616. {
  617. id: 'listing-manage',
  618. name: '上架管理',
  619. parent: true,
  620. childList: [{
  621. id: 'listing-management',
  622. name: '商品整车列表',
  623. url: 'sa-view/listing-management/listing-management.html',
  624. childList: [{
  625. id: 'tb-order-edit-price',
  626. name: '修改上架金额',
  627. isShow: false
  628. }]
  629. }]
  630. },
  631. {
  632. id: 'returns-chargebacks-list',
  633. name: '退运/单管理',
  634. parent: true,
  635. //icon: 'el-icon-s-grid',
  636. childList: [
  637. {
  638. id: 'ht-returns-settlement',
  639. name: '退运订单',
  640. url: 'sa-view/ht-settlement-error/ht-trade-returns-list.html'
  641. },
  642. {
  643. id: 'ht-chargebacks-settlement',
  644. name: '退单订单',
  645. url: 'sa-view/ht-settlement-error/ht-trade-chargebacks-list.html'
  646. },
  647. ]
  648. },
  649. {
  650. id: 'order-list',
  651. name: '订单管理',
  652. parent: true,
  653. //icon: 'el-icon-s-grid',
  654. childList: [{
  655. id: 'ht-trade-settlement',
  656. name: '进境结算单',
  657. url: 'sa-view/ht-trade-settlement/ht-trade-settlement-list.html',
  658. childList: [{
  659. id: 'ht-trade-settlement-add',
  660. name: '添加订单',
  661. isShow: false
  662. },
  663. {
  664. id: 'ht-trade-settlement-edit',
  665. name: '修改订单',
  666. isShow: false
  667. },
  668. {
  669. id: 'tb-order-edit-price',
  670. name: '修改上架金额',
  671. isShow: false
  672. },
  673. {
  674. id: 'ht-trade-settlement-del',
  675. name: '删除订单',
  676. isShow: false
  677. },
  678. {
  679. id: 'ht-trade-settlement-hzsconfirm',
  680. name: '互助社确认',
  681. isShow: false
  682. },
  683. ]
  684. },
  685. {
  686. id: 'tb-order',
  687. name: '边民购买订单',
  688. url: 'sa-view/tb-order/tb-order-list.html',
  689. childList: [{
  690. id: 'tb-order-add',
  691. name: '添加订单',
  692. isShow: false
  693. },
  694. {
  695. id: 'tb-order-edit',
  696. name: '修改订单',
  697. isShow: false
  698. },
  699. {
  700. id: 'tb-order-del',
  701. name: '删除订单',
  702. isShow: false
  703. },
  704. {
  705. id: 'bank-info',
  706. name: '银行回执',
  707. isShow: false
  708. },
  709. {
  710. id: 'tb-order-deduction',
  711. name: '订单扣款',
  712. isShow: false
  713. },
  714. {
  715. id: 'tb-order-send009',
  716. name: '补推009',
  717. isShow: false
  718. },
  719. {
  720. id: 'tb-order-sendCXB001',
  721. name: '推送结关',
  722. isShow: false
  723. },
  724. ]
  725. },
  726. /*{
  727. id: 'bank-info',
  728. name: '银行回执',
  729. url: 'sa-view/bank-info/bank-info-list.html',
  730. childList: [
  731. {
  732. id: 'bank-info-add',
  733. name: '',
  734. isShow: false
  735. },
  736. {
  737. id: 'bank-info-edit',
  738. name: '',
  739. isShow: false
  740. },
  741. {
  742. id: 'bank-info-del',
  743. name: '',
  744. isShow: false
  745. },
  746. ]
  747. },*/
  748. {
  749. id: 'tb-import-order',
  750. name: '进口申报单',
  751. url: 'sa-view/tb-import-order/tb-import-order-list.html',
  752. childList: [{
  753. id: 'tb-import-order-add',
  754. name: '订单添加',
  755. isShow: false
  756. },
  757. {
  758. id: 'tb-import-order-edit',
  759. name: '订单更新',
  760. isShow: false
  761. },
  762. {
  763. id: 'tb-import-order-del',
  764. name: '订单删除',
  765. isShow: false
  766. },
  767. ]
  768. },
  769. {
  770. id: 'tb-import-order-judge',
  771. name: '互助委托协议审核',
  772. url: 'sa-view/tb-import-order/tb-import-order-judge.html',
  773. childList: [{
  774. id: 'tb-import-order-do-judge',
  775. name: '审核',
  776. isShow: false
  777. }, ]
  778. },
  779. {
  780. id: 'tb-import-goods',
  781. name: '进口申报单商品管理',
  782. url: 'sa-view/tb-import-goods/tb-import-goods-list.html',
  783. childList: [{
  784. id: 'tb-import-goods-add',
  785. name: '订单添加',
  786. isShow: false
  787. },
  788. {
  789. id: 'tb-import-goods-edit',
  790. name: '订单更新',
  791. isShow: false
  792. },
  793. {
  794. id: 'tb-import-goods-del',
  795. name: '订单删除',
  796. isShow: false
  797. },
  798. ]
  799. },
  800. {
  801. id: 'tb-orders',
  802. name: '二级市场订单',
  803. url: 'sa-view/tb-orders/tb-orders-list.html',
  804. childList: [{
  805. id: 'tb-orders-add',
  806. name: '添加订单',
  807. isShow: false
  808. },
  809. {
  810. id: 'tb-orders-edit',
  811. name: '修改订单',
  812. isShow: false
  813. },
  814. {
  815. id: 'tb-orders-del',
  816. name: '删除订单',
  817. isShow: false
  818. },
  819. {
  820. id: 'tb-orders-deduction',
  821. name: '采购商补扣款',
  822. isShow: false
  823. },
  824. ]
  825. }
  826. ]
  827. },
  828. ]
  829. }, {
  830. id: 'transport-sys',
  831. name: '货运管理',
  832. parent: true,
  833. icon: 'el-icon-s-grid',
  834. childList: [{
  835. id: 'tb-driver',
  836. icon: 'el-icon-s-custom',
  837. name: '司机管理',
  838. url: 'sa-view/tb-driver/tb-driver-list.html',
  839. childList: [{
  840. id: 'tb-driver-add',
  841. name: '司机添加',
  842. isShow: true
  843. },
  844. {
  845. id: 'tb-driver-edit',
  846. name: '司机更新',
  847. isShow: true
  848. },
  849. {
  850. id: 'tb-driver-del',
  851. name: '司机删除',
  852. isShow: true
  853. },
  854. ]
  855. },
  856. {
  857. id: 'tb-vehicle',
  858. icon: 'el-icon-s-check',
  859. name: '车辆管理',
  860. url: 'sa-view/tb-vehicle/tb-vehicle-list.html',
  861. childList: [{
  862. id: 'tb-vehicle-add',
  863. name: '车辆添加',
  864. isShow: true
  865. },
  866. {
  867. id: 'tb-vehicle-edit',
  868. name: '车辆更新',
  869. isShow: true
  870. },
  871. {
  872. id: 'tb-vehicle-del',
  873. name: '车辆删除',
  874. isShow: true
  875. },
  876. ]
  877. }
  878. ]
  879. }, {
  880. id: 'tb-fee-manager',
  881. name: '费项管理',
  882. parent: true,
  883. icon: 'el-icon-s-shop',
  884. childList: [{
  885. id: 'tb-company-list',
  886. name: '收费企业',
  887. icon: 'el-icon-folder-opened',
  888. info: '企业管理表数据的维护',
  889. url: 'sa-view/tb-company/tb-company-list.html',
  890. childList: [{
  891. id: 'tb-company-add',
  892. name: '企业添加',
  893. isShow: false
  894. },
  895. {
  896. id: 'tb-company-edit',
  897. name: '企业更新',
  898. isShow: false
  899. },
  900. {
  901. id: 'tb-company-del',
  902. name: '企业删除',
  903. isShow: false
  904. },
  905. ]
  906. },
  907. {
  908. id: 'tb-fee-item-list',
  909. name: '费用管理',
  910. icon: 'el-icon-folder-opened',
  911. info: '费项管理表数据的维护',
  912. url: 'sa-view/tb-fee-item/tb-fee-item-list.html',
  913. childList: [{
  914. id: 'tb-fee-item-add',
  915. name: '费项添加',
  916. isShow: false
  917. },
  918. {
  919. id: 'tb-fee-item-edit',
  920. name: '费项更新',
  921. isShow: false
  922. },
  923. {
  924. id: 'tb-fee-item-del',
  925. name: '费项删除',
  926. isShow: false
  927. },
  928. ]
  929. },
  930. // {
  931. // id: 'tb-people-profit-list',
  932. // name: '边民收益设置',
  933. // icon: 'el-icon-folder-opened',
  934. // info: '费项管理表数据的维护',
  935. // url: 'sa-view/tb-people-profit/tb-people-profit-set.html',
  936. // childList: [{
  937. // id: 'tb-people-profit',
  938. // name: '收益设置',
  939. // isShow: false
  940. // }, ]
  941. // },
  942. {
  943. id: 'tb-fee-item-record',
  944. name: '收费记录',
  945. icon: 'el-icon-folder-opened',
  946. url: 'sa-view/tb-fee-item-record/tb-fee-item-record-list.html'
  947. },
  948. // {
  949. // id: 'tb-people-profit-record-list',
  950. // name: '边民收益记录',
  951. // icon: 'el-icon-folder-opened',
  952. // url: 'sa-view/tb-people-profit-record/tb-people-profit-record-list.html',
  953. // childList: [
  954. // ]
  955. // }
  956. ]
  957. }
  958. );