index.js 43 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681
  1. import Layout from '@/page/index/'
  2. export default [{
  3. path: '/wel',
  4. component: Layout,
  5. redirect: '/wel/index',
  6. children: [{
  7. path: 'index',
  8. name: '首页',
  9. meta: {
  10. i18n: 'dashboard',
  11. keepAlive: true,
  12. },
  13. component: () =>
  14. import( /* webpackChunkName: "views" */ '@/views/wel/index')
  15. }, {
  16. path: 'dashboard',
  17. name: '控制台',
  18. meta: {
  19. i18n: 'dashboard',
  20. menu: false,
  21. },
  22. component: () =>
  23. import( /* webpackChunkName: "views" */ '@/views/wel/dashboard')
  24. }]
  25. }, {
  26. path: '/test',
  27. component: Layout,
  28. redirect: '/test/index',
  29. children: [{
  30. path: 'index',
  31. name: '测试页',
  32. meta: {
  33. i18n: 'test'
  34. },
  35. component: () =>
  36. import( /* webpackChunkName: "views" */ '@/views/util/test')
  37. }]
  38. }, {
  39. path: '/dict-horizontal',
  40. component: Layout,
  41. redirect: '/dict-horizontal/index',
  42. children: [{
  43. path: 'index',
  44. name: '字典管理',
  45. meta: {
  46. i18n: 'dict'
  47. },
  48. component: () =>
  49. import( /* webpackChunkName: "views" */ '@/views/util/demo/dict-horizontal')
  50. }]
  51. }, {
  52. path: '/dict-vertical',
  53. component: Layout,
  54. redirect: '/dict-vertical/index',
  55. children: [{
  56. path: 'index',
  57. name: '字典管理',
  58. meta: {
  59. i18n: 'dict'
  60. },
  61. component: () =>
  62. import( /* webpackChunkName: "views" */ '@/views/util/demo/dict-vertical')
  63. }]
  64. }, {
  65. path: '/info',
  66. component: Layout,
  67. redirect: '/info/index',
  68. children: [{
  69. path: 'index',
  70. name: '个人信息',
  71. meta: {
  72. i18n: 'info'
  73. },
  74. component: () => import( /* webpackChunkName: "views" */ '@/views/system/userinfo')
  75. }]
  76. }, {
  77. path: '/basicData/customerInformation/detailsPageEdit',
  78. component: Layout,
  79. hidden: true,
  80. children: [{
  81. path: '/basicData/customerInformation/detailsPageEdit',
  82. meta: {
  83. keepAlive: true,
  84. },
  85. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/customerInformation/detailsPageEdit')
  86. }]
  87. },
  88. {
  89. path: '/basicData/customerManagement/companyMaterial/detailsPageEdit',
  90. component: Layout,
  91. hidden: true,
  92. children: [{
  93. path: '/basicData/customerManagement/companyMaterial/detailsPageEdit',
  94. meta: {
  95. i18n: 'detailsPageEdit'
  96. },
  97. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/customerManagement/companyMaterial/detailsPageEdit')
  98. }]
  99. },
  100. {
  101. path: '/basicData/customerManagement/supplierMaterial/detailsPageEdit',
  102. component: Layout,
  103. hidden: true,
  104. children: [{
  105. path: '/basicData/customerManagement/supplierMaterial/detailsPageEdit',
  106. meta: {
  107. i18n: 'detailsPageEdit'
  108. },
  109. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/customerManagement/supplierMaterial/detailsPageEdit')
  110. }]
  111. },
  112. //商品false
  113. {
  114. path: '/commodityType_detailsPageEdit',
  115. component: Layout,
  116. hidden: true,
  117. children: [{
  118. path: '/commodityType_detailsPageEdit',
  119. meta: {
  120. i18n: 'commodityType_detailsPageEdit'
  121. },
  122. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/commodityType/detailsPageEdit')
  123. }]
  124. },
  125. //商城管理
  126. //商品列表详情页
  127. {
  128. path: '/productList_detailsPageEdit',
  129. component: Layout,
  130. hidden: true,
  131. children: [{
  132. path: '/productList_detailsPageEdit',
  133. meta: {
  134. i18n: 'productList_detailsPageEdit'
  135. },
  136. component: () => import( /* webpackChunkName: "views" */ '@/views/mallManagement/commodity/productList/detailsPageEdit')
  137. }]
  138. },
  139. //产品
  140. {
  141. path: '/basicData/productInformation/index',
  142. component: Layout,
  143. hidden: true,
  144. children: [{
  145. path: '/basicData/productInformation/index',
  146. name: '产品信息',
  147. meta: {
  148. keepAlive: true,
  149. },
  150. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/productInformation/index')
  151. }]
  152. },
  153. //客户分类
  154. {
  155. path: '/basicData/customerCategory/index',
  156. component: Layout,
  157. hidden: true,
  158. children: [{
  159. path: '/basicData/customerCategory/index',
  160. name: '客户分类',
  161. meta: {
  162. keepAlive: true,
  163. },
  164. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/customerCategory/index')
  165. }]
  166. },
  167. {
  168. path: '/report/reportlist',
  169. component: Layout,
  170. hidden: true,
  171. children: [{
  172. path: '/report/reportlist',
  173. name: '报表列表',
  174. meta: {
  175. keepAlive: true,
  176. },
  177. component: () =>
  178. import( /* webpackChunkName: "views" */ '@/views/report/reportlist')
  179. }]
  180. },
  181. //客户资料
  182. {
  183. path: '/basicData/customerInformation/index',
  184. component: Layout,
  185. hidden: true,
  186. children: [{
  187. path: '/basicData/customerInformation/index',
  188. name: '客户资料',
  189. meta: {
  190. keepAlive: true,
  191. },
  192. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/customerInformation/index')
  193. }]
  194. }, //车队资料
  195. {
  196. path: '/basicData/fleetInformation/index',
  197. component: Layout,
  198. hidden: true,
  199. children: [{
  200. path: '/basicData/fleetInformation/index',
  201. name: '车队资料',
  202. meta: {
  203. keepAlive: true,
  204. },
  205. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/fleetInformation/index')
  206. }]
  207. },
  208. //供应商分类
  209. {
  210. path: '/basicData/customerManagement/supplierType/index',
  211. component: Layout,
  212. hidden: true,
  213. children: [{
  214. path: '/basicData/customerManagement/supplierType/index',
  215. name: '供应商分类',
  216. meta: {
  217. keepAlive: true,
  218. },
  219. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/customerManagement/supplierType/index')
  220. }]
  221. },
  222. //供应商资料
  223. {
  224. path: '/basicData/customerManagement/supplierMaterial/index',
  225. component: Layout,
  226. hidden: true,
  227. children: [{
  228. path: '/basicData/customerManagement/supplierMaterial/index',
  229. name: '供应商资料',
  230. meta: {
  231. keepAlive: true,
  232. },
  233. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/customerManagement/supplierMaterial/index')
  234. }]
  235. },
  236. //公司分类
  237. {
  238. path: '/basicData/customerManagement/companyType/index',
  239. component: Layout,
  240. hidden: true,
  241. children: [{
  242. path: '/basicData/customerManagement/companyType/index',
  243. name: '所属公司分类',
  244. meta: {
  245. keepAlive: true,
  246. },
  247. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/customerManagement/companyType/index')
  248. }]
  249. },
  250. //公司资料
  251. {
  252. path: '/basicData/customerManagement/companyMaterial/index',
  253. component: Layout,
  254. hidden: true,
  255. children: [{
  256. path: '/basicData/customerManagement/companyMaterial/index',
  257. name: '所属公司资料',
  258. meta: {
  259. keepAlive: true,
  260. },
  261. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/customerManagement/companyMaterial/index')
  262. }]
  263. },
  264. //商品分类
  265. {
  266. path: '/basicData/commodityCategory/index',
  267. component: Layout,
  268. hidden: true,
  269. children: [{
  270. path: '/basicData/commodityCategory/index',
  271. name: '商品分类',
  272. meta: {
  273. keepAlive: true,
  274. },
  275. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/commodityCategory/index')
  276. }]
  277. },
  278. //商品分类
  279. {
  280. path: '/basicData/commodityType/index',
  281. component: Layout,
  282. hidden: true,
  283. children: [{
  284. path: '/basicData/commodityType/index',
  285. name: '商品信息',
  286. meta: {
  287. keepAlive: true,
  288. },
  289. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/commodityType/index')
  290. }]
  291. },
  292. //费用分类
  293. {
  294. path: '/basicData/basicFeesType/index',
  295. component: Layout,
  296. hidden: true,
  297. children: [{
  298. path: '/basicData/basicFeesType/index',
  299. name: '费用分类',
  300. meta: {
  301. keepAlive: true,
  302. },
  303. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/basicFeesType/index')
  304. }]
  305. },
  306. //费用详情
  307. {
  308. path: '/basicData/basicFeesDesc/index',
  309. component: Layout,
  310. hidden: true,
  311. children: [{
  312. path: '/basicData/basicFeesDesc/index',
  313. name: '费用详情',
  314. meta: {
  315. keepAlive: true,
  316. },
  317. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/basicFeesDesc/index')
  318. }]
  319. },
  320. //仓库分类
  321. {
  322. path: '/basicData/basicStorageType/index',
  323. component: Layout,
  324. hidden: true,
  325. children: [{
  326. path: '/basicData/basicStorageType/index',
  327. name: '仓库分类',
  328. meta: {
  329. keepAlive: true,
  330. },
  331. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/basicStorageType/index')
  332. }]
  333. },
  334. //库区明细
  335. {
  336. path: '/basicData/basicStorageDesc/index',
  337. component: Layout,
  338. hidden: true,
  339. children: [{
  340. path: '/basicData/basicStorageDesc/index',
  341. name: '库区明细',
  342. meta: {
  343. keepAlive: true,
  344. },
  345. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/basicStorageDesc/index')
  346. }]
  347. },
  348. //箱分类
  349. {
  350. path: '/basicData/container/type',
  351. component: Layout,
  352. hidden: true,
  353. children: [{
  354. path: '/basicData/container/type',
  355. name: '箱分类',
  356. meta: {
  357. keepAlive: true,
  358. },
  359. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/container/type')
  360. }]
  361. },
  362. //集装箱
  363. {
  364. path: '/basicData/container/index',
  365. component: Layout,
  366. hidden: true,
  367. children: [{
  368. path: '/basicData/container/index',
  369. name: '集装箱',
  370. meta: {
  371. keepAlive: true,
  372. },
  373. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/container/index')
  374. }]
  375. },
  376. //港口分类
  377. {
  378. path: '/basicData/portinformation/type',
  379. component: Layout,
  380. hidden: true,
  381. children: [{
  382. path: '/basicData/portinformation/type',
  383. name: '港口分类',
  384. meta: {
  385. keepAlive: true,
  386. },
  387. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/portinformation/type')
  388. }]
  389. },
  390. //港口资料
  391. {
  392. path: '/basicData/portinformation/index',
  393. component: Layout,
  394. hidden: true,
  395. children: [{
  396. path: '/basicData/portinformation/index',
  397. name: '港口资料',
  398. meta: {
  399. keepAlive: true,
  400. },
  401. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/portinformation/index')
  402. }]
  403. },
  404. //汇率管理
  405. {
  406. path: '/basicData/rateManagement/index',
  407. component: Layout,
  408. hidden: true,
  409. children: [{
  410. path: '/basicData/rateManagement/index',
  411. name: '汇率管理',
  412. meta: {
  413. keepAlive: true,
  414. },
  415. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/rateManagement/index')
  416. }]
  417. },
  418. //产品价格
  419. {
  420. path: '/maintenance/priceLibrary/index',
  421. component: Layout,
  422. hidden: true,
  423. children: [{
  424. path: '/maintenance/priceLibrary/index',
  425. name: '产品价格',
  426. meta: {
  427. keepAlive: true,
  428. },
  429. component: () => import( /* webpackChunkName: "views" */ '@/views/maintenance/priceLibrary/index')
  430. }]
  431. },
  432. //销售详情页
  433. {
  434. path: '/businessManagement/salesOrder/index',
  435. component: Layout,
  436. hidden: true,
  437. children: [{
  438. path: '/businessManagement/salesOrder/index',
  439. name: '销售订单(N)',
  440. meta: {
  441. i18n: 'businessManagement/salesOrder/index',
  442. keepAlive: true,
  443. },
  444. component: () => import( /* webpackChunkName: "views" */ '@/views/businessManagement/salesOrder/index')
  445. }]
  446. },
  447. {
  448. path: '/businessManagement/proxyOrder/index',
  449. component: Layout,
  450. hidden: true,
  451. children: [{
  452. path: '/businessManagement/proxyOrder/index',
  453. name: '代理订单(N)',
  454. meta: {
  455. keepAlive: true,
  456. },
  457. component: () => import( /* webpackChunkName: "views" */ '@/views/businessManagement/proxyOrder/index')
  458. }]
  459. },
  460. {
  461. path: '/statisticAnalysis/packFeeRecon/index',
  462. component: Layout,
  463. hidden: true,
  464. children: [{
  465. path: '/statisticAnalysis/packFeeRecon/index',
  466. name: '包装费用对账(N)',
  467. meta: {
  468. keepAlive: true,
  469. },
  470. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/packFeeRecon/index')
  471. }]
  472. },
  473. {
  474. path: '/statisticAnalysis/purchaseReconciliation/index',
  475. component: Layout,
  476. hidden: true,
  477. children: [{
  478. path: '/statisticAnalysis/purchaseReconciliation/index',
  479. name: '品牌采购对账(N)',
  480. meta: {
  481. keepAlive: true,
  482. },
  483. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/purchaseReconciliation/index')
  484. }]
  485. },
  486. {
  487. path: '/statisticAnalysis/salesProfitN/index',
  488. component: Layout,
  489. hidden: true,
  490. children: [{
  491. path: '/statisticAnalysis/salesProfitN/index',
  492. name: '销售利润(N)',
  493. meta: {
  494. keepAlive: true,
  495. },
  496. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/salesProfitN/index')
  497. }]
  498. },
  499. //发货通知详情页
  500. {
  501. path: '/businessManagement/deliveryNotice/index',
  502. component: Layout,
  503. hidden: true,
  504. children: [{
  505. path: '/businessManagement/deliveryNotice/index',
  506. name: '客户收货(N)',
  507. meta: {
  508. i18n: 'businessManagement/deliveryNotice/index',
  509. keepAlive: true,
  510. },
  511. component: () => import( /* webpackChunkName: "views" */ '@/views/businessManagement/deliveryNotice/index')
  512. }]
  513. },
  514. //价格管理详情页
  515. {
  516. path: '/priceManagement_detailsPageEdit',
  517. component: Layout,
  518. hidden: true,
  519. children: [{
  520. path: '/priceManagement_detailsPageEdit',
  521. meta: {
  522. i18n: 'priceManagement_detailsPageEdit'
  523. },
  524. component: () => import( /* webpackChunkName: "views" */ '@/views/maintenance/priceManagement/detailsPageEdit')
  525. }]
  526. },
  527. //销售政策详情页
  528. {
  529. path: '/maintenance/salesPolicy/index',
  530. component: Layout,
  531. hidden: true,
  532. children: [{
  533. path: '/maintenance/salesPolicy/index',
  534. name: '销售政策',
  535. meta: {
  536. i18n: 'maintenance/salesPolicy/index',
  537. keepAlive: true
  538. },
  539. component: () => import( /* webpackChunkName: "views" */ '@/views/maintenance/salesPolicy/index')
  540. }]
  541. },
  542. //陆运委托
  543. {
  544. path: '/landTransportation/placeAnOrder/index',
  545. component: Layout,
  546. hidden: true,
  547. children: [{
  548. path: '/landTransportation/placeAnOrder/index',
  549. name: '委托',
  550. meta: {
  551. i18n: '/landTransportation/placeAnOrder/index',
  552. keepAlive: true,
  553. },
  554. component: () => import( /* webpackChunkName: "views" */ '@/views/landTransportation/placeAnOrder/index')
  555. }]
  556. },
  557. //秒杀详情页
  558. {
  559. path: '/panicBuyingInformation_detailsPageEdit',
  560. component: Layout,
  561. hidden: true,
  562. children: [{
  563. path: '/panicBuyingInformation_detailsPageEdit',
  564. meta: {
  565. i18n: 'panicBuyingInformation_detailsPageEdit'
  566. },
  567. component: () => import( /* webpackChunkName: "views" */ '@/views/maintenance/panicBuyingInformation/detailsPageEdit')
  568. }]
  569. },
  570. //上架商品详情页
  571. {
  572. path: '/goodsOnTheShelves_detailsPageEdit',
  573. component: Layout,
  574. hidden: true,
  575. children: [{
  576. path: '/goodsOnTheShelves_detailsPageEdit',
  577. meta: {
  578. i18n: 'goodsOnTheShelves_detailsPageEdit'
  579. },
  580. component: () => import( /* webpackChunkName: "views" */ '@/views/maintenance/goodsOnTheShelves/detailsPageEdit')
  581. }]
  582. },
  583. //收货单详情页
  584. {
  585. path: '/businessManagement/receipt/index',
  586. component: Layout,
  587. hidden: true,
  588. children: [{
  589. path: '/businessManagement/receipt/index',
  590. name: '工厂发货(N)',
  591. meta: {
  592. keepAlive: true,
  593. },
  594. component: () => import( /* webpackChunkName: "views" */ '@/views/businessManagement/receipt/index')
  595. }]
  596. },
  597. //采购订单详情页
  598. {
  599. path: '/businessManagement/purchaseOrder/index',
  600. component: Layout,
  601. hidden: true,
  602. children: [{
  603. path: '/businessManagement/purchaseOrder/index',
  604. name: '采购订单(N)',
  605. meta: {
  606. i18n: 'businessManagement/purchaseOrder/index',
  607. keepAlive: true,
  608. },
  609. component: () => import( /* webpackChunkName: "views" */ '@/views/businessManagement/purchaseOrder/index')
  610. }]
  611. },
  612. // 采购合同详情页
  613. {
  614. path: '/purchase/contract/index',
  615. component: Layout,
  616. hidden: true,
  617. children: [{
  618. path: '/purchase/contract/index',
  619. name: '采购订单(I)',
  620. meta: {
  621. i18n: '/purchase/contract/index',
  622. keepAlive: true
  623. },
  624. component: () => import( /* webpackChunkName: "views" */ '@/views/purchase/contract/index')
  625. }]
  626. },
  627. // 销售合同详情页
  628. {
  629. path: '/salesManagement/salesContract/index',
  630. component: Layout,
  631. hidden: true,
  632. children: [{
  633. path: '/salesManagement/salesContract/index',
  634. name: '销售订单(I)',
  635. meta: {
  636. i18n: '/salesManagement/salesContract/index',
  637. keepAlive: true
  638. },
  639. component: () => import( /* webpackChunkName: "views" */ '@/views/salesManagement/salesContract/index')
  640. }]
  641. },
  642. // 进口 收货单详情页
  643. {
  644. path: '/importTrade/receipt/index',
  645. component: Layout,
  646. hidden: true,
  647. children: [{
  648. path: '/importTrade/receipt/index',
  649. name: '收货单(I)',
  650. meta: {
  651. i18n: '/importTrade/receipt/index',
  652. keepAlive: true
  653. },
  654. component: () => import( /* webpackChunkName: "views" */ '@/views/importTrade/receipt/index')
  655. }]
  656. },
  657. // 进口 发货单详情页
  658. {
  659. path: '/importTrade/invoice/index',
  660. component: Layout,
  661. hidden: true,
  662. children: [{
  663. path: '/importTrade/invoice/index',
  664. name: '发货单(I)',
  665. meta: {
  666. i18n: 'importTrade/invoice/index',
  667. keepAlive: true
  668. },
  669. component: () => import( /* webpackChunkName: "views" */ '@/views/importTrade/invoice/index')
  670. }]
  671. },
  672. // 出口 客户询价
  673. {
  674. path: '/exportTrade/customerInquiry/index',
  675. component: Layout,
  676. hidden: true,
  677. children: [{
  678. path: '/exportTrade/customerInquiry/index',
  679. name: '报价(E)',
  680. meta: {
  681. keepAlive: true,
  682. },
  683. component: () => import( /* webpackChunkName: "views" */ '@/views/exportTrade/customerInquiry/index')
  684. }]
  685. },
  686. // 出口 采购询价
  687. {
  688. path: '/exportTrade/purchaseInquiry/index',
  689. component: Layout,
  690. hidden: true,
  691. children: [{
  692. path: '/exportTrade/purchaseInquiry/index',
  693. name: '询价(E)',
  694. meta: {
  695. keepAlive: true,
  696. },
  697. component: () => import( /* webpackChunkName: "views" */ '@/views/exportTrade/purchaseInquiry/index')
  698. }]
  699. },
  700. // 出口 船务询价
  701. {
  702. path: '/exportTrade/shippingInquiry/index',
  703. component: Layout,
  704. hidden: true,
  705. children: [{
  706. path: '/exportTrade/shippingInquiry/index',
  707. name: '船务(E)',
  708. meta: {
  709. keepAlive: true,
  710. },
  711. component: () => import( /* webpackChunkName: "views" */ '@/views/exportTrade/shippingInquiry/index')
  712. }]
  713. },
  714. // 出口 销售订单
  715. {
  716. path: '/exportTrade/salesContract/index',
  717. component: Layout,
  718. hidden: true,
  719. children: [{
  720. path: '/exportTrade/salesContract/index',
  721. name: '销售(E)',
  722. meta: {
  723. keepAlive: true,
  724. },
  725. component: () => import( /* webpackChunkName: "views" */ '@/views/exportTrade/salesContract/index')
  726. }]
  727. },
  728. // 出口 采购订单
  729. {
  730. path: '/exportTrade/purchaseContract/index',
  731. component: Layout,
  732. hidden: true,
  733. children: [{
  734. path: '/exportTrade/purchaseContract/index',
  735. name: '采购(E)',
  736. meta: {
  737. keepAlive: true,
  738. },
  739. component: () => import( /* webpackChunkName: "views" */ '@/views/exportTrade/purchaseContract/index')
  740. }]
  741. },
  742. // 进口 发货单详情页
  743. {
  744. path: '/importInvoice_detailsPage',
  745. component: Layout,
  746. hidden: true,
  747. children: [{
  748. path: '/importInvoice_detailsPage',
  749. name: '发货单',
  750. meta: {
  751. i18n: 'importInvoice_detailsPage',
  752. keepAlive: true,
  753. },
  754. component: () => import( /* webpackChunkName: "views" */ '@/views/importTrade/invoice/detailsPageEdit')
  755. }]
  756. },
  757. // 出口 收货单
  758. {
  759. path: '/exportTrade/receipt/index',
  760. component: Layout,
  761. hidden: true,
  762. children: [{
  763. path: '/exportTrade/receipt/index',
  764. name: "收货(E)",
  765. meta: {
  766. keepAlive: true,
  767. },
  768. component: () => import( /* webpackChunkName: "views" */ '@/views/exportTrade/receipt/index')
  769. }]
  770. },
  771. // 出口 发货单详情页
  772. {
  773. path: '/exportTrade/invoice/index',
  774. component: Layout,
  775. hidden: true,
  776. children: [{
  777. path: '/exportTrade/invoice/index',
  778. name: "发货(E)",
  779. meta: {
  780. keepAlive: true,
  781. },
  782. component: () => import( /* webpackChunkName: "views" */ '@/views/exportTrade/invoice/index')
  783. }]
  784. },
  785. // 主营项目
  786. {
  787. path: '/workManagement/main-items/list',
  788. component: Layout,
  789. hidden: true,
  790. children: [{
  791. path: '/workManagement/main-items/list',
  792. name: "主营业务",
  793. meta: {
  794. keepAlive: true,
  795. },
  796. component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/main-items/list')
  797. }]
  798. },
  799. // 统计列表
  800. {
  801. path: '/workManagement/receipt/statisticalList',
  802. component: Layout,
  803. hidden: true,
  804. children: [{
  805. path: '/workManagement/receipt/statisticalList',
  806. name: "统计列表",
  807. meta: {
  808. keepAlive: true,
  809. },
  810. component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/receipt/statisticalList')
  811. }]
  812. },
  813. // 业绩分析
  814. {
  815. path: '/workManagement/performanceAnalysis/index',
  816. component: Layout,
  817. hidden: true,
  818. children: [{
  819. path: '/workManagement/performanceAnalysis/index',
  820. name: "业绩分析",
  821. meta: {
  822. keepAlive: true,
  823. },
  824. component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/performanceAnalysis/index')
  825. }]
  826. },
  827. // 结算详情页
  828. {
  829. path: '/workManagement/receipt/settleAccounts',
  830. component: Layout,
  831. hidden: true,
  832. children: [{
  833. path: '/workManagement/receipt/settleAccounts',
  834. name: "结算",
  835. meta: {
  836. keepAlive: true,
  837. },
  838. component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/receipt/settleAccounts')
  839. }]
  840. },
  841. // 付费申请
  842. {
  843. path: '/financialManagement/paymentRequest/index',
  844. component: Layout,
  845. hidden: true,
  846. children: [{
  847. path: '/financialManagement/paymentRequest/index',
  848. name: "付费申请",
  849. meta: {
  850. i18n: '/financialManagement/paymentRequest/index',
  851. keepAlive: true,
  852. },
  853. component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagement/paymentRequest/index')
  854. }]
  855. },
  856. // 付款结算
  857. {
  858. path: '/financialManagement/paymentSettle/paymentSettle',
  859. component: Layout,
  860. hidden: true,
  861. children: [{
  862. path: '/financialManagement/paymentSettle/paymentSettle',
  863. name: "付款结算",
  864. meta: {
  865. i18n: '/financialManagement/paymentSettle/paymentSettle',
  866. keepAlive: true,
  867. },
  868. component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagement/paymentSettle/paymentSettle')
  869. }]
  870. },
  871. //收款结算
  872. {
  873. path: '/financialManagement/receiptSettle/receiptSettle',
  874. component: Layout,
  875. hidden: true,
  876. children: [{
  877. path: '/financialManagement/receiptSettle/receiptSettle',
  878. name: "收款结算",
  879. meta: {
  880. i18n: '/financialManagement/receiptSettle/receiptSettle',
  881. keepAlive: true,
  882. },
  883. component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagement/receiptSettle/receiptSettle')
  884. }]
  885. },
  886. //审批数据
  887. {
  888. path: '/approveData/index',
  889. component: Layout,
  890. hidden: true,
  891. children: [{
  892. path: '/approveData/index',
  893. name: "审批数据",
  894. meta: {
  895. i18n: '/approveData/index',
  896. keepAlive: true,
  897. },
  898. component: () => import( /* webpackChunkName: "views" */ '@/views/approveData/index')
  899. }]
  900. },
  901. // 账单明细
  902. {
  903. path: '/bill_details',
  904. component: Layout,
  905. hidden: true,
  906. children: [{
  907. path: '/financialManagement/billDetails/billDetails',
  908. name: "账单明细",
  909. meta: {
  910. i18n: '/financialManagement/billDetails/billDetails',
  911. keepAlive: true,
  912. },
  913. component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagement/billDetails/billDetails')
  914. }]
  915. },
  916. //销项发票
  917. {
  918. path: '/financialManagement/outputInvoice/outputInvoice',
  919. component: Layout,
  920. hidden: true,
  921. children: [{
  922. path: '/financialManagement/outputInvoice/outputInvoice',
  923. name: "销项发票",
  924. meta: {
  925. i18n: '/financialManagement/outputInvoice/outputInvoice',
  926. keepAlive: true,
  927. },
  928. component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagement/outputInvoice/outputInvoice')
  929. }]
  930. },
  931. //进项发票
  932. {
  933. path: '/financialManagement/incomeInvoice/incomeInvoice',
  934. component: Layout,
  935. hidden: true,
  936. children: [{
  937. path: '/financialManagement/incomeInvoice/incomeInvoice',
  938. name: "进项发票",
  939. meta: {
  940. i18n: '/financialManagement/incomeInvoice/incomeInvoice',
  941. keepAlive: true,
  942. },
  943. component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagement/incomeInvoice/incomeInvoice')
  944. }]
  945. },
  946. //进口库存账
  947. {
  948. path: '/purchase/stockBill/index',
  949. component: Layout,
  950. hidden: true,
  951. children: [{
  952. path: '/purchase/stockBill/index',
  953. name: "库存账",
  954. meta: {
  955. keepAlive: true,
  956. },
  957. component: () => import( /* webpackChunkName: "views" */ '@/views/purchase/stockBill/index')
  958. }]
  959. },
  960. {
  961. path: '/statisticAnalysis/dataDetail/index',
  962. component: Layout,
  963. hidden: true,
  964. children: [{
  965. path: '/statisticAnalysis/dataDetail/index',
  966. name: "数据明细(N)",
  967. meta: {
  968. i18n: '/statisticAnalysis/dataDetail/index',
  969. keepAlive: true,
  970. },
  971. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/dataDetail/index')
  972. }]
  973. },
  974. {
  975. path: '/statisticAnalysis/dataDetail/index',
  976. component: Layout,
  977. hidden: true,
  978. children: [{
  979. path: '/statisticAnalysis/dataDetail/index',
  980. name: "数据明细(N)",
  981. meta: {
  982. i18n: '/statisticAnalysis/dataDetail/index',
  983. keepAlive: true,
  984. },
  985. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/dataDetail/index')
  986. }]
  987. },
  988. {
  989. path: '/statisticAnalysis/salesmanCommission/index',
  990. component: Layout,
  991. hidden: true,
  992. children: [{
  993. path: '/statisticAnalysis/salesmanCommission/index',
  994. name: "销售人员提成(N)",
  995. meta: {
  996. i18n: '/statisticAnalysis/salesmanCommission/index',
  997. keepAlive: true,
  998. },
  999. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/salesmanCommission/index')
  1000. }]
  1001. },
  1002. {
  1003. path: '/statisticAnalysis/salesDetails/index',
  1004. component: Layout,
  1005. hidden: true,
  1006. children: [{
  1007. path: '/statisticAnalysis/salesDetails/index',
  1008. name: "销售明细(N)",
  1009. meta: {
  1010. i18n: '/statisticAnalysis/salesDetails/index',
  1011. keepAlive: true,
  1012. },
  1013. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/salesDetails/index')
  1014. }]
  1015. },
  1016. //利润分析
  1017. {
  1018. path: '/statisticAnalysis/profit/index',
  1019. component: Layout,
  1020. hidden: true,
  1021. children: [{
  1022. path: '/statisticAnalysis/profit/index',
  1023. name: "利润分析",
  1024. meta: {
  1025. i18n: '/statisticAnalysis/profit/index',
  1026. keepAlive: true,
  1027. },
  1028. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/profit/index')
  1029. }]
  1030. },
  1031. //销售利润
  1032. {
  1033. path: '/statisticAnalysis/salesProfit/index',
  1034. component: Layout,
  1035. hidden: true,
  1036. children: [{
  1037. path: '/statisticAnalysis/salesProfit/index',
  1038. name: "销售利润",
  1039. meta: {
  1040. keepAlive: true,
  1041. },
  1042. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/salesProfit/index')
  1043. }]
  1044. },
  1045. //利润分析
  1046. {
  1047. path: '/statisticAnalysis/royalty/index',
  1048. component: Layout,
  1049. hidden: true,
  1050. children: [{
  1051. path: '/statisticAnalysis/royalty/index',
  1052. name: "提成统计",
  1053. meta: {
  1054. i18n: '/statisticAnalysis/royalty/index',
  1055. keepAlive: true,
  1056. },
  1057. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/royalty/index')
  1058. }]
  1059. },
  1060. // 订单详情
  1061. {
  1062. path: '/orderManagement/orderDetail/index',
  1063. component: Layout,
  1064. hidden: true,
  1065. children: [{
  1066. path: '/orderManagement/orderDetail/index',
  1067. name: "订单详情",
  1068. meta: {
  1069. i18n: '/orderManagement/orderDetail/index',
  1070. keepAlive: true,
  1071. },
  1072. component: () => import( /* webpackChunkName: "views" */ '@/views/orderManagement/orderDetail/index')
  1073. }]
  1074. },
  1075. {
  1076. path: '/work/process/leave',
  1077. component: Layout,
  1078. redirect: '/work/process/leave/form',
  1079. children: [{
  1080. path: 'form/:processDefinitionId',
  1081. name: '请假流程',
  1082. meta: {
  1083. i18n: 'work'
  1084. },
  1085. component: () =>
  1086. import( /* webpackChunkName: "views" */ '@/views/work/process/leave/form')
  1087. }, {
  1088. path: 'handle/:taskId/:processInstanceId/:businessId',
  1089. name: '处理请假流程',
  1090. meta: {
  1091. i18n: 'work'
  1092. },
  1093. component: () =>
  1094. import( /* webpackChunkName: "views" */ '@/views/work/process/leave/handle')
  1095. }, {
  1096. path: 'detail/:processInstanceId/:businessId',
  1097. name: '请假流程详情',
  1098. meta: {
  1099. i18n: 'work'
  1100. },
  1101. component: () =>
  1102. import( /* webpackChunkName: "views" */ '@/views/work/process/leave/detail')
  1103. }]
  1104. }, {
  1105. path: '/work/process/test',
  1106. component: Layout,
  1107. redirect: '/work/process/test/form',
  1108. children: [{
  1109. path: 'form/:processDefinitionId',
  1110. name: '请假流程',
  1111. meta: {
  1112. i18n: 'work'
  1113. },
  1114. component: () =>
  1115. import( /* webpackChunkName: "views" */ '@/views/work/process/test/form')
  1116. }, {
  1117. path: 'handle/:taskId/:processInstanceId/:businessId',
  1118. name: '处理请假流程',
  1119. meta: {
  1120. i18n: 'work'
  1121. },
  1122. component: () =>
  1123. import( /* webpackChunkName: "views" */ '@/views/work/process/test/handle')
  1124. }, {
  1125. path: 'detail/:processInstanceId/:businessId',
  1126. name: '请假流程详情',
  1127. meta: {
  1128. i18n: 'work'
  1129. },
  1130. component: () =>
  1131. import( /* webpackChunkName: "views" */ '@/views/work/process/leave/detail')
  1132. }]
  1133. },
  1134. {
  1135. path: '/businessManagement/inventoryAccount/detail',
  1136. component: Layout,
  1137. hidden: true,
  1138. children: [{
  1139. path: '/businessManagement/inventoryAccount/detail',
  1140. name: '锁定订单明细',
  1141. meta: {
  1142. keepAlive: true,
  1143. },
  1144. component: () => import( /* webpackChunkName: "views" */ '@/views/businessManagement/inventoryAccount/detail')
  1145. }]
  1146. },
  1147. {
  1148. path: '/basicData/facultyManagement/index',
  1149. component: Layout,
  1150. hidden: true,
  1151. children: [{
  1152. path: '/basicData/facultyManagement/index',
  1153. name: '教职工管理',
  1154. meta: {
  1155. keepAlive: true,
  1156. },
  1157. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/facultyManagement/index')
  1158. }]
  1159. },
  1160. {
  1161. path: '/basicData/salaryConfiguration/index',
  1162. component: Layout,
  1163. hidden: true,
  1164. children: [{
  1165. path: '/basicData/salaryConfiguration/index',
  1166. name: '学校标准配置',
  1167. meta: {
  1168. keepAlive: true,
  1169. },
  1170. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/salaryConfiguration/index')
  1171. }]
  1172. },
  1173. {
  1174. path: '/salaryManagement/primarySchool/index',
  1175. component: Layout,
  1176. hidden: true,
  1177. children: [{
  1178. path: '/salaryManagement/primarySchool/index',
  1179. name: '小学部',
  1180. meta: {
  1181. keepAlive: true,
  1182. },
  1183. component: () => import( /* webpackChunkName: "views" */ '@/views/salaryManagement/primarySchool/index')
  1184. }]
  1185. },
  1186. {
  1187. path: '/salaryManagement/juniorhighSchool/index',
  1188. component: Layout,
  1189. hidden: true,
  1190. children: [{
  1191. path: '/salaryManagement/juniorhighSchool/index',
  1192. name: '初中部',
  1193. meta: {
  1194. keepAlive: true,
  1195. },
  1196. component: () => import( /* webpackChunkName: "views" */ '@/views/salaryManagement/juniorhighSchool/index')
  1197. }]
  1198. },
  1199. {
  1200. path: '/salaryManagement/highSchool/index',
  1201. component: Layout,
  1202. hidden: true,
  1203. children: [{
  1204. path: '/salaryManagement/highSchool/index',
  1205. name: '高中部',
  1206. meta: {
  1207. keepAlive: true,
  1208. },
  1209. component: () => import( /* webpackChunkName: "views" */ '@/views/salaryManagement/highSchool/index')
  1210. }]
  1211. },
  1212. {
  1213. path: '/salaryManagement/logisticsDepartment/index',
  1214. component: Layout,
  1215. hidden: true,
  1216. children: [{
  1217. path: '/salaryManagement/logisticsDepartment/index',
  1218. name: '后勤部',
  1219. meta: {
  1220. keepAlive: true,
  1221. },
  1222. component: () => import( /* webpackChunkName: "views" */ '@/views/salaryManagement/logisticsDepartment/index')
  1223. }]
  1224. },
  1225. {
  1226. path: '/system/businessLock/index',
  1227. component: Layout,
  1228. hidden: true,
  1229. children: [{
  1230. path: '/system/businessLock/index',
  1231. name: '模块加锁',
  1232. meta: {
  1233. keepAlive: true,
  1234. },
  1235. component: () => import( /* webpackChunkName: "views" */ '@/views/system/businessLock/index')
  1236. }]
  1237. },
  1238. {
  1239. path: '/dealer/sales/index',
  1240. component: Layout,
  1241. hidden: true,
  1242. children: [{
  1243. path: '/dealer/sales/index',
  1244. name: '销售订单(D)',
  1245. meta: {
  1246. keepAlive: true,
  1247. },
  1248. component: () => import( /* webpackChunkName: "views" */ '@/views/dealer/sales/index')
  1249. }]
  1250. },
  1251. {
  1252. path: '/dealer/purchase/index',
  1253. component: Layout,
  1254. hidden: true,
  1255. children: [{
  1256. path: '/dealer/purchase/index',
  1257. name: '采购订单(D)',
  1258. meta: {
  1259. keepAlive: true,
  1260. },
  1261. component: () => import( /* webpackChunkName: "views" */ '@/views/dealer/purchase/index')
  1262. }]
  1263. },
  1264. //司机
  1265. {
  1266. path: '/basicData/landTransportation/driverInformation/index',
  1267. component: Layout,
  1268. hidden: true,
  1269. children: [{
  1270. path: '/basicData/landTransportation/driverInformation/index',
  1271. name: '司机',
  1272. meta: {
  1273. i18n: '/basicData/landTransportation/driverInformation/index',
  1274. keepAlive: true,
  1275. },
  1276. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/landTransportation/driverInformation/index')
  1277. }]
  1278. },
  1279. //车辆
  1280. {
  1281. path: '/basicData/landTransportation/vehicleInformation/index',
  1282. component: Layout,
  1283. hidden: true,
  1284. children: [{
  1285. path: '/basicData/landTransportation/vehicleInformation/index',
  1286. name: '车辆',
  1287. meta: {
  1288. i18n: '/basicData/landTransportation/driverInformation/index',
  1289. keepAlive: true,
  1290. },
  1291. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/landTransportation/vehicleInformation/index')
  1292. }]
  1293. },
  1294. //陆运委托
  1295. {
  1296. path: '/landTransportation/placeAnOrder/index',
  1297. component: Layout,
  1298. hidden: true,
  1299. children: [{
  1300. path: '/landTransportation/placeAnOrder/index',
  1301. name: '委托',
  1302. meta: {
  1303. i18n: '/landTransportation/placeAnOrder/index',
  1304. keepAlive: true,
  1305. },
  1306. component: () => import( /* webpackChunkName: "views" */ '@/views/landTransportation/placeAnOrder/index')
  1307. }]
  1308. },
  1309. //派车
  1310. {
  1311. path: '/landTransportation/dispatchingCars/index',
  1312. component: Layout,
  1313. hidden: true,
  1314. children: [{
  1315. path: '/landTransportation/dispatchingCars/index',
  1316. name: '调度',
  1317. meta: {
  1318. i18n: '/landTransportation/dispatchingCars/index',
  1319. keepAlive: true,
  1320. },
  1321. component: () => import( /* webpackChunkName: "views" */ '@/views/landTransportation/dispatchingCars/index')
  1322. }]
  1323. },
  1324. //派车
  1325. {
  1326. path: '/landTransportation/bulkCargo/index',
  1327. component: Layout,
  1328. hidden: true,
  1329. children: [{
  1330. path: '/landTransportation/bulkCargo/index',
  1331. name: '散货',
  1332. meta: {
  1333. i18n: '/landTransportation/bulkCargo/index',
  1334. keepAlive: true,
  1335. },
  1336. component: () => import( /* webpackChunkName: "views" */ '@/views/landTransportation/bulkCargo/index')
  1337. }]
  1338. },
  1339. //陆运台账
  1340. {
  1341. path: '/landTransportation/reportAnalysis/index',
  1342. component: Layout,
  1343. hidden: true,
  1344. children: [{
  1345. path: '/landTransportation/reportAnalysis/index',
  1346. name: '陆运台账',
  1347. meta: {
  1348. i18n: '/landTransportation/reportAnalysis/index',
  1349. keepAlive: true,
  1350. },
  1351. component: () => import( /* webpackChunkName: "views" */ '@/views/landTransportation/reportAnalysis/index')
  1352. }]
  1353. },
  1354. //运维-价格管理
  1355. {
  1356. path: '/maintenance/priceManagement/index',
  1357. component: Layout,
  1358. hidden: true,
  1359. children: [{
  1360. path: '/maintenance/priceManagement/index',
  1361. name: '价格管理',
  1362. meta: {
  1363. i18n: '/maintenance/priceManagement/index',
  1364. keepAlive: true,
  1365. },
  1366. component: () => import( /* webpackChunkName: "views" */ '@/views/maintenance/priceManagement/index')
  1367. }]
  1368. },
  1369. //经销商库存账
  1370. {
  1371. path: '/dealer/stock/index',
  1372. component: Layout,
  1373. hidden: true,
  1374. children: [{
  1375. path: '/dealer/stock/index',
  1376. name: '库存账(D)',
  1377. meta: {
  1378. i18n: '/dealer/stock/index',
  1379. keepAlive: true,
  1380. },
  1381. component: () => import( /* webpackChunkName: "views" */ '@/views/dealer/stock/index')
  1382. }]
  1383. },
  1384. //内贸库存账
  1385. {
  1386. path: '/businessManagement/inventoryAccount/index',
  1387. component: Layout,
  1388. hidden: true,
  1389. children: [{
  1390. path: '/businessManagement/inventoryAccount/index',
  1391. name: '库存账(N)',
  1392. meta: {
  1393. i18n: '/businessManagement/inventoryAccount/index',
  1394. keepAlive: true,
  1395. },
  1396. component: () => import( /* webpackChunkName: "views" */ '@/views/businessManagement/inventoryAccount/index')
  1397. }]
  1398. },
  1399. //办公用品-采购申请
  1400. {
  1401. path: '/workManagement/purchaseApply/index',
  1402. component: Layout,
  1403. hidden: true,
  1404. children: [{
  1405. path: '/workManagement/purchaseApply/index',
  1406. name: '采购申请',
  1407. meta: {
  1408. i18n: '/workManagement/purchaseApply/index',
  1409. keepAlive: true,
  1410. },
  1411. component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/purchaseApply/index')
  1412. }]
  1413. },
  1414. //办公用品-入库
  1415. {
  1416. path: '/workManagement/warehousing/index',
  1417. component: Layout,
  1418. hidden: true,
  1419. children: [{
  1420. path: '/workManagement/warehousing/index',
  1421. name: '入库',
  1422. meta: {
  1423. i18n: '/workManagement/warehousing/index',
  1424. keepAlive: true,
  1425. },
  1426. component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/warehousing/index')
  1427. }]
  1428. },
  1429. //办公用品-领用
  1430. {
  1431. path: '/workManagement/requisition/index',
  1432. component: Layout,
  1433. hidden: true,
  1434. children: [{
  1435. path: '/workManagement/requisition/index',
  1436. name: '领用',
  1437. meta: {
  1438. i18n: '/workManagement/requisition/index',
  1439. keepAlive: true,
  1440. },
  1441. component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/requisition/index')
  1442. }]
  1443. },
  1444. //销售机会
  1445. {
  1446. path: '/saleLeads/index',
  1447. component: Layout,
  1448. hidden: true,
  1449. children: [{
  1450. path: '/saleLeads/index',
  1451. name: '销售机会',
  1452. meta: {
  1453. i18n: '/saleLeads/index',
  1454. keepAlive: true,
  1455. },
  1456. component: () => import( /* webpackChunkName: "views" */ '@/views/saleLeads/index')
  1457. }]
  1458. },
  1459. //办公用品库存账
  1460. {
  1461. path: '/workManagement/stock/index',
  1462. component: Layout,
  1463. hidden: true,
  1464. children: [{
  1465. path: '/workManagement/stock/index',
  1466. name: '库存账(O)',
  1467. meta: {
  1468. i18n: '/workManagement/stock/index',
  1469. keepAlive: true,
  1470. },
  1471. component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/stock/index')
  1472. }]
  1473. },
  1474. //报销
  1475. {
  1476. path: '/reimbursement/index',
  1477. component: Layout,
  1478. hidden: true,
  1479. children: [{
  1480. path: '/reimbursement/index',
  1481. name: '报销',
  1482. meta: {
  1483. i18n: '/reimbursement/index',
  1484. keepAlive: true,
  1485. },
  1486. component: () => import( /* webpackChunkName: "views" */ '@/views/reimbursement/index')
  1487. }]
  1488. },
  1489. //交接单
  1490. {
  1491. path: '/workManagement/handoverSheet/index',
  1492. component: Layout,
  1493. hidden: true,
  1494. children: [{
  1495. path: '/workManagement/handoverSheet/index',
  1496. name: '交接单',
  1497. meta: {
  1498. i18n: '/workManagement/handoverSheet/index',
  1499. keepAlive: true,
  1500. },
  1501. component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/handoverSheet/index')
  1502. }]
  1503. },
  1504. //经销商产品调拨
  1505. {
  1506. path: '/dealer/allocation/index',
  1507. component: Layout,
  1508. hidden: true,
  1509. children: [{
  1510. path: '/dealer/allocation/index',
  1511. name: '产品调拨',
  1512. meta: {
  1513. i18n: '/dealer/allocation/index',
  1514. keepAlive: true,
  1515. },
  1516. component: () => import( /* webpackChunkName: "views" */ '@/views/dealer/allocation/index')
  1517. }]
  1518. },
  1519. //数据明细(N)
  1520. {
  1521. path: '/statisticAnalysis/dataDetail/index',
  1522. component: Layout,
  1523. hidden: true,
  1524. children: [{
  1525. path: '/statisticAnalysis/dataDetail/index',
  1526. name: '数据明细(N)',
  1527. meta: {
  1528. i18n: '/statisticAnalysis/dataDetail/index',
  1529. keepAlive: true,
  1530. },
  1531. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/dataDetail/index')
  1532. }]
  1533. },
  1534. //销售对账
  1535. {
  1536. path: '/statisticAnalysis/salesReconciliation/index',
  1537. component: Layout,
  1538. hidden: true,
  1539. children: [{
  1540. path: '/statisticAnalysis/salesReconciliation/index',
  1541. name: '销售对账',
  1542. meta: {
  1543. i18n: '/statisticAnalysis/salesReconciliation/index',
  1544. keepAlive: true,
  1545. },
  1546. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/salesReconciliation/index')
  1547. }]
  1548. },
  1549. //销售对账详情
  1550. {
  1551. path: '/statisticAnalysis/salesReconciliationDetails/index',
  1552. component: Layout,
  1553. hidden: true,
  1554. children: [{
  1555. path: '/statisticAnalysis/salesReconciliationDetails/index',
  1556. name: '销售对账详情',
  1557. meta: {
  1558. i18n: '/statisticAnalysis/salesReconciliationDetails/index',
  1559. keepAlive: true,
  1560. },
  1561. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/salesReconciliationDetails/index')
  1562. }]
  1563. },
  1564. //应收总账
  1565. {
  1566. path: '/statisticAnalysis/collectLedger/index',
  1567. component: Layout,
  1568. hidden: true,
  1569. children: [{
  1570. path: '/statisticAnalysis/collectLedger/index',
  1571. name: '应收总账',
  1572. meta: {
  1573. i18n: '/statisticAnalysis/collectLedger/index',
  1574. keepAlive: true,
  1575. },
  1576. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/collectLedger/index')
  1577. }]
  1578. },
  1579. //应付总账
  1580. {
  1581. path: '/statisticAnalysis/paymentLedger/index',
  1582. component: Layout,
  1583. hidden: true,
  1584. children: [{
  1585. path: '/statisticAnalysis/paymentLedger/index',
  1586. name: '应付总账',
  1587. meta: {
  1588. i18n: '/statisticAnalysis/paymentLedger/index',
  1589. keepAlive: true,
  1590. },
  1591. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/paymentLedger/index')
  1592. }]
  1593. },
  1594. //利润总账
  1595. {
  1596. path: '/statisticAnalysis/profitLedger/index',
  1597. component: Layout,
  1598. hidden: true,
  1599. children: [{
  1600. path: '/statisticAnalysis/profitLedger/index',
  1601. name: '利润总账',
  1602. meta: {
  1603. i18n: '/statisticAnalysis/profitLedger/index',
  1604. keepAlive: true,
  1605. },
  1606. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/profitLedger/index')
  1607. }]
  1608. },
  1609. //采购合同(D)
  1610. {
  1611. path: '/dealer/purchaseContract/index',
  1612. component: Layout,
  1613. hidden: true,
  1614. children: [{
  1615. path: '/dealer/purchaseContract/index',
  1616. name: '采购合同(D)',
  1617. meta: {
  1618. i18n: '/dealer/purchaseContract/index',
  1619. keepAlive: true,
  1620. },
  1621. component: () => import( /* webpackChunkName: "views" */ '@/views/dealer/purchaseContract/index')
  1622. }]
  1623. },
  1624. {
  1625. path: '/warehousing/inStock/index',
  1626. component: Layout,
  1627. hidden: true,
  1628. children: [{
  1629. path: '/warehousing/inStock/index',
  1630. name: '入库',
  1631. meta: {
  1632. i18n: '/warehousing/inStock/index',
  1633. keepAlive: true,
  1634. },
  1635. component: () => import( /* webpackChunkName: "views" */ '@/views/warehousing/inStock/index')
  1636. }]
  1637. },
  1638. {
  1639. path: '/warehousing/outStock/index',
  1640. component: Layout,
  1641. hidden: true,
  1642. children: [{
  1643. path: '/warehousing/outStock/index',
  1644. name: '出库',
  1645. meta: {
  1646. i18n: '/warehousing/outStock/index',
  1647. keepAlive: true,
  1648. },
  1649. component: () => import( /* webpackChunkName: "views" */ '@/views/warehousing/outStock/index')
  1650. }]
  1651. },
  1652. {
  1653. path: '/warehousing/stockTransfer/index',
  1654. component: Layout,
  1655. hidden: true,
  1656. children: [{
  1657. path: '/warehousing/stockTransfer/index',
  1658. name: '调拨',
  1659. meta: {
  1660. i18n: '/warehousing/stockTransfer/index',
  1661. keepAlive: true,
  1662. },
  1663. component: () => import( /* webpackChunkName: "views" */ '@/views/warehousing/stockTransfer/index')
  1664. }]
  1665. },
  1666. {
  1667. path: '/warehousing/goodsTransfer/index',
  1668. component: Layout,
  1669. hidden: true,
  1670. children: [{
  1671. path: '/warehousing/goodsTransfer/index',
  1672. name: '货转',
  1673. meta: {
  1674. i18n: '/warehousing/goodsTransfer/index',
  1675. keepAlive: true,
  1676. },
  1677. component: () => import( /* webpackChunkName: "views" */ '@/views/warehousing/goodsTransfer/index')
  1678. }]
  1679. },
  1680. ]