menu-list-sp.js 17 KB

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