menu-list-sp.js 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946
  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. }]
  479. }, {
  480. id: 'tb-item-type',
  481. name: '收费项管理',
  482. icon: 'el-icon-notebook-2',
  483. parent: true,
  484. childList: [{
  485. id: 'tb-goods-list',
  486. name: '业务项管理',
  487. url: 'sa-view/tb-goods/tb-goods-list.html',
  488. childList: [{
  489. id: 'tb-goods-add',
  490. name: '添加业务项',
  491. isShow: false
  492. },
  493. {
  494. id: 'tb-goods-edit',
  495. name: '编辑业务项',
  496. isShow: false
  497. },
  498. {
  499. id: 'tb-goods-del',
  500. name: '删除业务项',
  501. isShow: false
  502. },
  503. {
  504. id: 'tb-goods-item-type',
  505. name: '编辑收费项',
  506. isShow: false
  507. },
  508. ]
  509. }, {
  510. id: 'tb-item-type-list',
  511. name: '业务类型管理',
  512. url: 'sa-view/tb-item-type/tb-item-type-list.html',
  513. childList: [{
  514. id: 'tb-item-type-add',
  515. name: '添加收费项',
  516. isShow: false
  517. },
  518. {
  519. id: 'tb-item-type-edit',
  520. name: '编辑收费项',
  521. isShow: false
  522. },
  523. {
  524. id: 'tb-item-type-relation',
  525. name: '收费明细',
  526. isShow: false
  527. },
  528. {
  529. id: 'tb-item-type-del',
  530. name: '删除收费项',
  531. isShow: false
  532. },
  533. ]
  534. },
  535. {
  536. id: 'tb-item-re-list',
  537. name: '车型管理',
  538. url: 'sa-view/tb-item-type/tb-item-list.html',
  539. childList: [{
  540. id: 'tb-item-manager-add',
  541. name: '添加明细',
  542. isShow: false
  543. },
  544. {
  545. id: 'tb-item-manager-del',
  546. name: '删除明细',
  547. isShow: false
  548. },
  549. {
  550. id: 'tb-item-manager-edit',
  551. name: '修改明细',
  552. isShow: false
  553. },
  554. ]
  555. },
  556. {
  557. id: 'tb-sort-group',
  558. name: '其他业务设置',
  559. url: 'sa-view/tb-sort-group/tb-sort-group-list.html',
  560. childList: [{
  561. id: 'tb-sort-group-add',
  562. name: '添加',
  563. isShow: false
  564. },
  565. {
  566. id: 'tb-sort-group-del',
  567. name: '删除',
  568. isShow: false
  569. },
  570. {
  571. id: 'tb-sort-group-edit',
  572. name: '修改',
  573. isShow: false
  574. },
  575. ]
  576. },
  577. ],
  578. },
  579. {
  580. id: 'tb-business-car',
  581. name: '放行记录',
  582. icon: 'el-icon-notebook-2',
  583. parent: true,
  584. childList: [{
  585. id: 'tb-business-car-list',
  586. name: '放行列表',
  587. url: 'sa-view/tb-business-car/tb-business-car-list.html',
  588. childList: [{
  589. id: 'tb-business-car-add',
  590. name: '添加记录',
  591. isShow: false
  592. },
  593. {
  594. id: 'tb-business-car-export',
  595. name: '导出记录',
  596. isShow: false
  597. },
  598. {
  599. id: 'tb-business-car-judge',
  600. name: '审核',
  601. isShow: false
  602. },
  603. {
  604. id: 'tb-business-car-print',
  605. name: '打印凭证',
  606. isShow: false
  607. },
  608. {
  609. id: 'tb-business-car-edit',
  610. name: '修改记录',
  611. isShow: false
  612. },
  613. {
  614. id: 'tb-business-car-del',
  615. name: '删除记录',
  616. isShow: false
  617. },
  618. ]
  619. }, ]
  620. }, {
  621. id: 'info-setting',
  622. name: '信息设置',
  623. icon: 'el-icon-monitor',
  624. parent: true,
  625. childList: [{
  626. id: 'tb-item',
  627. name: '收费管理',
  628. icon: 'el-icon-coin',
  629. parent: true,
  630. childList: [{
  631. id: 'tb-item-list',
  632. name: '收费标准',
  633. url: 'sa-view/tb-item/tb-item-list.html'
  634. },
  635. {
  636. id: 'tb-item-list-edit-type',
  637. name: '修改类型',
  638. isShow: false
  639. },
  640. ]
  641. }, ]
  642. }, {
  643. id: 'tb-notices',
  644. name: '消息管理',
  645. icon: 'el-icon-news',
  646. parent: true,
  647. childList: [{
  648. id: 'tb-notices-list',
  649. name: '消息列表',
  650. url: 'sa-view/tb-notices/tb-notices-list.html',
  651. childList: [{
  652. id: 'tb-notices-add',
  653. name: '添加消息',
  654. isShow: false
  655. },
  656. {
  657. id: 'tb-notices-del',
  658. name: '删除消息',
  659. isShow: false
  660. },
  661. {
  662. id: 'tb-notices-edit',
  663. name: '修改消息',
  664. isShow: false
  665. },
  666. ]
  667. },
  668. ]
  669. }, {
  670. id: 'tb-pay-record',
  671. name: '支付记录',
  672. icon: 'el-icon-folder-opened',
  673. parent: true,
  674. childList: [{
  675. id: 'tb-pay-record-list',
  676. name: '支付记录',
  677. url: 'sa-view/tb-pay-record/tb-pay-record-list.html'
  678. }, ]
  679. }, {
  680. id: 'tb-discount',
  681. name: '折扣管理',
  682. icon: 'el-icon-folder-opened',
  683. parent: true,
  684. childList: [{
  685. id: 'tb-discount-list',
  686. name: '折扣管理',
  687. url: 'sa-view/tb-discount/tb-discount-list.html',
  688. childList: [{
  689. id: 'tb-discount-add',
  690. name: '添加折扣',
  691. isShow: false
  692. },
  693. {
  694. id: 'tb-discount-del',
  695. name: '删除',
  696. isShow: false
  697. },
  698. {
  699. id: 'tb-discount-edit',
  700. name: '编辑',
  701. isShow: false
  702. },
  703. {
  704. id: 'tb-discount-change',
  705. name: '启用/停用',
  706. isShow: false
  707. },
  708. ]
  709. }, ]
  710. }, {
  711. id: 'tb-fee-statistics',
  712. name: '收费统计',
  713. icon: 'el-icon-folder-opened',
  714. parent: true,
  715. childList: [{
  716. id: 'tb-fee-details-list',
  717. name: '收费明细',
  718. url: 'sa-view/tb-fee-statistics/tb-fee-details-list.html',
  719. childList: [{
  720. id: 'tb-statistics-print',
  721. name: '打印',
  722. isShow: false
  723. },
  724. {
  725. id: 'tb-statistics-export',
  726. name: '导出',
  727. isShow: false
  728. },
  729. {
  730. id: 'tb-kaidan-confirm',
  731. name: '开单确认',
  732. isShow: false
  733. },
  734. {
  735. id: 'tb-diaodu-confirm',
  736. name: '复核确认',
  737. isShow: false
  738. },
  739. {
  740. id: 'tb-jicha-confirm',
  741. name: '稽查确认',
  742. isShow: false
  743. },
  744. {
  745. id: 'tb-jicha-cancel',
  746. name: '取消确认',
  747. isShow: false
  748. },
  749. ]
  750. },
  751. {
  752. id: 'tb-fee-statistics-list',
  753. name: '日统计',
  754. url: 'sa-view/tb-fee-statistics/tb-fee-statistics-list.html',
  755. childList: [{
  756. id: 'tb-fee-statistics-judge',
  757. name: '审核',
  758. isShow: false
  759. }]
  760. },
  761. {
  762. id: 'month-statistcs-list',
  763. name: '月统计',
  764. url: 'sa-view/tb-fee-statistics/month-statistcs-list.html'
  765. },
  766. {
  767. id: 'year-statistcs-list',
  768. name: '年统计',
  769. url: 'sa-view/tb-fee-statistics/year-statistcs-list.html'
  770. },
  771. ]
  772. }, {
  773. id: 'tb-invoice-info',
  774. name: '开票管理',
  775. icon: 'el-icon-folder-opened',
  776. parent: true,
  777. childList: [{
  778. id: 'tb-entity-list',
  779. name: '开票主体',
  780. url: 'sa-view/tb-entity/tb-entity-list.html'
  781. },
  782. {
  783. id: 'tb-invoice-order-list',
  784. name: '开票订单',
  785. url: 'sa-view/tb-invoice-order/tb-invoice-order-list.html'
  786. },
  787. {
  788. id: 'tb-invoice-info-list',
  789. name: '开票信息',
  790. url: 'sa-view/tb-invoice-info/tb-invoice-info-list.html'
  791. },
  792. ]
  793. }, {
  794. id: 'tb-account',
  795. name: '预存款管理',
  796. icon: 'el-icon-folder-opened',
  797. parent: true,
  798. childList: [{
  799. id: 'tb-account-list',
  800. name: '企业充值',
  801. url: 'sa-view/tb-account/tb-account-list.html',
  802. childList: [{
  803. id: 'tb-account-list-add',
  804. name: '充值',
  805. isShow: false,
  806. },
  807. {
  808. id: 'tb-account-list-refund',
  809. name: '退款',
  810. isShow: false,
  811. },
  812. {
  813. id: 'tb-account-list-update',
  814. name: '修改',
  815. isShow: false,
  816. }
  817. ]
  818. },
  819. {
  820. id: 'tb-account-balance-list',
  821. name: '企业余额',
  822. url: 'sa-view/tb-account/tb-account-balance-list.html',
  823. childList: [{
  824. id: 'tb-account-balance-list-export',
  825. name: '导出',
  826. isShow: false,
  827. },
  828. {
  829. id: 'tb-account-balance-list-print',
  830. name: '打印',
  831. isShow: false,
  832. }
  833. ]
  834. },
  835. {
  836. id: 'tb-charge-record-list',
  837. name: '充值记录',
  838. url: 'sa-view/tb-charge-record/tb-charge-record-list.html',
  839. childList: [{
  840. id: 'tb-charge-record-list-print',
  841. name: '打印单据',
  842. isShow: false,
  843. },
  844. {
  845. id: 'tb-charge-record-list-review',
  846. name: '复审',
  847. isShow: false,
  848. },
  849. {
  850. id: 'tb-charge-record-list-del',
  851. name: '删除',
  852. isShow: false,
  853. }
  854. ]
  855. },
  856. {
  857. id: 'tb-deduction-record-list',
  858. name: '扣费记录',
  859. url: 'sa-view/tb-deduction-record/tb-deduction-record-list.html',
  860. childList: [{
  861. id: 'tb-deduction-record-list-review',
  862. name: '复审',
  863. isShow: false,
  864. },
  865. {
  866. id: 'tb-deduction-record-export',
  867. name: '导出',
  868. isShow: false,
  869. },
  870. {
  871. id: 'tb-deduction-record-set-error',
  872. name: '设为异常单',
  873. isShow: false,
  874. },
  875. ]
  876. },
  877. {
  878. id: 'tb-deduction-record-error-list',
  879. name: '异常订单',
  880. url: 'sa-view/tb-deduction-record/tb-deduction-record-error-list.html',
  881. childList: [{
  882. id: 'tb-deduction-record-list-refund',
  883. name: '退款',
  884. isShow: false,
  885. }, ]
  886. },
  887. {
  888. id: 'tb-refund-record',
  889. name: '退款记录',
  890. url: 'sa-view/tb-refund-record/tb-refund-record-list.html',
  891. childList: [{
  892. id: 'tb-refund-record-export',
  893. name: '导出',
  894. isShow: false,
  895. }, ]
  896. },
  897. ],
  898. }
  899. );