menu-list-sp.js 21 KB

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