menu-list-sp.js 22 KB

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