menu-list-sp.js 18 KB

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