menu.ts 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. export const menu_list = [
  2. {
  3. title: '业务',
  4. children: [{
  5. id: 1000,
  6. name: '开单号,样品扫描',
  7. icon: 'qr-scanner',
  8. url: 'scanning'
  9. },{
  10. id: 1100,
  11. name: '修改创样数量',
  12. icon: 'qr-scanner',
  13. url: 'sample-count-zero'
  14. }]
  15. },
  16. {
  17. title: 'QA',
  18. children: [{
  19. id: 2000,
  20. name: '采购合同',
  21. icon: 'book',
  22. url: 'contract'
  23. }, {
  24. id: 3000,
  25. name: '样品单管理',
  26. icon: 'document',
  27. url: 'sample'
  28. }]
  29. },{
  30. title: '仓库样品',
  31. children: [{
  32. id: 4000,
  33. name: '待备样',
  34. icon: 'alarm',
  35. url: 'store-sample-pending'
  36. }, {
  37. id: 5000,
  38. name: '样品绑定',
  39. icon: 'timer',
  40. url: 'store-sample-binding'
  41. }, {
  42. id: 6000,
  43. name: '仓库样品列表',
  44. icon: 'home',
  45. url: 'store-sample'
  46. }]
  47. },{
  48. title: '仓库管理',
  49. children: [
  50. {
  51. id: 7000,
  52. name: '入库单列表',
  53. icon: 'list-box',
  54. url: 'inspection'
  55. },
  56. {
  57. id: 8000,
  58. name: '申请单号',
  59. icon: 'appstore',
  60. url: 'es-apply-scan'
  61. }, {
  62. id: 9000,
  63. name: '待抽箱',
  64. icon: 'timer',
  65. url: 'warehouse-manage-pending'
  66. }, {
  67. id: 12000,
  68. name: '陪验申请',
  69. icon: 'home',
  70. url: 'inspection'
  71. }]
  72. },{
  73. title: 'QC',
  74. children: [{
  75. id: 10000,
  76. name: 'QC验货初检报告',
  77. icon: 'list-box',
  78. url: 'store-qc-search'
  79. },
  80. // {
  81. // id: 11000,
  82. // name: 'QC扫描',
  83. // icon: 'qr-scanner',
  84. // url: 'store-qc-scanning'
  85. // },
  86. {
  87. id: 11000,
  88. name: '待验货物',
  89. icon: 'checkbox',
  90. url: 'store-pending-search'
  91. }]
  92. }
  93. ]