menu-list-sp.js 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918
  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. parent:true,
  33. info: '对本系统的各种监控',
  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. },
  54. {
  55. id: 'sp-cfg',
  56. name: '系统配置',
  57. parent:true,
  58. icon: 'el-icon-setting',
  59. info: '有关系统的一些配置',
  60. childList: [{
  61. id: 'sp-cfg-app',
  62. name: '系统对公配置',
  63. url: 'sa-view-sp/sp-cfg/app-cfg.html'
  64. },
  65. {
  66. id: 'sp-cfg-server',
  67. name: '服务器私有配置',
  68. url: 'sa-view-sp/sp-cfg/server-cfg.html'
  69. },
  70. ]
  71. }, {
  72. id: 'sys-dict',
  73. name: '系统字典',
  74. icon: 'el-icon-setting',
  75. info: '系统字典配置',
  76. childList: [{
  77. id: 'sys-dict-list',
  78. name: '字典列表',
  79. url: 'sa-view/sys-dict/sys-dict-list.html'
  80. }, ]
  81. },
  82. {
  83. id: 'auth',
  84. parent: true,
  85. name: '权限控制',
  86. icon: 'el-icon-unlock',
  87. childList: [{
  88. id: 'role-list',
  89. name: '角色列表',
  90. url: 'sa-view-sp/sp-role/role-list.html',
  91. },
  92. {
  93. id: 'admin-list',
  94. name: '管理员列表',
  95. url: 'sa-view-sp/sp-admin/admin-list.html',
  96. },
  97. {
  98. id: 'customer-auth-list',
  99. name: '客户权限列表',
  100. url: 'sa-view/tb-costomer/tb-menu-list.html',
  101. },
  102. {
  103. id: 'partner-auth-list',
  104. name: '合作伙伴列表',
  105. url: 'sa-view/tb-partner/tb-menu-list.html',
  106. },
  107. ]
  108. }, {
  109. id: 'tb-costomer',
  110. name: '客户管理',
  111. parent: true,
  112. icon: 'el-icon-s-custom',
  113. childList: [{
  114. id: 'tb-costomer-list',
  115. name: '客户列表',
  116. url: 'sa-view/tb-costomer/tb-costomer-list.html'
  117. },
  118. {
  119. id: 'tb-costomer-add',
  120. name: '添加',
  121. isShow: false
  122. },
  123. {
  124. id: 'tb-costomer-judge',
  125. name: '审核',
  126. isShow: false
  127. },
  128. {
  129. id: 'tb-costomer-del',
  130. name: '删除',
  131. isShow: false
  132. },
  133. {
  134. id: 'tb-costomer-edit',
  135. name: '修改',
  136. isShow: false
  137. },
  138. {
  139. id: 'tb-costomer-account',
  140. name: '账户',
  141. isShow: false,
  142. childList: [{
  143. id: 'tb-costomer-account-charge',
  144. name: '充值',
  145. isShow: false,
  146. }]
  147. },
  148. {
  149. id: 'tb-costomer-user',
  150. name: '用户管理',
  151. isShow: false,
  152. childList: [{
  153. id: 'tb-costomer-user-add',
  154. name: '添加',
  155. isShow: false,
  156. },
  157. {
  158. id: 'tb-costomer-user-del',
  159. name: '删除',
  160. isShow: false,
  161. },
  162. {
  163. id: 'tb-costomer-user-edit',
  164. name: '编辑',
  165. isShow: false,
  166. },
  167. ]
  168. },
  169. ]
  170. },
  171. {
  172. id: 'tb-costomer-maintain',
  173. name: '信息维护',
  174. parent: true,
  175. icon: 'el-icon-s-custom',
  176. childList: [{
  177. id: 'tb-costomer-maintain-list',
  178. name: '企业信息',
  179. icon: 'el-icon-s-custom',
  180. url: 'sa-view/tb-costomer/tb-costomer-maintain.html',
  181. childList: [{
  182. id: 'tb-costomer-maintain-edit',
  183. name: '编辑信息',
  184. isShow: false
  185. },
  186. {
  187. id: 'tb-costomer-maintain-account',
  188. name: '账户管理',
  189. isShow: false
  190. },
  191. {
  192. id: 'tb-costomer-maintain-user',
  193. name: '用户管理',
  194. parent: true,
  195. isShow: false,
  196. childList: [{
  197. id: 'tb-costomer-maintain-user-add',
  198. name: '添加',
  199. isShow: false,
  200. },
  201. {
  202. id: 'tb-costomer-maintain-user-del',
  203. name: '删除',
  204. isShow: false,
  205. },
  206. {
  207. id: 'tb-costomer-maintain-user-edit',
  208. name: '编辑',
  209. isShow: false,
  210. },
  211. ]
  212. },
  213. ]
  214. }, ]
  215. }, {
  216. id: 'tb-partner',
  217. name: '合作伙伴',
  218. parent: true,
  219. icon: 'el-icon-s-custom',
  220. childList: [{
  221. id: 'tb-partner-list',
  222. name: '信息管理',
  223. url: 'sa-view/tb-partner/tb-partner-list.html',
  224. childList: [{
  225. id: 'tb-partner-add',
  226. name: '添加伙伴',
  227. isShow: false,
  228. },
  229. {
  230. id: 'tb-partner-del',
  231. name: '删除伙伴',
  232. isShow: false,
  233. },
  234. {
  235. id: 'tb-partner-edit',
  236. name: '编辑伙伴',
  237. isShow: false,
  238. },
  239. {
  240. id: 'tb-partner-user',
  241. name: '伙伴用户',
  242. isShow: false,
  243. parent: true,
  244. childList: [{
  245. id: 'tb-partner-user-add',
  246. name: '添加用户',
  247. isShow: false,
  248. },
  249. {
  250. id: 'tb-partner-user-edit',
  251. name: '编辑用户',
  252. isShow: false,
  253. },
  254. {
  255. id: 'tb-partner-user-del',
  256. name: '删除用户',
  257. isShow: false,
  258. },
  259. ]
  260. },
  261. ],
  262. }, ]
  263. }, {
  264. id: 'tb-car',
  265. name: '车辆管理',
  266. parent: true,
  267. icon: 'el-icon-s-platform',
  268. childList: [{
  269. id: 'tb-car-list',
  270. name: '车辆列表',
  271. icon: 'el-icon-s-platform',
  272. url: 'sa-view/tb-car/tb-car-list.html',
  273. childList: [{
  274. id: 'tb-car-add',
  275. name: '添加车辆',
  276. isShow: false
  277. },
  278. {
  279. id: 'tb-car-edit',
  280. name: '编辑车辆',
  281. isShow: false
  282. },
  283. {
  284. id: 'tb-car-del',
  285. name: '删除车辆',
  286. isShow: false
  287. },
  288. {
  289. id: 'tb-car-import',
  290. name: '批量导入',
  291. isShow: false
  292. },
  293. ]
  294. },
  295. {
  296. id: 'tb-mild-car-list',
  297. name: '4.2~9.6车备案',
  298. icon: 'el-icon-s-platform',
  299. url: 'sa-view/tb-mild-car/tb-mild-car-list.html',
  300. childList: [{
  301. id: 'tb-mild-car-add',
  302. name: '添加车辆',
  303. isShow: false
  304. },
  305. {
  306. id: 'tb-mild-car-edit',
  307. name: '编辑车辆',
  308. isShow: false
  309. },
  310. {
  311. id: 'tb-mild-car-del',
  312. name: '删除车辆',
  313. isShow: false
  314. },
  315. {
  316. id: 'tb-mild-car-export',
  317. name: '批量导出',
  318. isShow: false
  319. },
  320. ]
  321. }
  322. ]
  323. }, {
  324. id: 'tb-business-item',
  325. name: '作业管理',
  326. icon: 'el-icon-edit-outline',
  327. parent: true,
  328. childList: [{
  329. id: 'tb-business-item-pick-list',
  330. name: '我要接单',
  331. url: 'sa-view/tb-partner/tb-business-pick-list.html',
  332. childList: [{
  333. id: 'tb-business-item-pick',
  334. name: '接单',
  335. isShow: false,
  336. }]
  337. },
  338. {
  339. id: 'tb-business-item-list',
  340. name: '作业订单',
  341. url: 'sa-view/tb-partner/tb-business-item-list.html',
  342. childList: [{
  343. id: 'tb-business-item-confirm',
  344. name: '接单确认',
  345. isShow: false,
  346. }, ]
  347. },
  348. ]
  349. }, {
  350. id: 'tb-business',
  351. name: '业务管理',
  352. icon: 'el-icon-edit-outline',
  353. parent: true,
  354. childList: [{
  355. id: 'tb-car-disincle-list',
  356. name: '业务管理',
  357. url: 'sa-view/tb-business/tb-car-disincle-list.html',
  358. childList: [{
  359. id: 'tb-flex-business-add',
  360. name: '添加业务',
  361. isShow: false
  362. },
  363. {
  364. id: 'tb-flex-business-edit',
  365. name: '编辑业务',
  366. isShow: false
  367. },
  368. {
  369. id: 'tb-flex-business-del',
  370. name: '删除业务',
  371. isShow: false
  372. },
  373. {
  374. id: 'tb-flex-business-pay',
  375. name: '手工缴费',
  376. isShow: false
  377. },
  378. {
  379. id: 'tb-business-car-bind',
  380. name: '车辆绑定',
  381. isShow: false
  382. },
  383. {
  384. id: 'tb-flex-business-confirm',
  385. name: '账单确认',
  386. isShow: false
  387. },
  388. {
  389. id: 'tb-business-zx-print',
  390. name: '装卸打印',
  391. isShow: false
  392. },
  393. {
  394. id: 'tb-business-item-supplement',
  395. name: '补录缴费',
  396. isShow: false
  397. },
  398. ]
  399. },
  400. {
  401. id: 'tb-supplement-list',
  402. name: '补录订单',
  403. url: 'sa-view/tb-business/tb-supplement-list.html',
  404. childList: [{
  405. id: 'tb-supplement-add',
  406. name: '添加',
  407. isShow: false
  408. },
  409. {
  410. id: 'tb-supplement-edit',
  411. name: '修改',
  412. isShow: false
  413. },
  414. {
  415. id: 'tb-supplement-del',
  416. name: '删除',
  417. isShow: false
  418. },
  419. {
  420. id: 'tb-supplement-push',
  421. name: '发起流程',
  422. isShow: false
  423. },
  424. ]
  425. }
  426. ]
  427. }, {
  428. id: 'tb-item-type',
  429. name: '收费项管理',
  430. icon: 'el-icon-notebook-2',
  431. parent: true,
  432. childList: [{
  433. id: 'tb-goods-list',
  434. name: '业务项管理',
  435. url: 'sa-view/tb-goods/tb-goods-list.html',
  436. childList: [{
  437. id: 'tb-goods-add',
  438. name: '添加业务项',
  439. isShow: false
  440. },
  441. {
  442. id: 'tb-goods-edit',
  443. name: '编辑业务项',
  444. isShow: false
  445. },
  446. {
  447. id: 'tb-goods-del',
  448. name: '删除业务项',
  449. isShow: false
  450. },
  451. {
  452. id: 'tb-goods-item-type',
  453. name: '编辑收费项',
  454. isShow: false
  455. },
  456. ]
  457. }, {
  458. id: 'tb-item-type-list',
  459. name: '业务类型管理',
  460. url: 'sa-view/tb-item-type/tb-item-type-list.html',
  461. childList: [{
  462. id: 'tb-item-type-add',
  463. name: '添加收费项',
  464. isShow: false
  465. },
  466. {
  467. id: 'tb-item-type-edit',
  468. name: '编辑收费项',
  469. isShow: false
  470. },
  471. {
  472. id: 'tb-item-type-relation',
  473. name: '收费明细',
  474. isShow: false
  475. },
  476. {
  477. id: 'tb-item-type-del',
  478. name: '删除收费项',
  479. isShow: false
  480. },
  481. ]
  482. },
  483. {
  484. id: 'tb-item-re-list',
  485. name: '车型管理',
  486. url: 'sa-view/tb-item-type/tb-item-list.html',
  487. childList: [{
  488. id: 'tb-item-manager-add',
  489. name: '添加明细',
  490. isShow: false
  491. },
  492. {
  493. id: 'tb-item-manager-del',
  494. name: '删除明细',
  495. isShow: false
  496. },
  497. {
  498. id: 'tb-item-manager-edit',
  499. name: '修改明细',
  500. isShow: false
  501. },
  502. ]
  503. },
  504. {
  505. id: 'tb-sort-group',
  506. name: '其他业务设置',
  507. url: 'sa-view/tb-sort-group/tb-sort-group-list.html',
  508. childList: [{
  509. id: 'tb-sort-group-add',
  510. name: '添加',
  511. isShow: false
  512. },
  513. {
  514. id: 'tb-sort-group-del',
  515. name: '删除',
  516. isShow: false
  517. },
  518. {
  519. id: 'tb-sort-group-edit',
  520. name: '修改',
  521. isShow: false
  522. },
  523. ]
  524. },
  525. ],
  526. },
  527. {
  528. id: 'tb-business-car',
  529. name: '放行记录',
  530. icon: 'el-icon-notebook-2',
  531. parent: true,
  532. childList: [{
  533. id: 'tb-business-car-list',
  534. name: '放行列表',
  535. url: 'sa-view/tb-business-car/tb-business-car-list.html',
  536. childList: [{
  537. id: 'tb-business-car-add',
  538. name: '添加记录',
  539. isShow: false
  540. },
  541. {
  542. id: 'tb-business-car-export',
  543. name: '导出记录',
  544. isShow: false
  545. },
  546. {
  547. id: 'tb-business-car-judge',
  548. name: '审核',
  549. isShow: false
  550. },
  551. {
  552. id: 'tb-business-car-print',
  553. name: '打印凭证',
  554. isShow: false
  555. },
  556. {
  557. id: 'tb-business-car-edit',
  558. name: '修改记录',
  559. isShow: false
  560. },
  561. {
  562. id: 'tb-business-car-del',
  563. name: '删除记录',
  564. isShow: false
  565. },
  566. ]
  567. }, ]
  568. }, {
  569. id: 'info-setting',
  570. name: '信息设置',
  571. icon: 'el-icon-monitor',
  572. parent: true,
  573. childList: [{
  574. id: 'tb-item',
  575. name: '收费管理',
  576. icon: 'el-icon-coin',
  577. parent: true,
  578. childList: [{
  579. id: 'tb-item-list',
  580. name: '收费标准',
  581. url: 'sa-view/tb-item/tb-item-list.html'
  582. },
  583. {
  584. id: 'tb-item-list-edit-type',
  585. name: '修改类型',
  586. isShow: false
  587. },
  588. ]
  589. }, ]
  590. }, {
  591. id: 'tb-notices',
  592. name: '消息管理',
  593. icon: 'el-icon-news',
  594. parent: true,
  595. childList: [{
  596. id: 'tb-notices-list',
  597. name: '消息列表',
  598. url: 'sa-view/tb-notices/tb-notices-list.html',
  599. childList: [{
  600. id: 'tb-notices-add',
  601. name: '添加消息',
  602. isShow: false
  603. },
  604. {
  605. id: 'tb-notices-del',
  606. name: '删除消息',
  607. isShow: false
  608. },
  609. {
  610. id: 'tb-notices-edit',
  611. name: '修改消息',
  612. isShow: false
  613. },
  614. ]
  615. },
  616. ]
  617. }, {
  618. id: 'tb-charge-record',
  619. name: '充值记录',
  620. icon: 'el-icon-folder-opened',
  621. parent: true,
  622. childList: [{
  623. id: 'tb-charge-record-list',
  624. name: '充值记录',
  625. url: 'sa-view/tb-charge-record/tb-charge-record-list.html'
  626. }, ]
  627. }, {
  628. id: 'tb-pay-record',
  629. name: '支付记录',
  630. icon: 'el-icon-folder-opened',
  631. parent: true,
  632. childList: [{
  633. id: 'tb-pay-record-list',
  634. name: '支付记录',
  635. url: 'sa-view/tb-pay-record/tb-pay-record-list.html'
  636. }, ]
  637. }, {
  638. id: 'tb-declare',
  639. name: '申报信息',
  640. icon: 'el-icon-folder-opened',
  641. parent: true,
  642. childList: [{
  643. id: 'tb-declare-list',
  644. name: '申报列表',
  645. url: 'sa-view/tb-declare/tb-declare-list.html',
  646. childList: [{
  647. id: 'tb-declare-print',
  648. name: '打印申报信息',
  649. isShow: false
  650. },
  651. {
  652. id: 'tb-declare-edit',
  653. name: '修改申报信息',
  654. isShow: false
  655. },
  656. {
  657. id: 'tb-declare-del',
  658. name: '删除申报信息',
  659. isShow: false
  660. },
  661. ]
  662. }, ]
  663. }, {
  664. id: 'tb-disinfect',
  665. name: '消毒信息',
  666. icon: 'el-icon-folder-opened',
  667. parent: true,
  668. childList: [{
  669. id: 'tb-disinfect-list',
  670. name: '申请列表',
  671. url: 'sa-view/tb-disinfect/tb-disinfect-list.html',
  672. childList: [{
  673. id: 'tb-disinfect-print',
  674. name: '打印信息',
  675. isShow: false
  676. },
  677. {
  678. id: 'tb-disinfect-edit',
  679. name: '修改信息',
  680. isShow: false
  681. },
  682. {
  683. id: 'tb-disinfect-del',
  684. name: '删除信息',
  685. isShow: false
  686. },
  687. ]
  688. }, ]
  689. }, {
  690. id: 'tb-discount',
  691. name: '折扣管理',
  692. icon: 'el-icon-folder-opened',
  693. parent: true,
  694. childList: [{
  695. id: 'tb-discount-list',
  696. name: '折扣管理',
  697. url: 'sa-view/tb-discount/tb-discount-list.html',
  698. childList: [{
  699. id: 'tb-discount-add',
  700. name: '添加折扣',
  701. isShow: false
  702. },
  703. {
  704. id: 'tb-discount-del',
  705. name: '删除',
  706. isShow: false
  707. },
  708. {
  709. id: 'tb-discount-edit',
  710. name: '编辑',
  711. isShow: false
  712. },
  713. {
  714. id: 'tb-discount-change',
  715. name: '启用/停用',
  716. isShow: false
  717. },
  718. ]
  719. }, ]
  720. }, {
  721. id: 'tb-fee-statistics',
  722. name: '收费统计',
  723. icon: 'el-icon-folder-opened',
  724. parent: true,
  725. childList: [{
  726. id: 'tb-fee-details-list',
  727. name: '收费明细',
  728. url: 'sa-view/tb-fee-statistics/tb-fee-details-list.html',
  729. childList: [
  730. {
  731. id: 'tb-statistics-print',
  732. name: '打印',
  733. isShow: false
  734. },
  735. {
  736. id: 'tb-statistics-export',
  737. name: '导出',
  738. isShow: false
  739. },
  740. {
  741. id: 'tb-kaidan-confirm',
  742. name: '开单确认',
  743. isShow: false
  744. },
  745. {
  746. id: 'tb-diaodu-confirm',
  747. name: '复核确认',
  748. isShow: false
  749. },
  750. {
  751. id: 'tb-jicha-confirm',
  752. name: '稽查确认',
  753. isShow: false
  754. },
  755. {
  756. id: 'tb-jicha-cancel',
  757. name: '取消确认',
  758. isShow: false
  759. },
  760. ]
  761. },
  762. {
  763. id: 'tb-fee-statistics-list',
  764. name: '日统计',
  765. url: 'sa-view/tb-fee-statistics/tb-fee-statistics-list.html',
  766. childList:[{
  767. id: 'tb-fee-statistics-judge',
  768. name: '审核',
  769. isShow: false
  770. }]
  771. },
  772. {
  773. id: 'month-statistcs-list',
  774. name: '月统计',
  775. url: 'sa-view/tb-fee-statistics/month-statistcs-list.html'
  776. },
  777. {
  778. id: 'year-statistcs-list',
  779. name: '年统计',
  780. url: 'sa-view/tb-fee-statistics/year-statistcs-list.html'
  781. },
  782. ]
  783. }, {
  784. id: 'tb-invoice-info',
  785. name: '开票管理',
  786. icon: 'el-icon-folder-opened',
  787. parent: true,
  788. childList: [{
  789. id: 'tb-entity-list',
  790. name: '开票主体',
  791. url: 'sa-view/tb-entity/tb-entity-list.html'
  792. },
  793. {
  794. id: 'tb-invoice-order-list',
  795. name: '开票订单',
  796. url: 'sa-view/tb-invoice-order/tb-invoice-order-list.html'
  797. },
  798. {
  799. id: 'tb-invoice-info-list',
  800. name: '开票信息',
  801. url: 'sa-view/tb-invoice-info/tb-invoice-info-list.html'
  802. },
  803. ]
  804. }, {
  805. id: 'tb-account',
  806. name: '预存款管理',
  807. icon: 'el-icon-folder-opened',
  808. parent: true,
  809. childList: [{
  810. id: 'tb-account-list',
  811. name: '客户充值',
  812. url: 'sa-view/tb-account/tb-account-list.html',
  813. childList: [{
  814. id: 'tb-account-list-add',
  815. name: '充值',
  816. isShow: false,
  817. },
  818. {
  819. id: 'tb-account-list-update',
  820. name: '修改',
  821. isShow: false,
  822. }
  823. ]
  824. },
  825. {
  826. id: 'tb-charge-record-list',
  827. name: '充值记录',
  828. url: 'sa-view/tb-charge-record/tb-charge-record-list.html',
  829. childList: [{
  830. id: 'tb-charge-record-list-print',
  831. name: '打印单据',
  832. isShow: false,
  833. },
  834. {
  835. id: 'tb-charge-record-list-review',
  836. name: '复审',
  837. isShow: false,
  838. },
  839. {
  840. id: 'tb-charge-record-list-del',
  841. name: '删除',
  842. isShow: false,
  843. }
  844. ]
  845. }, {
  846. id: 'tb-deduction-bind-list',
  847. name: '扣费绑定',
  848. url: 'sa-view/tb-deduction-bind/tb-deduction-bind-list.html',
  849. childList: [{
  850. id: 'tb-deduction-bind-list-bind',
  851. name: '绑定车辆',
  852. isShow: false,
  853. },
  854. {
  855. id: 'tb-deduction-bind-list-unbind',
  856. name: '手动解绑',
  857. isShow: false,
  858. }
  859. ]
  860. }, {
  861. id: 'tb-deduction-record-list',
  862. name: '扣费记录',
  863. url: 'sa-view/tb-deduction-record/tb-deduction-record-list.html',
  864. childList: [{
  865. id: 'tb-deduction-record-list-review',
  866. name: '复审',
  867. isShow: false,
  868. }]
  869. }
  870. ],
  871. }
  872. );