index.js 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629
  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. {
  449. path: '/businessManagement/deliveryNotice/index',
  450. component: Layout,
  451. hidden: true,
  452. children: [{
  453. path: '/businessManagement/deliveryNotice/index',
  454. name: '客户收货(N)',
  455. meta: {
  456. i18n: 'businessManagement/deliveryNotice/index',
  457. keepAlive: true,
  458. },
  459. component: () => import( /* webpackChunkName: "views" */ '@/views/businessManagement/deliveryNotice/index')
  460. }]
  461. },
  462. //价格管理详情页
  463. {
  464. path: '/priceManagement_detailsPageEdit',
  465. component: Layout,
  466. hidden: true,
  467. children: [{
  468. path: '/priceManagement_detailsPageEdit',
  469. meta: {
  470. i18n: 'priceManagement_detailsPageEdit'
  471. },
  472. component: () => import( /* webpackChunkName: "views" */ '@/views/maintenance/priceManagement/detailsPageEdit')
  473. }]
  474. },
  475. //销售政策详情页
  476. {
  477. path: '/maintenance/salesPolicy/index',
  478. component: Layout,
  479. hidden: true,
  480. children: [{
  481. path: '/maintenance/salesPolicy/index',
  482. name: '销售政策',
  483. meta: {
  484. i18n: 'maintenance/salesPolicy/index',
  485. keepAlive: true
  486. },
  487. component: () => import( /* webpackChunkName: "views" */ '@/views/maintenance/salesPolicy/index')
  488. }]
  489. },
  490. //陆运委托
  491. {
  492. path: '/landTransportation/placeAnOrder/index',
  493. component: Layout,
  494. hidden: true,
  495. children: [{
  496. path: '/landTransportation/placeAnOrder/index',
  497. name: '委托',
  498. meta: {
  499. i18n: '/landTransportation/placeAnOrder/index',
  500. keepAlive: true,
  501. },
  502. component: () => import( /* webpackChunkName: "views" */ '@/views/landTransportation/placeAnOrder/index')
  503. }]
  504. },
  505. //秒杀详情页
  506. {
  507. path: '/panicBuyingInformation_detailsPageEdit',
  508. component: Layout,
  509. hidden: true,
  510. children: [{
  511. path: '/panicBuyingInformation_detailsPageEdit',
  512. meta: {
  513. i18n: 'panicBuyingInformation_detailsPageEdit'
  514. },
  515. component: () => import( /* webpackChunkName: "views" */ '@/views/maintenance/panicBuyingInformation/detailsPageEdit')
  516. }]
  517. },
  518. //上架商品详情页
  519. {
  520. path: '/goodsOnTheShelves_detailsPageEdit',
  521. component: Layout,
  522. hidden: true,
  523. children: [{
  524. path: '/goodsOnTheShelves_detailsPageEdit',
  525. meta: {
  526. i18n: 'goodsOnTheShelves_detailsPageEdit'
  527. },
  528. component: () => import( /* webpackChunkName: "views" */ '@/views/maintenance/goodsOnTheShelves/detailsPageEdit')
  529. }]
  530. },
  531. //收货单详情页
  532. {
  533. path: '/businessManagement/receipt/index',
  534. component: Layout,
  535. hidden: true,
  536. children: [{
  537. path: '/businessManagement/receipt/index',
  538. name: '工厂发货(N)',
  539. meta: {
  540. keepAlive: true,
  541. },
  542. component: () => import( /* webpackChunkName: "views" */ '@/views/businessManagement/receipt/index')
  543. }]
  544. },
  545. //采购订单详情页
  546. {
  547. path: '/businessManagement/purchaseOrder/index',
  548. component: Layout,
  549. hidden: true,
  550. children: [{
  551. path: '/businessManagement/purchaseOrder/index',
  552. name: '采购订单(N)',
  553. meta: {
  554. i18n: 'businessManagement/purchaseOrder/index',
  555. keepAlive: true,
  556. },
  557. component: () => import( /* webpackChunkName: "views" */ '@/views/businessManagement/purchaseOrder/index')
  558. }]
  559. },
  560. // 采购合同详情页
  561. {
  562. path: '/purchase/contract/index',
  563. component: Layout,
  564. hidden: true,
  565. children: [{
  566. path: '/purchase/contract/index',
  567. name: '采购订单(I)',
  568. meta: {
  569. i18n: '/purchase/contract/index',
  570. keepAlive: true
  571. },
  572. component: () => import( /* webpackChunkName: "views" */ '@/views/purchase/contract/index')
  573. }]
  574. },
  575. // 销售合同详情页
  576. {
  577. path: '/salesManagement/salesContract/index',
  578. component: Layout,
  579. hidden: true,
  580. children: [{
  581. path: '/salesManagement/salesContract/index',
  582. name: '销售订单(I)',
  583. meta: {
  584. i18n: '/salesManagement/salesContract/index',
  585. keepAlive: true
  586. },
  587. component: () => import( /* webpackChunkName: "views" */ '@/views/salesManagement/salesContract/index')
  588. }]
  589. },
  590. // 进口 收货单详情页
  591. {
  592. path: '/importTrade/receipt/index',
  593. component: Layout,
  594. hidden: true,
  595. children: [{
  596. path: '/importTrade/receipt/index',
  597. name: '收货单(I)',
  598. meta: {
  599. i18n: '/importTrade/receipt/index',
  600. keepAlive: true
  601. },
  602. component: () => import( /* webpackChunkName: "views" */ '@/views/importTrade/receipt/index')
  603. }]
  604. },
  605. // 进口 发货单详情页
  606. {
  607. path: '/importTrade/invoice/index',
  608. component: Layout,
  609. hidden: true,
  610. children: [{
  611. path: '/importTrade/invoice/index',
  612. name: '发货单(I)',
  613. meta: {
  614. i18n: 'importTrade/invoice/index',
  615. keepAlive: true
  616. },
  617. component: () => import( /* webpackChunkName: "views" */ '@/views/importTrade/invoice/index')
  618. }]
  619. },
  620. // 出口 客户询价
  621. {
  622. path: '/exportTrade/customerInquiry/index',
  623. component: Layout,
  624. hidden: true,
  625. children: [{
  626. path: '/exportTrade/customerInquiry/index',
  627. name: '报价(E)',
  628. meta: {
  629. keepAlive: true,
  630. },
  631. component: () => import( /* webpackChunkName: "views" */ '@/views/exportTrade/customerInquiry/index')
  632. }]
  633. },
  634. // 出口 采购询价
  635. {
  636. path: '/exportTrade/purchaseInquiry/index',
  637. component: Layout,
  638. hidden: true,
  639. children: [{
  640. path: '/exportTrade/purchaseInquiry/index',
  641. name: '询价(E)',
  642. meta: {
  643. keepAlive: true,
  644. },
  645. component: () => import( /* webpackChunkName: "views" */ '@/views/exportTrade/purchaseInquiry/index')
  646. }]
  647. },
  648. // 出口 船务询价
  649. {
  650. path: '/exportTrade/shippingInquiry/index',
  651. component: Layout,
  652. hidden: true,
  653. children: [{
  654. path: '/exportTrade/shippingInquiry/index',
  655. name: '船务(E)',
  656. meta: {
  657. keepAlive: true,
  658. },
  659. component: () => import( /* webpackChunkName: "views" */ '@/views/exportTrade/shippingInquiry/index')
  660. }]
  661. },
  662. // 出口 销售订单
  663. {
  664. path: '/exportTrade/salesContract/index',
  665. component: Layout,
  666. hidden: true,
  667. children: [{
  668. path: '/exportTrade/salesContract/index',
  669. name: '销售(E)',
  670. meta: {
  671. keepAlive: true,
  672. },
  673. component: () => import( /* webpackChunkName: "views" */ '@/views/exportTrade/salesContract/index')
  674. }]
  675. },
  676. // 出口 采购订单
  677. {
  678. path: '/exportTrade/purchaseContract/index',
  679. component: Layout,
  680. hidden: true,
  681. children: [{
  682. path: '/exportTrade/purchaseContract/index',
  683. name: '采购(E)',
  684. meta: {
  685. keepAlive: true,
  686. },
  687. component: () => import( /* webpackChunkName: "views" */ '@/views/exportTrade/purchaseContract/index')
  688. }]
  689. },
  690. // 进口 发货单详情页
  691. {
  692. path: '/importInvoice_detailsPage',
  693. component: Layout,
  694. hidden: true,
  695. children: [{
  696. path: '/importInvoice_detailsPage',
  697. name: '发货单',
  698. meta: {
  699. i18n: 'importInvoice_detailsPage',
  700. keepAlive: true,
  701. },
  702. component: () => import( /* webpackChunkName: "views" */ '@/views/importTrade/invoice/detailsPageEdit')
  703. }]
  704. },
  705. // 出口 收货单
  706. {
  707. path: '/exportTrade/receipt/index',
  708. component: Layout,
  709. hidden: true,
  710. children: [{
  711. path: '/exportTrade/receipt/index',
  712. name: "收货(E)",
  713. meta: {
  714. keepAlive: true,
  715. },
  716. component: () => import( /* webpackChunkName: "views" */ '@/views/exportTrade/receipt/index')
  717. }]
  718. },
  719. // 出口 发货单详情页
  720. {
  721. path: '/exportTrade/invoice/index',
  722. component: Layout,
  723. hidden: true,
  724. children: [{
  725. path: '/exportTrade/invoice/index',
  726. name: "发货(E)",
  727. meta: {
  728. keepAlive: true,
  729. },
  730. component: () => import( /* webpackChunkName: "views" */ '@/views/exportTrade/invoice/index')
  731. }]
  732. },
  733. // 主营项目
  734. {
  735. path: '/workManagement/main-items/list',
  736. component: Layout,
  737. hidden: true,
  738. children: [{
  739. path: '/workManagement/main-items/list',
  740. name: "主营业务",
  741. meta: {
  742. keepAlive: true,
  743. },
  744. component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/main-items/list')
  745. }]
  746. },
  747. // 统计列表
  748. {
  749. path: '/workManagement/receipt/statisticalList',
  750. component: Layout,
  751. hidden: true,
  752. children: [{
  753. path: '/workManagement/receipt/statisticalList',
  754. name: "统计列表",
  755. meta: {
  756. keepAlive: true,
  757. },
  758. component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/receipt/statisticalList')
  759. }]
  760. },
  761. // 业绩分析
  762. {
  763. path: '/workManagement/performanceAnalysis/index',
  764. component: Layout,
  765. hidden: true,
  766. children: [{
  767. path: '/workManagement/performanceAnalysis/index',
  768. name: "业绩分析",
  769. meta: {
  770. keepAlive: true,
  771. },
  772. component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/performanceAnalysis/index')
  773. }]
  774. },
  775. // 结算详情页
  776. {
  777. path: '/workManagement/receipt/settleAccounts',
  778. component: Layout,
  779. hidden: true,
  780. children: [{
  781. path: '/workManagement/receipt/settleAccounts',
  782. name: "结算",
  783. meta: {
  784. keepAlive: true,
  785. },
  786. component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/receipt/settleAccounts')
  787. }]
  788. },
  789. // 付费申请
  790. {
  791. path: '/financialManagement/paymentRequest/index',
  792. component: Layout,
  793. hidden: true,
  794. children: [{
  795. path: '/financialManagement/paymentRequest/index',
  796. name: "付费申请",
  797. meta: {
  798. i18n: '/financialManagement/paymentRequest/index',
  799. keepAlive: true,
  800. },
  801. component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagement/paymentRequest/index')
  802. }]
  803. },
  804. // 付款结算
  805. {
  806. path: '/financialManagement/paymentSettle/paymentSettle',
  807. component: Layout,
  808. hidden: true,
  809. children: [{
  810. path: '/financialManagement/paymentSettle/paymentSettle',
  811. name: "付款结算",
  812. meta: {
  813. i18n: '/financialManagement/paymentSettle/paymentSettle',
  814. keepAlive: true,
  815. },
  816. component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagement/paymentSettle/paymentSettle')
  817. }]
  818. },
  819. //收款结算
  820. {
  821. path: '/financialManagement/receiptSettle/receiptSettle',
  822. component: Layout,
  823. hidden: true,
  824. children: [{
  825. path: '/financialManagement/receiptSettle/receiptSettle',
  826. name: "收款结算",
  827. meta: {
  828. i18n: '/financialManagement/receiptSettle/receiptSettle',
  829. keepAlive: true,
  830. },
  831. component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagement/receiptSettle/receiptSettle')
  832. }]
  833. },
  834. //审批数据
  835. {
  836. path: '/approveData/index',
  837. component: Layout,
  838. hidden: true,
  839. children: [{
  840. path: '/approveData/index',
  841. name: "审批数据",
  842. meta: {
  843. i18n: '/approveData/index',
  844. keepAlive: true,
  845. },
  846. component: () => import( /* webpackChunkName: "views" */ '@/views/approveData/index')
  847. }]
  848. },
  849. // 账单明细
  850. {
  851. path: '/bill_details',
  852. component: Layout,
  853. hidden: true,
  854. children: [{
  855. path: '/financialManagement/billDetails/billDetails',
  856. name: "账单明细",
  857. meta: {
  858. i18n: '/financialManagement/billDetails/billDetails',
  859. keepAlive: true,
  860. },
  861. component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagement/billDetails/billDetails')
  862. }]
  863. },
  864. //销项发票
  865. {
  866. path: '/financialManagement/outputInvoice/outputInvoice',
  867. component: Layout,
  868. hidden: true,
  869. children: [{
  870. path: '/financialManagement/outputInvoice/outputInvoice',
  871. name: "销项发票",
  872. meta: {
  873. i18n: '/financialManagement/outputInvoice/outputInvoice',
  874. keepAlive: true,
  875. },
  876. component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagement/outputInvoice/outputInvoice')
  877. }]
  878. },
  879. //进项发票
  880. {
  881. path: '/financialManagement/incomeInvoice/incomeInvoice',
  882. component: Layout,
  883. hidden: true,
  884. children: [{
  885. path: '/financialManagement/incomeInvoice/incomeInvoice',
  886. name: "进项发票",
  887. meta: {
  888. i18n: '/financialManagement/incomeInvoice/incomeInvoice',
  889. keepAlive: true,
  890. },
  891. component: () => import( /* webpackChunkName: "views" */ '@/views/financialManagement/incomeInvoice/incomeInvoice')
  892. }]
  893. },
  894. //进口库存账
  895. {
  896. path: '/purchase/stockBill/index',
  897. component: Layout,
  898. hidden: true,
  899. children: [{
  900. path: '/purchase/stockBill/index',
  901. name: "库存账",
  902. meta: {
  903. keepAlive: true,
  904. },
  905. component: () => import( /* webpackChunkName: "views" */ '@/views/purchase/stockBill/index')
  906. }]
  907. },
  908. {
  909. path: '/statisticAnalysis/dataDetail/index',
  910. component: Layout,
  911. hidden: true,
  912. children: [{
  913. path: '/statisticAnalysis/dataDetail/index',
  914. name: "数据明细(N)",
  915. meta: {
  916. i18n: '/statisticAnalysis/dataDetail/index',
  917. keepAlive: true,
  918. },
  919. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/dataDetail/index')
  920. }]
  921. },
  922. {
  923. path: '/statisticAnalysis/dataDetail/index',
  924. component: Layout,
  925. hidden: true,
  926. children: [{
  927. path: '/statisticAnalysis/dataDetail/index',
  928. name: "数据明细(N)",
  929. meta: {
  930. i18n: '/statisticAnalysis/dataDetail/index',
  931. keepAlive: true,
  932. },
  933. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/dataDetail/index')
  934. }]
  935. },
  936. {
  937. path: '/statisticAnalysis/salesmanCommission/index',
  938. component: Layout,
  939. hidden: true,
  940. children: [{
  941. path: '/statisticAnalysis/salesmanCommission/index',
  942. name: "销售人员提成(N)",
  943. meta: {
  944. i18n: '/statisticAnalysis/salesmanCommission/index',
  945. keepAlive: true,
  946. },
  947. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/salesmanCommission/index')
  948. }]
  949. },
  950. {
  951. path: '/statisticAnalysis/salesDetails/index',
  952. component: Layout,
  953. hidden: true,
  954. children: [{
  955. path: '/statisticAnalysis/salesDetails/index',
  956. name: "销售明细(N)",
  957. meta: {
  958. i18n: '/statisticAnalysis/salesDetails/index',
  959. keepAlive: true,
  960. },
  961. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/salesDetails/index')
  962. }]
  963. },
  964. //利润分析
  965. {
  966. path: '/statisticAnalysis/profit/index',
  967. component: Layout,
  968. hidden: true,
  969. children: [{
  970. path: '/statisticAnalysis/profit/index',
  971. name: "利润分析",
  972. meta: {
  973. i18n: '/statisticAnalysis/profit/index',
  974. keepAlive: true,
  975. },
  976. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/profit/index')
  977. }]
  978. },
  979. //销售利润
  980. {
  981. path: '/statisticAnalysis/salesProfit/index',
  982. component: Layout,
  983. hidden: true,
  984. children: [{
  985. path: '/statisticAnalysis/salesProfit/index',
  986. name: "销售利润",
  987. meta: {
  988. keepAlive: true,
  989. },
  990. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/salesProfit/index')
  991. }]
  992. },
  993. //利润分析
  994. {
  995. path: '/statisticAnalysis/royalty/index',
  996. component: Layout,
  997. hidden: true,
  998. children: [{
  999. path: '/statisticAnalysis/royalty/index',
  1000. name: "提成统计",
  1001. meta: {
  1002. i18n: '/statisticAnalysis/royalty/index',
  1003. keepAlive: true,
  1004. },
  1005. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/royalty/index')
  1006. }]
  1007. },
  1008. // 订单详情
  1009. {
  1010. path: '/orderManagement/orderDetail/index',
  1011. component: Layout,
  1012. hidden: true,
  1013. children: [{
  1014. path: '/orderManagement/orderDetail/index',
  1015. name: "订单详情",
  1016. meta: {
  1017. i18n: '/orderManagement/orderDetail/index',
  1018. keepAlive: true,
  1019. },
  1020. component: () => import( /* webpackChunkName: "views" */ '@/views/orderManagement/orderDetail/index')
  1021. }]
  1022. },
  1023. {
  1024. path: '/work/process/leave',
  1025. component: Layout,
  1026. redirect: '/work/process/leave/form',
  1027. children: [{
  1028. path: 'form/:processDefinitionId',
  1029. name: '请假流程',
  1030. meta: {
  1031. i18n: 'work'
  1032. },
  1033. component: () =>
  1034. import( /* webpackChunkName: "views" */ '@/views/work/process/leave/form')
  1035. }, {
  1036. path: 'handle/:taskId/:processInstanceId/:businessId',
  1037. name: '处理请假流程',
  1038. meta: {
  1039. i18n: 'work'
  1040. },
  1041. component: () =>
  1042. import( /* webpackChunkName: "views" */ '@/views/work/process/leave/handle')
  1043. }, {
  1044. path: 'detail/:processInstanceId/:businessId',
  1045. name: '请假流程详情',
  1046. meta: {
  1047. i18n: 'work'
  1048. },
  1049. component: () =>
  1050. import( /* webpackChunkName: "views" */ '@/views/work/process/leave/detail')
  1051. }]
  1052. }, {
  1053. path: '/work/process/test',
  1054. component: Layout,
  1055. redirect: '/work/process/test/form',
  1056. children: [{
  1057. path: 'form/:processDefinitionId',
  1058. name: '请假流程',
  1059. meta: {
  1060. i18n: 'work'
  1061. },
  1062. component: () =>
  1063. import( /* webpackChunkName: "views" */ '@/views/work/process/test/form')
  1064. }, {
  1065. path: 'handle/:taskId/:processInstanceId/:businessId',
  1066. name: '处理请假流程',
  1067. meta: {
  1068. i18n: 'work'
  1069. },
  1070. component: () =>
  1071. import( /* webpackChunkName: "views" */ '@/views/work/process/test/handle')
  1072. }, {
  1073. path: 'detail/:processInstanceId/:businessId',
  1074. name: '请假流程详情',
  1075. meta: {
  1076. i18n: 'work'
  1077. },
  1078. component: () =>
  1079. import( /* webpackChunkName: "views" */ '@/views/work/process/leave/detail')
  1080. }]
  1081. },
  1082. {
  1083. path: '/businessManagement/inventoryAccount/detail',
  1084. component: Layout,
  1085. hidden: true,
  1086. children: [{
  1087. path: '/businessManagement/inventoryAccount/detail',
  1088. name: '锁定订单明细',
  1089. meta: {
  1090. keepAlive: true,
  1091. },
  1092. component: () => import( /* webpackChunkName: "views" */ '@/views/businessManagement/inventoryAccount/detail')
  1093. }]
  1094. },
  1095. {
  1096. path: '/basicData/facultyManagement/index',
  1097. component: Layout,
  1098. hidden: true,
  1099. children: [{
  1100. path: '/basicData/facultyManagement/index',
  1101. name: '教职工管理',
  1102. meta: {
  1103. keepAlive: true,
  1104. },
  1105. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/facultyManagement/index')
  1106. }]
  1107. },
  1108. {
  1109. path: '/basicData/salaryConfiguration/index',
  1110. component: Layout,
  1111. hidden: true,
  1112. children: [{
  1113. path: '/basicData/salaryConfiguration/index',
  1114. name: '学校标准配置',
  1115. meta: {
  1116. keepAlive: true,
  1117. },
  1118. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/salaryConfiguration/index')
  1119. }]
  1120. },
  1121. {
  1122. path: '/salaryManagement/primarySchool/index',
  1123. component: Layout,
  1124. hidden: true,
  1125. children: [{
  1126. path: '/salaryManagement/primarySchool/index',
  1127. name: '小学部',
  1128. meta: {
  1129. keepAlive: true,
  1130. },
  1131. component: () => import( /* webpackChunkName: "views" */ '@/views/salaryManagement/primarySchool/index')
  1132. }]
  1133. },
  1134. {
  1135. path: '/salaryManagement/juniorhighSchool/index',
  1136. component: Layout,
  1137. hidden: true,
  1138. children: [{
  1139. path: '/salaryManagement/juniorhighSchool/index',
  1140. name: '初中部',
  1141. meta: {
  1142. keepAlive: true,
  1143. },
  1144. component: () => import( /* webpackChunkName: "views" */ '@/views/salaryManagement/juniorhighSchool/index')
  1145. }]
  1146. },
  1147. {
  1148. path: '/salaryManagement/highSchool/index',
  1149. component: Layout,
  1150. hidden: true,
  1151. children: [{
  1152. path: '/salaryManagement/highSchool/index',
  1153. name: '高中部',
  1154. meta: {
  1155. keepAlive: true,
  1156. },
  1157. component: () => import( /* webpackChunkName: "views" */ '@/views/salaryManagement/highSchool/index')
  1158. }]
  1159. },
  1160. {
  1161. path: '/salaryManagement/logisticsDepartment/index',
  1162. component: Layout,
  1163. hidden: true,
  1164. children: [{
  1165. path: '/salaryManagement/logisticsDepartment/index',
  1166. name: '后勤部',
  1167. meta: {
  1168. keepAlive: true,
  1169. },
  1170. component: () => import( /* webpackChunkName: "views" */ '@/views/salaryManagement/logisticsDepartment/index')
  1171. }]
  1172. },
  1173. {
  1174. path: '/system/businessLock/index',
  1175. component: Layout,
  1176. hidden: true,
  1177. children: [{
  1178. path: '/system/businessLock/index',
  1179. name: '模块加锁',
  1180. meta: {
  1181. keepAlive: true,
  1182. },
  1183. component: () => import( /* webpackChunkName: "views" */ '@/views/system/businessLock/index')
  1184. }]
  1185. },
  1186. {
  1187. path: '/dealer/sales/index',
  1188. component: Layout,
  1189. hidden: true,
  1190. children: [{
  1191. path: '/dealer/sales/index',
  1192. name: '销售订单(D)',
  1193. meta: {
  1194. keepAlive: true,
  1195. },
  1196. component: () => import( /* webpackChunkName: "views" */ '@/views/dealer/sales/index')
  1197. }]
  1198. },
  1199. {
  1200. path: '/dealer/purchase/index',
  1201. component: Layout,
  1202. hidden: true,
  1203. children: [{
  1204. path: '/dealer/purchase/index',
  1205. name: '采购订单(D)',
  1206. meta: {
  1207. keepAlive: true,
  1208. },
  1209. component: () => import( /* webpackChunkName: "views" */ '@/views/dealer/purchase/index')
  1210. }]
  1211. },
  1212. //司机
  1213. {
  1214. path: '/basicData/landTransportation/driverInformation/index',
  1215. component: Layout,
  1216. hidden: true,
  1217. children: [{
  1218. path: '/basicData/landTransportation/driverInformation/index',
  1219. name: '司机',
  1220. meta: {
  1221. i18n: '/basicData/landTransportation/driverInformation/index',
  1222. keepAlive: true,
  1223. },
  1224. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/landTransportation/driverInformation/index')
  1225. }]
  1226. },
  1227. //车辆
  1228. {
  1229. path: '/basicData/landTransportation/vehicleInformation/index',
  1230. component: Layout,
  1231. hidden: true,
  1232. children: [{
  1233. path: '/basicData/landTransportation/vehicleInformation/index',
  1234. name: '车辆',
  1235. meta: {
  1236. i18n: '/basicData/landTransportation/driverInformation/index',
  1237. keepAlive: true,
  1238. },
  1239. component: () => import( /* webpackChunkName: "views" */ '@/views/basicData/landTransportation/vehicleInformation/index')
  1240. }]
  1241. },
  1242. //陆运委托
  1243. {
  1244. path: '/landTransportation/placeAnOrder/index',
  1245. component: Layout,
  1246. hidden: true,
  1247. children: [{
  1248. path: '/landTransportation/placeAnOrder/index',
  1249. name: '委托',
  1250. meta: {
  1251. i18n: '/landTransportation/placeAnOrder/index',
  1252. keepAlive: true,
  1253. },
  1254. component: () => import( /* webpackChunkName: "views" */ '@/views/landTransportation/placeAnOrder/index')
  1255. }]
  1256. },
  1257. //派车
  1258. {
  1259. path: '/landTransportation/dispatchingCars/index',
  1260. component: Layout,
  1261. hidden: true,
  1262. children: [{
  1263. path: '/landTransportation/dispatchingCars/index',
  1264. name: '调度',
  1265. meta: {
  1266. i18n: '/landTransportation/dispatchingCars/index',
  1267. keepAlive: true,
  1268. },
  1269. component: () => import( /* webpackChunkName: "views" */ '@/views/landTransportation/dispatchingCars/index')
  1270. }]
  1271. },
  1272. //派车
  1273. {
  1274. path: '/landTransportation/bulkCargo/index',
  1275. component: Layout,
  1276. hidden: true,
  1277. children: [{
  1278. path: '/landTransportation/bulkCargo/index',
  1279. name: '散货',
  1280. meta: {
  1281. i18n: '/landTransportation/bulkCargo/index',
  1282. keepAlive: true,
  1283. },
  1284. component: () => import( /* webpackChunkName: "views" */ '@/views/landTransportation/bulkCargo/index')
  1285. }]
  1286. },
  1287. //陆运台账
  1288. {
  1289. path: '/landTransportation/reportAnalysis/index',
  1290. component: Layout,
  1291. hidden: true,
  1292. children: [{
  1293. path: '/landTransportation/reportAnalysis/index',
  1294. name: '陆运台账',
  1295. meta: {
  1296. i18n: '/landTransportation/reportAnalysis/index',
  1297. keepAlive: true,
  1298. },
  1299. component: () => import( /* webpackChunkName: "views" */ '@/views/landTransportation/reportAnalysis/index')
  1300. }]
  1301. },
  1302. //运维-价格管理
  1303. {
  1304. path: '/maintenance/priceManagement/index',
  1305. component: Layout,
  1306. hidden: true,
  1307. children: [{
  1308. path: '/maintenance/priceManagement/index',
  1309. name: '价格管理',
  1310. meta: {
  1311. i18n: '/maintenance/priceManagement/index',
  1312. keepAlive: true,
  1313. },
  1314. component: () => import( /* webpackChunkName: "views" */ '@/views/maintenance/priceManagement/index')
  1315. }]
  1316. },
  1317. //经销商库存账
  1318. {
  1319. path: '/dealer/stock/index',
  1320. component: Layout,
  1321. hidden: true,
  1322. children: [{
  1323. path: '/dealer/stock/index',
  1324. name: '库存账(D)',
  1325. meta: {
  1326. i18n: '/dealer/stock/index',
  1327. keepAlive: true,
  1328. },
  1329. component: () => import( /* webpackChunkName: "views" */ '@/views/dealer/stock/index')
  1330. }]
  1331. },
  1332. //内贸库存账
  1333. {
  1334. path: '/businessManagement/inventoryAccount/index',
  1335. component: Layout,
  1336. hidden: true,
  1337. children: [{
  1338. path: '/businessManagement/inventoryAccount/index',
  1339. name: '库存账(N)',
  1340. meta: {
  1341. i18n: '/businessManagement/inventoryAccount/index',
  1342. keepAlive: true,
  1343. },
  1344. component: () => import( /* webpackChunkName: "views" */ '@/views/businessManagement/inventoryAccount/index')
  1345. }]
  1346. },
  1347. //办公用品-采购申请
  1348. {
  1349. path: '/workManagement/purchaseApply/index',
  1350. component: Layout,
  1351. hidden: true,
  1352. children: [{
  1353. path: '/workManagement/purchaseApply/index',
  1354. name: '采购申请',
  1355. meta: {
  1356. i18n: '/workManagement/purchaseApply/index',
  1357. keepAlive: true,
  1358. },
  1359. component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/purchaseApply/index')
  1360. }]
  1361. },
  1362. //办公用品-入库
  1363. {
  1364. path: '/workManagement/warehousing/index',
  1365. component: Layout,
  1366. hidden: true,
  1367. children: [{
  1368. path: '/workManagement/warehousing/index',
  1369. name: '入库',
  1370. meta: {
  1371. i18n: '/workManagement/warehousing/index',
  1372. keepAlive: true,
  1373. },
  1374. component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/warehousing/index')
  1375. }]
  1376. },
  1377. //办公用品-领用
  1378. {
  1379. path: '/workManagement/requisition/index',
  1380. component: Layout,
  1381. hidden: true,
  1382. children: [{
  1383. path: '/workManagement/requisition/index',
  1384. name: '领用',
  1385. meta: {
  1386. i18n: '/workManagement/requisition/index',
  1387. keepAlive: true,
  1388. },
  1389. component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/requisition/index')
  1390. }]
  1391. },
  1392. //销售机会
  1393. {
  1394. path: '/saleLeads/index',
  1395. component: Layout,
  1396. hidden: true,
  1397. children: [{
  1398. path: '/saleLeads/index',
  1399. name: '销售机会',
  1400. meta: {
  1401. i18n: '/saleLeads/index',
  1402. keepAlive: true,
  1403. },
  1404. component: () => import( /* webpackChunkName: "views" */ '@/views/saleLeads/index')
  1405. }]
  1406. },
  1407. //办公用品库存账
  1408. {
  1409. path: '/workManagement/stock/index',
  1410. component: Layout,
  1411. hidden: true,
  1412. children: [{
  1413. path: '/workManagement/stock/index',
  1414. name: '库存账(O)',
  1415. meta: {
  1416. i18n: '/workManagement/stock/index',
  1417. keepAlive: true,
  1418. },
  1419. component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/stock/index')
  1420. }]
  1421. },
  1422. //报销
  1423. {
  1424. path: '/reimbursement/index',
  1425. component: Layout,
  1426. hidden: true,
  1427. children: [{
  1428. path: '/reimbursement/index',
  1429. name: '报销',
  1430. meta: {
  1431. i18n: '/reimbursement/index',
  1432. keepAlive: true,
  1433. },
  1434. component: () => import( /* webpackChunkName: "views" */ '@/views/reimbursement/index')
  1435. }]
  1436. },
  1437. //交接单
  1438. {
  1439. path: '/workManagement/handoverSheet/index',
  1440. component: Layout,
  1441. hidden: true,
  1442. children: [{
  1443. path: '/workManagement/handoverSheet/index',
  1444. name: '交接单',
  1445. meta: {
  1446. i18n: '/workManagement/handoverSheet/index',
  1447. keepAlive: true,
  1448. },
  1449. component: () => import( /* webpackChunkName: "views" */ '@/views/workManagement/handoverSheet/index')
  1450. }]
  1451. },
  1452. //经销商产品调拨
  1453. {
  1454. path: '/dealer/allocation/index',
  1455. component: Layout,
  1456. hidden: true,
  1457. children: [{
  1458. path: '/dealer/allocation/index',
  1459. name: '产品调拨',
  1460. meta: {
  1461. i18n: '/dealer/allocation/index',
  1462. keepAlive: true,
  1463. },
  1464. component: () => import( /* webpackChunkName: "views" */ '@/views/dealer/allocation/index')
  1465. }]
  1466. },
  1467. //数据明细(N)
  1468. {
  1469. path: '/statisticAnalysis/dataDetail/index',
  1470. component: Layout,
  1471. hidden: true,
  1472. children: [{
  1473. path: '/statisticAnalysis/dataDetail/index',
  1474. name: '数据明细(N)',
  1475. meta: {
  1476. i18n: '/statisticAnalysis/dataDetail/index',
  1477. keepAlive: true,
  1478. },
  1479. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/dataDetail/index')
  1480. }]
  1481. },
  1482. //销售对账
  1483. {
  1484. path: '/statisticAnalysis/salesReconciliation/index',
  1485. component: Layout,
  1486. hidden: true,
  1487. children: [{
  1488. path: '/statisticAnalysis/salesReconciliation/index',
  1489. name: '销售对账',
  1490. meta: {
  1491. i18n: '/statisticAnalysis/salesReconciliation/index',
  1492. keepAlive: true,
  1493. },
  1494. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/salesReconciliation/index')
  1495. }]
  1496. },
  1497. //销售对账详情
  1498. {
  1499. path: '/statisticAnalysis/salesReconciliationDetails/index',
  1500. component: Layout,
  1501. hidden: true,
  1502. children: [{
  1503. path: '/statisticAnalysis/salesReconciliationDetails/index',
  1504. name: '销售对账详情',
  1505. meta: {
  1506. i18n: '/statisticAnalysis/salesReconciliationDetails/index',
  1507. keepAlive: true,
  1508. },
  1509. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/salesReconciliationDetails/index')
  1510. }]
  1511. },
  1512. //应收总账
  1513. {
  1514. path: '/statisticAnalysis/collectLedger/index',
  1515. component: Layout,
  1516. hidden: true,
  1517. children: [{
  1518. path: '/statisticAnalysis/collectLedger/index',
  1519. name: '应收总账',
  1520. meta: {
  1521. i18n: '/statisticAnalysis/collectLedger/index',
  1522. keepAlive: true,
  1523. },
  1524. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/collectLedger/index')
  1525. }]
  1526. },
  1527. //应付总账
  1528. {
  1529. path: '/statisticAnalysis/paymentLedger/index',
  1530. component: Layout,
  1531. hidden: true,
  1532. children: [{
  1533. path: '/statisticAnalysis/paymentLedger/index',
  1534. name: '应付总账',
  1535. meta: {
  1536. i18n: '/statisticAnalysis/paymentLedger/index',
  1537. keepAlive: true,
  1538. },
  1539. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/paymentLedger/index')
  1540. }]
  1541. },
  1542. //利润总账
  1543. {
  1544. path: '/statisticAnalysis/profitLedger/index',
  1545. component: Layout,
  1546. hidden: true,
  1547. children: [{
  1548. path: '/statisticAnalysis/profitLedger/index',
  1549. name: '利润总账',
  1550. meta: {
  1551. i18n: '/statisticAnalysis/profitLedger/index',
  1552. keepAlive: true,
  1553. },
  1554. component: () => import( /* webpackChunkName: "views" */ '@/views/statisticAnalysis/profitLedger/index')
  1555. }]
  1556. },
  1557. //采购合同(D)
  1558. {
  1559. path: '/dealer/purchaseContract/index',
  1560. component: Layout,
  1561. hidden: true,
  1562. children: [{
  1563. path: '/dealer/purchaseContract/index',
  1564. name: '采购合同(D)',
  1565. meta: {
  1566. i18n: '/dealer/purchaseContract/index',
  1567. keepAlive: true,
  1568. },
  1569. component: () => import( /* webpackChunkName: "views" */ '@/views/dealer/purchaseContract/index')
  1570. }]
  1571. },
  1572. {
  1573. path: '/warehousing/inStock/index',
  1574. component: Layout,
  1575. hidden: true,
  1576. children: [{
  1577. path: '/warehousing/inStock/index',
  1578. name: '入库',
  1579. meta: {
  1580. i18n: '/warehousing/inStock/index',
  1581. keepAlive: true,
  1582. },
  1583. component: () => import( /* webpackChunkName: "views" */ '@/views/warehousing/inStock/index')
  1584. }]
  1585. },
  1586. {
  1587. path: '/warehousing/outStock/index',
  1588. component: Layout,
  1589. hidden: true,
  1590. children: [{
  1591. path: '/warehousing/outStock/index',
  1592. name: '出库',
  1593. meta: {
  1594. i18n: '/warehousing/outStock/index',
  1595. keepAlive: true,
  1596. },
  1597. component: () => import( /* webpackChunkName: "views" */ '@/views/warehousing/outStock/index')
  1598. }]
  1599. },
  1600. {
  1601. path: '/warehousing/stockTransfer/index',
  1602. component: Layout,
  1603. hidden: true,
  1604. children: [{
  1605. path: '/warehousing/stockTransfer/index',
  1606. name: '调拨',
  1607. meta: {
  1608. i18n: '/warehousing/stockTransfer/index',
  1609. keepAlive: true,
  1610. },
  1611. component: () => import( /* webpackChunkName: "views" */ '@/views/warehousing/stockTransfer/index')
  1612. }]
  1613. },
  1614. {
  1615. path: '/warehousing/goodsTransfer/index',
  1616. component: Layout,
  1617. hidden: true,
  1618. children: [{
  1619. path: '/warehousing/goodsTransfer/index',
  1620. name: '货转',
  1621. meta: {
  1622. i18n: '/warehousing/goodsTransfer/index',
  1623. keepAlive: true,
  1624. },
  1625. component: () => import( /* webpackChunkName: "views" */ '@/views/warehousing/goodsTransfer/index')
  1626. }]
  1627. },
  1628. ]