menu-list-sp.js 19 KB

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