menu-list-sp.js 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908
  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-flex-business-judge',
  380. name: '业务审核',
  381. isShow: false
  382. },
  383. {
  384. id: 'tb-business-car-bind',
  385. name: '车辆绑定',
  386. isShow: false
  387. },
  388. {
  389. id: 'tb-flex-business-confirm',
  390. name: '账单确认',
  391. isShow: false
  392. },
  393. {
  394. id: 'tb-business-zx-print',
  395. name: '装卸打印',
  396. isShow: false
  397. },
  398. {
  399. id: 'tb-business-item-supplement',
  400. name: '补录缴费',
  401. isShow: false
  402. },
  403. ]
  404. },
  405. {
  406. id: 'tb-supplement-list',
  407. name: '补录订单',
  408. url: 'sa-view/tb-business/tb-supplement-list.html',
  409. childList: [{
  410. id: 'tb-supplement-add',
  411. name: '添加',
  412. isShow: false
  413. },
  414. {
  415. id: 'tb-supplement-edit',
  416. name: '修改',
  417. isShow: false
  418. },
  419. {
  420. id: 'tb-supplement-del',
  421. name: '删除',
  422. isShow: false
  423. },
  424. {
  425. id: 'tb-supplement-push',
  426. name: '发起流程',
  427. isShow: false
  428. },
  429. ]
  430. }
  431. ]
  432. }, {
  433. id: 'tb-item-type',
  434. name: '收费项管理',
  435. icon: 'el-icon-notebook-2',
  436. parent: true,
  437. childList: [{
  438. id: 'tb-goods-list',
  439. name: '业务项管理',
  440. url: 'sa-view/tb-goods/tb-goods-list.html',
  441. childList: [{
  442. id: 'tb-goods-add',
  443. name: '添加业务项',
  444. isShow: false
  445. },
  446. {
  447. id: 'tb-goods-edit',
  448. name: '编辑业务项',
  449. isShow: false
  450. },
  451. {
  452. id: 'tb-goods-del',
  453. name: '删除业务项',
  454. isShow: false
  455. },
  456. {
  457. id: 'tb-goods-item-type',
  458. name: '编辑收费项',
  459. isShow: false
  460. },
  461. ]
  462. }, {
  463. id: 'tb-item-type-list',
  464. name: '业务类型管理',
  465. url: 'sa-view/tb-item-type/tb-item-type-list.html',
  466. childList: [{
  467. id: 'tb-item-type-add',
  468. name: '添加收费项',
  469. isShow: false
  470. },
  471. {
  472. id: 'tb-item-type-edit',
  473. name: '编辑收费项',
  474. isShow: false
  475. },
  476. {
  477. id: 'tb-item-type-relation',
  478. name: '收费明细',
  479. isShow: false
  480. },
  481. {
  482. id: 'tb-item-type-del',
  483. name: '删除收费项',
  484. isShow: false
  485. },
  486. ]
  487. },
  488. {
  489. id: 'tb-item-re-list',
  490. name: '车型管理',
  491. url: 'sa-view/tb-item-type/tb-item-list.html',
  492. childList: [{
  493. id: 'tb-item-manager-add',
  494. name: '添加明细',
  495. isShow: false
  496. },
  497. {
  498. id: 'tb-item-manager-del',
  499. name: '删除明细',
  500. isShow: false
  501. },
  502. {
  503. id: 'tb-item-manager-edit',
  504. name: '修改明细',
  505. isShow: false
  506. },
  507. ]
  508. },
  509. {
  510. id: 'tb-sort-group',
  511. name: '其他业务设置',
  512. url: 'sa-view/tb-sort-group/tb-sort-group-list.html',
  513. childList: [{
  514. id: 'tb-sort-group-add',
  515. name: '添加',
  516. isShow: false
  517. },
  518. {
  519. id: 'tb-sort-group-del',
  520. name: '删除',
  521. isShow: false
  522. },
  523. {
  524. id: 'tb-sort-group-edit',
  525. name: '修改',
  526. isShow: false
  527. },
  528. ]
  529. },
  530. ],
  531. },
  532. {
  533. id: 'tb-business-car',
  534. name: '放行记录',
  535. icon: 'el-icon-notebook-2',
  536. parent: true,
  537. childList: [{
  538. id: 'tb-business-car-list',
  539. name: '放行列表',
  540. url: 'sa-view/tb-business-car/tb-business-car-list.html',
  541. childList: [{
  542. id: 'tb-business-car-add',
  543. name: '添加记录',
  544. isShow: false
  545. },
  546. {
  547. id: 'tb-business-car-export',
  548. name: '导出记录',
  549. isShow: false
  550. },
  551. {
  552. id: 'tb-business-car-judge',
  553. name: '审核',
  554. isShow: false
  555. },
  556. {
  557. id: 'tb-business-car-print',
  558. name: '打印凭证',
  559. isShow: false
  560. },
  561. {
  562. id: 'tb-business-car-edit',
  563. name: '修改记录',
  564. isShow: false
  565. },
  566. {
  567. id: 'tb-business-car-del',
  568. name: '删除记录',
  569. isShow: false
  570. },
  571. ]
  572. }, ]
  573. }, {
  574. id: 'info-setting',
  575. name: '信息设置',
  576. icon: 'el-icon-monitor',
  577. parent: true,
  578. childList: [{
  579. id: 'tb-item',
  580. name: '收费管理',
  581. icon: 'el-icon-coin',
  582. parent: true,
  583. childList: [{
  584. id: 'tb-item-list',
  585. name: '收费标准',
  586. url: 'sa-view/tb-item/tb-item-list.html'
  587. },
  588. {
  589. id: 'tb-item-list-edit-type',
  590. name: '修改类型',
  591. isShow: false
  592. },
  593. ]
  594. }, ]
  595. }, {
  596. id: 'tb-notices',
  597. name: '消息管理',
  598. icon: 'el-icon-news',
  599. parent: true,
  600. childList: [{
  601. id: 'tb-notices-list',
  602. name: '消息列表',
  603. url: 'sa-view/tb-notices/tb-notices-list.html',
  604. childList: [{
  605. id: 'tb-notices-add',
  606. name: '添加消息',
  607. isShow: false
  608. },
  609. {
  610. id: 'tb-notices-del',
  611. name: '删除消息',
  612. isShow: false
  613. },
  614. {
  615. id: 'tb-notices-edit',
  616. name: '修改消息',
  617. isShow: false
  618. },
  619. ]
  620. },
  621. ]
  622. }, {
  623. id: 'tb-pay-record',
  624. name: '支付记录',
  625. icon: 'el-icon-folder-opened',
  626. parent: true,
  627. childList: [{
  628. id: 'tb-pay-record-list',
  629. name: '支付记录',
  630. url: 'sa-view/tb-pay-record/tb-pay-record-list.html'
  631. }, ]
  632. }, {
  633. id: 'tb-discount',
  634. name: '折扣管理',
  635. icon: 'el-icon-folder-opened',
  636. parent: true,
  637. childList: [{
  638. id: 'tb-discount-list',
  639. name: '折扣管理',
  640. url: 'sa-view/tb-discount/tb-discount-list.html',
  641. childList: [{
  642. id: 'tb-discount-add',
  643. name: '添加折扣',
  644. isShow: false
  645. },
  646. {
  647. id: 'tb-discount-del',
  648. name: '删除',
  649. isShow: false
  650. },
  651. {
  652. id: 'tb-discount-edit',
  653. name: '编辑',
  654. isShow: false
  655. },
  656. {
  657. id: 'tb-discount-change',
  658. name: '启用/停用',
  659. isShow: false
  660. },
  661. ]
  662. }, ]
  663. }, {
  664. id: 'tb-fee-statistics',
  665. name: '收费统计',
  666. icon: 'el-icon-folder-opened',
  667. parent: true,
  668. childList: [{
  669. id: 'tb-fee-details-list',
  670. name: '收费明细',
  671. url: 'sa-view/tb-fee-statistics/tb-fee-details-list.html',
  672. childList: [
  673. {
  674. id: 'tb-statistics-print',
  675. name: '打印',
  676. isShow: false
  677. },
  678. {
  679. id: 'tb-statistics-export',
  680. name: '导出',
  681. isShow: false
  682. },
  683. {
  684. id: 'tb-kaidan-confirm',
  685. name: '开单确认',
  686. isShow: false
  687. },
  688. {
  689. id: 'tb-diaodu-confirm',
  690. name: '复核确认',
  691. isShow: false
  692. },
  693. {
  694. id: 'tb-jicha-confirm',
  695. name: '稽查确认',
  696. isShow: false
  697. },
  698. {
  699. id: 'tb-jicha-cancel',
  700. name: '取消确认',
  701. isShow: false
  702. },
  703. ]
  704. },
  705. {
  706. id: 'tb-fee-statistics-list',
  707. name: '日统计',
  708. url: 'sa-view/tb-fee-statistics/tb-fee-statistics-list.html',
  709. childList:[{
  710. id: 'tb-fee-statistics-judge',
  711. name: '审核',
  712. isShow: false
  713. }]
  714. },
  715. {
  716. id: 'month-statistcs-list',
  717. name: '月统计',
  718. url: 'sa-view/tb-fee-statistics/month-statistcs-list.html'
  719. },
  720. {
  721. id: 'year-statistcs-list',
  722. name: '年统计',
  723. url: 'sa-view/tb-fee-statistics/year-statistcs-list.html'
  724. },
  725. ]
  726. }, {
  727. id: 'tb-invoice-info',
  728. name: '开票管理',
  729. icon: 'el-icon-folder-opened',
  730. parent: true,
  731. childList: [{
  732. id: 'tb-entity-list',
  733. name: '开票主体',
  734. url: 'sa-view/tb-entity/tb-entity-list.html'
  735. },
  736. {
  737. id: 'tb-invoice-order-list',
  738. name: '开票订单',
  739. url: 'sa-view/tb-invoice-order/tb-invoice-order-list.html'
  740. },
  741. {
  742. id: 'tb-invoice-info-list',
  743. name: '开票信息',
  744. url: 'sa-view/tb-invoice-info/tb-invoice-info-list.html'
  745. },
  746. ]
  747. }, {
  748. id: 'tb-account',
  749. name: '预存款管理',
  750. icon: 'el-icon-folder-opened',
  751. parent: true,
  752. childList: [
  753. {
  754. id: 'tb-account-list',
  755. name: '企业充值',
  756. url: 'sa-view/tb-account/tb-account-list.html',
  757. childList: [
  758. {
  759. id: 'tb-account-list-add',
  760. name: '充值',
  761. isShow: false,
  762. },
  763. {
  764. id: 'tb-account-list-refund',
  765. name: '退款',
  766. isShow: false,
  767. },
  768. {
  769. id: 'tb-account-list-update',
  770. name: '修改',
  771. isShow: false,
  772. }
  773. ]
  774. },
  775. {
  776. id: 'tb-account-balance-list',
  777. name: '企业余额',
  778. url: 'sa-view/tb-account/tb-account-balance-list.html',
  779. childList: [
  780. {
  781. id: 'tb-account-balance-list-export',
  782. name: '导出',
  783. isShow: false,
  784. },
  785. {
  786. id: 'tb-account-balance-list-print',
  787. name: '打印',
  788. isShow: false,
  789. }
  790. ]
  791. },
  792. {
  793. id: 'tb-charge-record-list',
  794. name: '充值记录',
  795. url: 'sa-view/tb-charge-record/tb-charge-record-list.html',
  796. childList: [{
  797. id: 'tb-charge-record-list-print',
  798. name: '打印单据',
  799. isShow: false,
  800. },
  801. {
  802. id: 'tb-charge-record-list-review',
  803. name: '复审',
  804. isShow: false,
  805. },
  806. {
  807. id: 'tb-charge-record-list-del',
  808. name: '删除',
  809. isShow: false,
  810. }
  811. ]
  812. },
  813. {
  814. id: 'tb-deduction-record-list',
  815. name: '扣费记录',
  816. url: 'sa-view/tb-deduction-record/tb-deduction-record-list.html',
  817. childList: [
  818. {
  819. id: 'tb-deduction-record-list-review',
  820. name: '复审',
  821. isShow: false,
  822. },
  823. {
  824. id: 'tb-deduction-record-export',
  825. name: '导出',
  826. isShow: false,
  827. },
  828. {
  829. id: 'tb-deduction-record-set-error',
  830. name: '设为异常单',
  831. isShow: false,
  832. },
  833. ]
  834. },
  835. {
  836. id: 'tb-deduction-record-error-list',
  837. name: '异常订单',
  838. url: 'sa-view/tb-deduction-record/tb-deduction-record-error-list.html',
  839. childList: [
  840. {
  841. id: 'tb-deduction-record-list-refund',
  842. name: '退款',
  843. isShow: false,
  844. },
  845. ]
  846. },
  847. {
  848. id: 'tb-refund-record',
  849. name: '退款记录',
  850. url: 'sa-view/tb-refund-record/tb-refund-record-list.html',
  851. childList: [
  852. {
  853. id: 'tb-refund-record-export',
  854. name: '导出',
  855. isShow: false,
  856. },
  857. ]
  858. },
  859. ],
  860. }
  861. );