menu-list-sp.js 18 KB

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