menu-list-sp.js 28 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235
  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. parent: true,
  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: 'form-generator',
  54. name: '在线表单构建',
  55. url: 'https://mrhj.gitee.io/form-generator/#/'
  56. },
  57. ]
  58. }, {
  59. id: 'auth',
  60. name: '权限控制',
  61. parent: true,
  62. icon: 'el-icon-unlock',
  63. info: '对系统角色权限的分配等设计,敏感度较高,请谨慎授权',
  64. childList: [{
  65. id: 'admin-list',
  66. name: '用户列表',
  67. url: 'sa-view-sp/sp-admin/admin-list.html',
  68. info: '所有管理员账号'
  69. }, {
  70. id: 'role-list',
  71. name: '角色列表',
  72. url: 'sa-view-sp/sp-role/role-list.html',
  73. info: '管理系统各种角色',
  74. childList: [{
  75. id: 'role-add',
  76. name: '添加角色',
  77. info: '添加角色的权限',
  78. isShow: false
  79. }]
  80. },
  81. {
  82. id: 'menu-list',
  83. name: '菜单列表',
  84. url: 'sa-view-sp/sp-role/menu-list.html',
  85. info: '所有菜单项预览'
  86. },
  87. // {id: 'apilog-list', name: '请求日志监控', url: 'sa-view-sp/sp-apilog/api-log-list.html', info: '记录本系统所有的api请求'},
  88. ]
  89. }, {
  90. id: 'sp-cfg',
  91. name: '系统配置',
  92. icon: 'el-icon-setting',
  93. parent: true,
  94. info: '有关系统的一些配置',
  95. childList: [
  96. {
  97. id: 'sp-cfg-app',
  98. name: '系统对公配置',
  99. url: 'sa-view-sp/sp-cfg/app-cfg.html'
  100. },
  101. {
  102. id: 'sp-cfg-server',
  103. name: '服务器私有配置',
  104. url: 'sa-view-sp/sp-cfg/server-cfg.html'
  105. },
  106. {
  107. id: 'sp-cfg-cooper_entrust',
  108. name: '互助委托书校验配置',
  109. url: 'sa-view-sp/sp-cfg/cooper_entrust-cfg.html'
  110. },
  111. {
  112. id: 'tb-agreement',
  113. name: '隐私政策&协议',
  114. url: 'sa-view/tb-agreement/tb-agreement-list.html',
  115. childList: [{
  116. id: 'tb-agreement-add',
  117. name: '协议表添加',
  118. isShow: true
  119. },
  120. {
  121. id: 'tb-agreement-edit',
  122. name: '协议表更新',
  123. isShow: true
  124. },
  125. {
  126. id: 'tb-agreement-del',
  127. name: '协议表删除',
  128. isShow: true
  129. },
  130. ]
  131. },
  132. {
  133. id: 'ht-byte',
  134. name: '航通',
  135. icon: 'el-icon-folder-opened',
  136. parent: true,
  137. info: '航通基础信息字节码表表数据的维护',
  138. childList: [{
  139. id: 'ht-byte-list',
  140. name: 'MQ数据-列表',
  141. url: 'sa-view/ht-byte/ht-byte-list.html',
  142. }, ]
  143. },
  144. ]
  145. }, {
  146. id: 'tb-base-data',
  147. name: '基础数据管理',
  148. parent: true,
  149. icon: 'el-icon-copy-document',
  150. childList: [
  151. {
  152. id: 'base-level-one',
  153. name: '一级市场',
  154. icon: 'el-icon-school',
  155. parent: true,
  156. childList: [{
  157. id: 'tb-trade-area',
  158. icon: 'el-icon-s-management',
  159. name: '场所管理',
  160. url: 'sa-view/tb-trade-area/tb-trade-area-list.html',
  161. childList: [{
  162. id: 'tb-trade-area-add',
  163. name: '添加场所',
  164. isShow: false
  165. },
  166. {
  167. id: 'tb-trade-area-edit',
  168. name: '更新场所',
  169. isShow: false
  170. },
  171. {
  172. id: 'tb-trade-area-del',
  173. name: '删除场所',
  174. isShow: false
  175. },
  176. ]
  177. },
  178. {
  179. id: 'tb-group',
  180. icon: 'el-icon-s-data',
  181. name: '互助组管理',
  182. url: 'sa-view/tb-group/tb-group-list.html',
  183. childList: [{
  184. id: 'tb-group-add',
  185. name: '互助组添加',
  186. isShow: false
  187. },
  188. {
  189. id: 'tb-group-edit',
  190. name: '互助组更新',
  191. isShow: false
  192. },
  193. {
  194. id: 'tb-group-del',
  195. name: '互助组删除',
  196. isShow: false
  197. },
  198. {
  199. id: 'tb-member-list',
  200. name: '查寻组内成员',
  201. isShow: false
  202. },
  203. ]
  204. },
  205. {
  206. id: 'tb-people',
  207. icon: 'el-icon-user',
  208. name: '边民管理',
  209. url: 'sa-view/tb-people/tb-people-list.html',
  210. childList: [{
  211. id: 'tb-people-add',
  212. name: '边民添加',
  213. isShow: false
  214. },
  215. {
  216. id: 'tb-people-bind-shop',
  217. name: '绑定店铺',
  218. isShow: false
  219. },
  220. {
  221. id: 'tb-people-edit',
  222. name: '边民更新',
  223. isShow: false
  224. },
  225. {
  226. id: 'tb-people-del',
  227. name: '边民删除',
  228. isShow: false
  229. },
  230. ]
  231. },
  232. {
  233. id: 'tb-shop',
  234. icon: 'el-icon-receiving',
  235. name: '商铺管理',
  236. url: 'sa-view/tb-shop/tb-shop-list.html',
  237. childList: [{
  238. id: 'tb-shop-add',
  239. name: '商铺添加',
  240. isShow: false
  241. },
  242. {
  243. id: 'tb-shop-edit',
  244. name: '商铺更新',
  245. isShow: false
  246. },
  247. {
  248. id: 'tb-shop-del',
  249. name: '商铺删除',
  250. isShow: false
  251. },
  252. ]
  253. },
  254. {
  255. id: 'tb-goods-units',
  256. name: '计价单位',
  257. icon:'el-icon-smoking',
  258. url: 'sa-view/tb-goods-units/tb-goods-units-list.html',
  259. childList: [{
  260. id: 'tb-goods-units-add',
  261. name: '计价单位添加',
  262. isShow: false
  263. },
  264. {
  265. id: 'tb-goods-units-edit',
  266. name: '计价单位更新',
  267. isShow: false
  268. },
  269. {
  270. id: 'tb-goods-units-del',
  271. name: '计价单位删除',
  272. isShow: false
  273. },
  274. ]
  275. },
  276. {
  277. id: 'tb-goods-type',
  278. name: '商品分类',
  279. icon:'el-icon-notebook-2',
  280. url: 'sa-view/tb-goods-type/tb-goods-type-list.html',
  281. childList: [{
  282. id: 'tb-goods-type-add',
  283. name: '商品分类添加',
  284. isShow: true
  285. },
  286. {
  287. id: 'tb-goods-type-edit',
  288. name: '商品分类更新',
  289. isShow: true
  290. },
  291. {
  292. id: 'tb-goods-type-del',
  293. name: '商品分类删除',
  294. isShow: true
  295. },
  296. ]
  297. },
  298. {
  299. id: 'tb-goods',
  300. name: '监管商品',
  301. icon:'el-icon-grape',
  302. url: 'sa-view/tb-goods/tb-goods-list.html',
  303. childList: [{
  304. id: 'tb-goods-add',
  305. name: '商品添加',
  306. isShow: false
  307. },
  308. {
  309. id: 'tb-goods-edit',
  310. name: '商品更新',
  311. isShow: false
  312. },
  313. {
  314. id: 'tb-goods-del',
  315. name: '商品删除',
  316. isShow: false
  317. },
  318. ]
  319. },
  320. {
  321. id: 'tb-cooperative',
  322. icon: 'el-icon-film',
  323. name: '合作社',
  324. url: 'sa-view/tb-cooperative/tb-cooperative-list.html',
  325. childList: [{
  326. id: 'tb-cooperative-add',
  327. name: '添加合作社',
  328. isShow: false
  329. },
  330. {
  331. id: 'tb-cooperative-edit',
  332. name: '更新合作社',
  333. isShow: false
  334. },
  335. {
  336. id: 'tb-cooperative-del',
  337. name: '删除合作社',
  338. isShow: false
  339. },
  340. ]
  341. },
  342. ]
  343. },
  344. {
  345. id: 'base-level-two',
  346. name: '二级市场',
  347. parent: true,
  348. icon: 'el-icon-office-building',
  349. childList: [{
  350. id: 'tb-purchaser',
  351. icon: 'el-icon-film',
  352. name: '企业收购商',
  353. url: 'sa-view/tb-purchaser/tb-purchaser-list.html',
  354. childList: [{
  355. id: 'tb-purchaser-add',
  356. name: '收购商添加',
  357. isShow: false
  358. },
  359. {
  360. id: 'tb-purchaser-edit',
  361. name: '收购商更新',
  362. isShow: false
  363. },
  364. {
  365. id: 'tb-purchaser-del',
  366. name: '收购商删除',
  367. isShow: false
  368. },
  369. ]
  370. },
  371. {
  372. id: 'tb-purchaser-judge',
  373. icon: 'el-icon-s-check',
  374. name: '企业收购商审核',
  375. url: 'sa-view/tb-purchaser/tb-purchaser-judge.html',
  376. childList: [{
  377. id: 'tb-purchaser-judge',
  378. name: '收购商审核',
  379. isShow: false
  380. }, ]
  381. }, {
  382. id: 'tb-purchaser-personal',
  383. icon: 'el-icon-film',
  384. name: '个人收购商',
  385. url: 'sa-view/tb-purchaser-personal/tb-purchaser-personal-list.html',
  386. childList: [{
  387. id: 'tb-purchaser-add',
  388. name: '收购商添加',
  389. isShow: false
  390. },
  391. {
  392. id: 'tb-purchaser-edit',
  393. name: '收购商更新',
  394. isShow: false
  395. },
  396. {
  397. id: 'tb-purchaser-del',
  398. name: '收购商删除',
  399. isShow: false
  400. },
  401. ]
  402. },
  403. {
  404. id: 'tb-purchaser-personal-judge',
  405. icon: 'el-icon-s-check',
  406. name: '个人收购商审核',
  407. url: 'sa-view/tb-purchaser-personal/tb-purchaser-personal-judge.html',
  408. childList: [{
  409. id: 'tb-purchaser-judge',
  410. name: '收购商审核',
  411. isShow: false
  412. }, ]
  413. },
  414. {
  415. id: 'tb-people-tax-account',
  416. icon: 'el-icon-folder-opened',
  417. name: '个体户(开票)',
  418. url: 'sa-view/tb-people-tax-account/tb-people-tax-account-list.html',
  419. childList: [{
  420. id: 'tb-people-tax-account-add',
  421. name: '个体户(开票)添加',
  422. isShow: false
  423. },
  424. {
  425. id: 'tb-people-tax-account-edit',
  426. name: '个体户(开票)更新',
  427. isShow: false
  428. },
  429. {
  430. id: 'tb-people-tax-account-del',
  431. name: '个体户(开票)删除',
  432. isShow: false
  433. },
  434. ]
  435. },
  436. ]
  437. },
  438. ]
  439. }, {
  440. id: 'app-setting',
  441. name: '移动端管理',
  442. icon: 'el-icon-mobile-phone',
  443. parent: true,
  444. childList: [{
  445. id: 'app-menu',
  446. icon: 'el-icon-s-operation',
  447. name: '菜单管理',
  448. url: 'sa-view/app-menu/app-menu-list.html',
  449. childList: [{
  450. id: 'app-menu-add',
  451. name: 'app菜单管理添加',
  452. isShow: false
  453. },
  454. {
  455. id: 'app-menu-edit',
  456. name: 'app菜单管理更新',
  457. isShow: false
  458. },
  459. {
  460. id: 'app-menu-del',
  461. name: 'app菜单管理删除',
  462. isShow: false
  463. },
  464. ]
  465. },
  466. {
  467. id: 'app-role',
  468. icon: 'el-icon-postcard',
  469. name: '角色管理',
  470. url: 'sa-view/app-role/app-role-list.html',
  471. childList: [{
  472. id: 'app-role-add',
  473. name: '添加',
  474. isShow: false
  475. },
  476. {
  477. id: 'app-role-edit',
  478. name: '更新',
  479. isShow: false
  480. },
  481. {
  482. id: 'app-role-del',
  483. name: '删除',
  484. isShow: false
  485. },
  486. ]
  487. },
  488. {
  489. id: 'app-user',
  490. icon: 'el-icon-user-solid',
  491. name: '账号管理',
  492. url: 'sa-view/app-user/app-user-list.html',
  493. childList: [{
  494. id: 'app-user-add',
  495. name: '添加',
  496. isShow: false
  497. },
  498. {
  499. id: 'app-user-edit',
  500. name: '更新',
  501. isShow: false
  502. },
  503. {
  504. id: 'app-user-del',
  505. name: '删除',
  506. isShow: false
  507. },
  508. ]
  509. },
  510. {
  511. id: 'tb-app',
  512. name: 'APK管理',
  513. icon: 'el-icon-apple',
  514. url: 'sa-view/tb-app/tb-app-list.html',
  515. childList: [{
  516. id: 'tb-app-add',
  517. name: 'APK管理添加',
  518. isShow: false
  519. },
  520. {
  521. id: 'tb-app-edit',
  522. name: 'APK管理更新',
  523. isShow: false
  524. },
  525. {
  526. id: 'tb-app-del',
  527. name: 'APK管理删除',
  528. isShow: false
  529. },
  530. ]
  531. },
  532. {
  533. id: 'tb-port-news',
  534. name: '口岸资讯管理',
  535. icon:'el-icon-document',
  536. url: 'sa-view/tb-port-news/tb-port-news-list.html',
  537. childList: [{
  538. id: 'tb-port-news-add',
  539. name: '口岸资讯添加',
  540. isShow: true
  541. },
  542. {
  543. id: 'tb-port-news-edit',
  544. name: '口岸资讯更新',
  545. isShow: true
  546. },
  547. {
  548. id: 'tb-port-news-del',
  549. name: '口岸资讯删除',
  550. isShow: true
  551. },
  552. ]
  553. },
  554. {
  555. id: 'tb-message',
  556. name: '通知消息',
  557. icon: 'el-icon-receiving',
  558. url: 'sa-view/tb-message/tb-message-list.html',
  559. childList: [{
  560. id: 'tb-message-add',
  561. name: '通知消息添加',
  562. isShow: false
  563. },
  564. {
  565. id: 'tb-message-edit',
  566. name: '通知消息更新',
  567. isShow: false
  568. },
  569. {
  570. id: 'tb-message-del',
  571. name: '通知消息删除',
  572. isShow: false
  573. },
  574. ]
  575. },
  576. {
  577. id: 'tb-banner',
  578. name: '轮播图',
  579. icon:'el-icon-picture-outline',
  580. url: 'sa-view/tb-banner/tb-banner-list.html',
  581. childList: [{
  582. id: 'tb-banner-add',
  583. name: '轮播图添加',
  584. isShow: true
  585. },
  586. {
  587. id: 'tb-banner-edit',
  588. name: '轮播图更新',
  589. isShow: true
  590. },
  591. {
  592. id: 'tb-banner-del',
  593. name: '轮播图删除',
  594. isShow: true
  595. },
  596. ]
  597. },
  598. {
  599. id: 'app-user-login-log',
  600. name: '登录日志',
  601. icon: 'el-icon-set-up',
  602. url: 'sa-view/app-user-login-log/app-user-login-log-list.html',
  603. childList: [{
  604. id: 'app-user-login-log-del',
  605. name: '删除',
  606. isShow: false
  607. }, ]
  608. },
  609. ]
  610. }, {
  611. id: 'trade-manager',
  612. name: '交易管理',
  613. parent: true,
  614. icon: 'el-icon-s-unfold',
  615. childList: [
  616. {
  617. id: 'level-one-market',
  618. icon: 'el-icon-school',
  619. name: '一级市场',
  620. parent: true,
  621. childList: [
  622. {
  623. id: 'level-order',
  624. name: '交易订单',
  625. icon: 'el-icon-s-operation',
  626. parent: true,
  627. childList: [{
  628. id: 'ht-trade-settlement',
  629. name: '进境结算单',
  630. icon: 'el-icon-s-home',
  631. url: 'sa-view/ht-trade-settlement/ht-trade-settlement-list.html',
  632. childList: [{
  633. id: 'ht-trade-settlement-add',
  634. name: '添加订单',
  635. isShow: false
  636. },
  637. {
  638. id: 'ht-trade-settlement-edit',
  639. name: '修改订单',
  640. isShow: false
  641. },
  642. {
  643. id: 'tb-order-edit-price',
  644. name: '修改上架金额',
  645. isShow: false
  646. },
  647. {
  648. id: 'ht-trade-settlement-hzsconfirm',
  649. name: '互助社确认',
  650. isShow: false
  651. },
  652. ]
  653. },
  654. {
  655. id: 'tb-order',
  656. name: '边民购买订单',
  657. icon: 'el-icon-s-custom',
  658. url: 'sa-view/tb-order/tb-order-list.html',
  659. childList: [{
  660. id: 'tb-order-edit',
  661. name: '修改订单',
  662. isShow: false
  663. },
  664. {
  665. id: 'tb-order-del',
  666. name: '删除订单',
  667. isShow: false
  668. },
  669. {
  670. id: 'bank-info',
  671. name: '银行回执',
  672. isShow: false
  673. },
  674. {
  675. id: 'tb-order-deduction',
  676. name: '订单扣款',
  677. isShow: false
  678. },
  679. {
  680. id: 'tb-order-send009',
  681. name: '补推009',
  682. isShow: false
  683. },
  684. {
  685. id: 'tb-order-sendCXB001',
  686. name: '推送结关',
  687. isShow: false
  688. },
  689. {
  690. id: 'tb-order-refund',
  691. name: '退款',
  692. isShow: false
  693. },
  694. ]
  695. },
  696. {
  697. id: 'tb-import-order',
  698. name: '进口申报单',
  699. icon: 'el-icon-s-unfold',
  700. url: 'sa-view/tb-import-order/tb-import-order-list.html',
  701. childList: [{
  702. id: 'tb-import-order-add',
  703. name: '订单添加',
  704. isShow: false
  705. },
  706. {
  707. id: 'tb-import-order-edit',
  708. name: '订单更新',
  709. isShow: false
  710. },
  711. {
  712. id: 'tb-import-order-del',
  713. name: '订单删除',
  714. isShow: false
  715. },
  716. ]
  717. },
  718. ]
  719. },
  720. {
  721. id: 'listing-manage',
  722. name: '上架管理',
  723. icon: 'el-icon-shopping-cart-full',
  724. parent: true,
  725. childList: [{
  726. id: 'listing-management',
  727. name: '整车订单',
  728. icon: 'el-icon-notebook-2',
  729. url: 'sa-view/listing-management/listing-management.html',
  730. childList: [{
  731. id: 'tb-order-edit-price',
  732. name: '修改上架金额',
  733. isShow: false
  734. }]
  735. }]
  736. },
  737. {
  738. id: 'tb-wallet-manager',
  739. name: '服务点管理',
  740. parent: true,
  741. icon:'el-icon-s-operation',
  742. childList: [
  743. {
  744. id: 'tb-wallet-topup',
  745. name: '充值记录',
  746. url: 'sa-view/tb-wallet-topup/tb-wallet-topup-list.html',
  747. icon:'el-icon-collection'
  748. },
  749. {
  750. id: 'tb-wallet-record',
  751. name: '扣除记录',
  752. url: 'sa-view/tb-wallet-record/tb-wallet-record-list.html',
  753. icon:'el-icon-notebook-1'
  754. },
  755. {
  756. id: 'tb-wallet-topdown',
  757. name: '提现记录',
  758. url: 'sa-view/tb-wallet-topdown/tb-wallet-topdown-list.html',
  759. icon:'el-icon-files'
  760. },
  761. ]
  762. },
  763. {
  764. id: 'returns-chargebacks-list',
  765. name: '退运/单管理',
  766. parent: true,
  767. icon: 'el-icon-position',
  768. childList: [{
  769. id: 'ht-returns-settlement',
  770. name: '退运订单',
  771. icon: 'el-icon-c-scale-to-original',
  772. url: 'sa-view/ht-settlement-error/ht-trade-returns-list.html'
  773. },
  774. {
  775. id: 'ht-chargebacks-settlement',
  776. name: '退单订单',
  777. icon: 'el-icon-date',
  778. url: 'sa-view/ht-settlement-error/ht-trade-chargebacks-list.html'
  779. },
  780. ]
  781. },
  782. ]
  783. },
  784. {
  785. id: 'order-list',
  786. name: '二级市场',
  787. parent: true,
  788. icon: 'el-icon-office-building',
  789. childList: [{
  790. id: 'tb-import-order-judge',
  791. name: '互助委托协议审核',
  792. url: 'sa-view/tb-import-order/tb-import-order-judge.html',
  793. childList: [{
  794. id: 'tb-import-order-do-judge',
  795. name: '审核',
  796. isShow: false
  797. }, ]
  798. },
  799. {
  800. id: 'tb-orders',
  801. name: '订单管理',
  802. icon: 'el-icon-document-copy',
  803. url: 'sa-view/tb-orders/tb-orders-list.html',
  804. childList: [{
  805. id: 'tb-orders-add',
  806. name: '添加订单',
  807. isShow: false
  808. },
  809. {
  810. id: 'tb-orders-edit',
  811. name: '修改订单',
  812. isShow: false
  813. },
  814. {
  815. id: 'tb-orders-del',
  816. name: '删除订单',
  817. isShow: false
  818. },
  819. {
  820. id: 'tb-orders-deduction',
  821. name: '采购商补扣款',
  822. isShow: false
  823. },
  824. {
  825. id: 'bank-info',
  826. name: '查看银行回执',
  827. isShow: false
  828. },
  829. ]
  830. }
  831. ]
  832. },
  833. ]
  834. }, {
  835. id: 'transport-sys',
  836. name: '货运管理',
  837. parent: true,
  838. icon: 'el-icon-s-grid',
  839. childList: [
  840. {
  841. id: 'busi-config',
  842. icon: 'el-icon-s-custom',
  843. parent: true,
  844. name: '数据配置',
  845. childList: [
  846. {
  847. id: 'tb-config',
  848. icon: 'el-icon-s-custom',
  849. name: '业务参数',
  850. url: 'sa-view/tb-config/tb-config-list.html',
  851. childList: [
  852. {
  853. id: 'tb-config-add',
  854. name: '添加',
  855. isShow: true
  856. },
  857. {
  858. id: 'tb-config-edit',
  859. name: '更新',
  860. isShow: true
  861. },
  862. {
  863. id: 'tb-config-del',
  864. name: '删除',
  865. isShow: true
  866. }
  867. ]
  868. },
  869. {
  870. id: 'tb-dict-cat',
  871. icon: 'el-icon-s-custom',
  872. name: '字典管理',
  873. url: 'sa-view/tb-dict/tb-dict-cat-list.html',
  874. childList: [
  875. {
  876. id: 'tb-dict-cat-add',
  877. name: '添加字典类型',
  878. isShow: true
  879. },
  880. {
  881. id: 'tb-dict-cat-edit',
  882. name: '更新字典类型',
  883. isShow: true
  884. },
  885. {
  886. id: 'tb-dict-cat-del',
  887. name: '删除字典类型',
  888. isShow: true
  889. },
  890. {
  891. id: 'tb-dict-info',
  892. name: '字典数据列表',
  893. isShow: true
  894. },
  895. {
  896. id: 'tb-dict-info-add',
  897. name: '添加字典数据',
  898. isShow: true
  899. },
  900. {
  901. id: 'tb-dict-info-edit',
  902. name: '更新字典数据',
  903. isShow: true
  904. },
  905. {
  906. id: 'tb-dict-info-del',
  907. name: '删除字典数据',
  908. isShow: true
  909. }
  910. ]
  911. },
  912. {
  913. id: 'tb-freight-template',
  914. icon: 'el-icon-s-custom',
  915. name: '运费模板',
  916. url: 'sa-view/tb-freight-template/tb-freight-template-list.html',
  917. childList: [
  918. {id:'tb-freight-template-add',name:'运费模板添加',isShow:false},
  919. {id:'tb-freight-template-edit',name:'运费模板更新',isShow:false},
  920. {id:'tb-freight-template-del',name:'运费模板删除',isShow:false},
  921. ]
  922. }
  923. ]
  924. }
  925. ,{
  926. id: 'tb-driver',
  927. icon: 'el-icon-s-custom',
  928. name: '司机管理',
  929. url: 'sa-view/tb-driver/tb-driver-list.html',
  930. childList: [{
  931. id: 'tb-driver-add',
  932. name: '司机添加',
  933. isShow: true
  934. },
  935. {
  936. id: 'tb-driver-edit',
  937. name: '司机更新',
  938. isShow: true
  939. },
  940. {
  941. id: 'tb-driver-del',
  942. name: '司机删除',
  943. isShow: true
  944. },
  945. ]
  946. },
  947. {
  948. id: 'tb-vehicle',
  949. icon: 'el-icon-s-check',
  950. name: '车辆管理',
  951. url: 'sa-view/tb-vehicle/tb-vehicle-list.html',
  952. childList: [{
  953. id: 'tb-vehicle-add',
  954. name: '车辆添加',
  955. isShow: true
  956. },
  957. {
  958. id: 'tb-vehicle-edit',
  959. name: '车辆更新',
  960. isShow: true
  961. },
  962. {
  963. id: 'tb-vehicle-del',
  964. name: '车辆删除',
  965. isShow: true
  966. },
  967. ]
  968. },
  969. {
  970. id: 'tb-driver-audit-p',
  971. icon: 'el-icon-s-custom',
  972. name: '司机审核',
  973. url: 'sa-view/tb-driver-audit/tb-driver-audit-list.html',
  974. childList: [{
  975. id: 'tb-driver-audit',
  976. name: '司机审核',
  977. isShow: true
  978. }
  979. ]
  980. },
  981. {
  982. id: 'tb-vehicle-audit-p',
  983. icon: 'el-icon-s-check',
  984. name: '车辆审核',
  985. url: 'sa-view/tb-vehicle-audit/tb-vehicle-audit-list.html',
  986. childList: [{
  987. id: 'tb-vehicle-audit',
  988. name: '车辆审核',
  989. isShow: true
  990. }
  991. ]
  992. },
  993. {
  994. id: 'tb-transport-demand',
  995. icon: 'el-icon-s-order',
  996. name: '货运需求单',
  997. url: 'sa-view/tb-transport-demand/tb-transport-demand-list.html',
  998. childList: [
  999. {
  1000. id: 'tb-transport-demand-cancel',
  1001. name: '货运需求单取消',
  1002. isShow: false
  1003. },
  1004. {
  1005. id: 'tb-transport-demand-del',
  1006. name: '货运需求单删除',
  1007. isShow: false
  1008. },
  1009. {
  1010. id: 'tb-transport-demand-apply',
  1011. name: '货运需求单申请记录',
  1012. isShow: false
  1013. }
  1014. ]
  1015. },
  1016. {
  1017. id: 'tb-transport-order',
  1018. name: '货运订单管理',
  1019. icon: 'el-icon-folder-opened',
  1020. url: 'sa-view/tb-transport-order/tb-transport-order-list.html',
  1021. childList: [
  1022. {
  1023. id: 'tb-transport-order-add',
  1024. name: '查看详情',
  1025. isShow: false
  1026. },
  1027. {
  1028. id: 'tb-transport-order-log',
  1029. name: '查看处理过程',
  1030. isShow: false
  1031. }
  1032. ]
  1033. },
  1034. {
  1035. id: 'tb-transport-order-timeout',
  1036. name: '超时结算处理',
  1037. icon: 'el-icon-folder-opened',
  1038. url: 'sa-view/tb-transport-order/tb-transport-order-timeout.html',
  1039. childList: [
  1040. {
  1041. id: 'tb-transport-order-settle-confirm',
  1042. name: '超时结算处理',
  1043. isShow: false
  1044. },
  1045. ]
  1046. },
  1047. {
  1048. id: 'tb-transport-refund',
  1049. name: '退款纠纷管理',
  1050. icon: 'el-icon-folder-opened',
  1051. url: 'sa-view/tb-transport-refund/tb-transport-refund-list.html',
  1052. childList: [{
  1053. id: 'tb-transport-refund-add',
  1054. name: '货运订单退款表添加',
  1055. isShow: false
  1056. },
  1057. {
  1058. id: 'tb-transport-refund-edit',
  1059. name: '货运订单退款表更新',
  1060. isShow: false
  1061. },
  1062. {
  1063. id: 'tb-transport-refund-deal',
  1064. name: '货运订单退款处理',
  1065. isShow: false
  1066. },
  1067. {
  1068. id: 'tb-transport-refund-del',
  1069. name: '货运订单退款表删除',
  1070. isShow: false
  1071. },
  1072. ]
  1073. },
  1074. {
  1075. id: 'busi-transport-settle',
  1076. icon: 'el-icon-s-custom',
  1077. parent: true,
  1078. name: '订单结算对帐',
  1079. childList: [
  1080. {
  1081. id: 'tb-transport-settle',
  1082. icon: 'el-icon-s-custom',
  1083. name: '订单结算单',
  1084. url: 'sa-view/tb-transport-settle/tb-transport-order-settle.html',
  1085. childList: [
  1086. ]
  1087. },
  1088. {
  1089. id: 'tb-transport-trade-bill-detail',
  1090. icon: 'el-icon-s-custom',
  1091. name: '订单对帐单',
  1092. url: 'sa-view/tb-transport-trade-bill/tb-transport-trade-bill-detail-list.html',
  1093. childList: [
  1094. ]
  1095. },
  1096. {
  1097. id: 'tb-transport-trade-bill',
  1098. icon: 'el-icon-s-custom',
  1099. name: '日交易对帐',
  1100. url: 'sa-view/tb-transport-trade-bill/tb-transport-trade-bill-list.html',
  1101. childList: [
  1102. ]
  1103. },
  1104. {
  1105. id: 'tb-transport-fundflow-bill',
  1106. icon: 'el-icon-s-custom',
  1107. name: '日资金对帐',
  1108. url: 'sa-view/tb-transport-fundflow-bill/tb-transport-fundflow-bill-list.html',
  1109. childList: [
  1110. ]
  1111. },
  1112. ]
  1113. },
  1114. {
  1115. id: 'busi-wechat-pay',
  1116. icon: 'el-icon-s-custom',
  1117. parent: true,
  1118. name: '微信支付',
  1119. childList: [
  1120. {
  1121. id: 'tb-wechat-pay',
  1122. icon: 'el-icon-s-custom',
  1123. name: '微信支付明细',
  1124. url: 'sa-view/tb-wechat-pay/tb-wechat-pay-list.html',
  1125. childList: [
  1126. {
  1127. id: 'tb-wechat-pay-syn',
  1128. name: '同步',
  1129. isShow: true
  1130. }
  1131. ]
  1132. },
  1133. {
  1134. id: 'tb-wechat-refund',
  1135. icon: 'el-icon-s-custom',
  1136. name: '微信退款明细',
  1137. url: 'sa-view/tb-wechat-refund/tb-wechat-refund-list.html',
  1138. childList: [
  1139. ]
  1140. }
  1141. ,
  1142. {
  1143. id: 'tb-wechat-transfer',
  1144. icon: 'el-icon-s-custom',
  1145. name: '微信转账明细',
  1146. url: 'sa-view/tb-wechat-transfer/tb-wechat-transfer-list.html',
  1147. childList: [ {
  1148. id: 'tb-wechat-transfer-syn',
  1149. name: '同步',
  1150. isShow: true
  1151. }
  1152. ]
  1153. }
  1154. ]
  1155. }
  1156. ]
  1157. }, {
  1158. id: 'tb-fee-manager',
  1159. name: '费项管理',
  1160. parent: true,
  1161. icon: 'el-icon-s-shop',
  1162. childList: [{
  1163. id: 'tb-company-list',
  1164. name: '收费企业',
  1165. icon: 'el-icon-folder-opened',
  1166. info: '企业管理表数据的维护',
  1167. url: 'sa-view/tb-company/tb-company-list.html',
  1168. childList: [{
  1169. id: 'tb-company-add',
  1170. name: '企业添加',
  1171. isShow: false
  1172. },
  1173. {
  1174. id: 'tb-company-edit',
  1175. name: '企业更新',
  1176. isShow: false
  1177. },
  1178. {
  1179. id: 'tb-company-del',
  1180. name: '企业删除',
  1181. isShow: false
  1182. },
  1183. ]
  1184. },
  1185. {
  1186. id: 'tb-fee-item-list',
  1187. name: '费用管理',
  1188. icon: 'el-icon-folder-opened',
  1189. info: '费项管理表数据的维护',
  1190. url: 'sa-view/tb-fee-item/tb-fee-item-list.html',
  1191. childList: [{
  1192. id: 'tb-fee-item-add',
  1193. name: '费项添加',
  1194. isShow: false
  1195. },
  1196. {
  1197. id: 'tb-fee-item-edit',
  1198. name: '费项更新',
  1199. isShow: false
  1200. },
  1201. {
  1202. id: 'tb-fee-item-del',
  1203. name: '费项删除',
  1204. isShow: false
  1205. },
  1206. ]
  1207. },
  1208. {
  1209. id: 'tb-fee-item-record',
  1210. name: '收费记录',
  1211. icon: 'el-icon-folder-opened',
  1212. url: 'sa-view/tb-fee-item-record/tb-fee-item-record-list.html'
  1213. },
  1214. ]
  1215. }
  1216. );