李楠 4 年之前
父節點
當前提交
6c1fe4a29f
共有 35 個文件被更改,包括 250 次插入40 次删除
  1. 216 6
      src/router/routes.js
  2. 1 1
      src/views/butcher/butcherBatch.vue
  3. 1 1
      src/views/butcher/butcherSheep.vue
  4. 1 1
      src/views/buySheep/buyBatch.vue
  5. 1 1
      src/views/buySheep/buySheepInfo.vue
  6. 1 1
      src/views/carcassSegmentation/carcassSegmentation.vue
  7. 1 1
      src/views/carcassSegmentation/segmentationBatch.vue
  8. 1 1
      src/views/dicedMeat/dicedMeatBatch.vue
  9. 1 1
      src/views/dicedMeat/dicedMeatEnter.vue
  10. 1 1
      src/views/dicedMeat/dicedMeatEnterBatch.vue
  11. 1 1
      src/views/dicedMeat/dicedMeatOuter.vue
  12. 1 1
      src/views/dicedMeat/dicedMeatOuterBatch.vue
  13. 1 1
      src/views/finishedProduct/finishedProduct.vue
  14. 1 1
      src/views/finishedProduct/finishedProductBatch.vue
  15. 1 1
      src/views/finishedProduct/finishedProductOuter.vue
  16. 1 1
      src/views/finishedProduct/finishedProductOuterBatch.vue
  17. 1 1
      src/views/finishedProductTransport/finishedProductTransport.vue
  18. 1 1
      src/views/finishedProductTransport/finishedProductTransportBatch.vue
  19. 1 1
      src/views/loss/loss.vue
  20. 1 1
      src/views/productPack/packBatch.vue
  21. 1 1
      src/views/productPack/productPack.vue
  22. 1 1
      src/views/segmentation/segmentationEnter.vue
  23. 1 1
      src/views/segmentation/segmentationEnterBatch.vue
  24. 1 1
      src/views/segmentation/segmentationOuter.vue
  25. 1 1
      src/views/segmentation/segmentationOuterBatch.vue
  26. 1 1
      src/views/sell/orderFinishedProduct.vue
  27. 1 1
      src/views/sell/sellOrder.vue
  28. 1 1
      src/views/sheepEnter/enterBatch.vue
  29. 1 1
      src/views/sheepEnter/sheepEnter.vue
  30. 1 1
      src/views/sheepQuarantine/quarantineBatch.vue
  31. 1 1
      src/views/sheepQuarantine/quarantineSheep.vue
  32. 1 1
      src/views/transportInfo/transportBatch.vue
  33. 1 1
      src/views/transportInfo/transportSheepInfo.vue
  34. 1 1
      src/views/wipeEnter/wipeBatch.vue
  35. 1 1
      src/views/wipeEnter/wipeSheep.vue

+ 216 - 6
src/router/routes.js

@@ -1,21 +1,231 @@
 import Home from '../views/Home/Home.vue'
 
-/* 基本信息 */
-import firmInfo from '@/views/basicInfo/firmInfo.vue'
-
 
 export default [
 	{
 		path: '/home',
 		component: Home,
 		children: [
-			/* 档案信息 */
+			/* 基本信息 */
 			{
 				path: 'firmInfo',
 				name: 'firmInfo',
-				component: firmInfo
+				component: () => import('@/views/basicInfo/firmInfo.vue')
+			},
+			{
+				path: 'herdsmanInfo',
+				name: 'herdsmanInfo',
+				component: () => import('@/views/basicInfo/herdsmanInfo.vue')
+			},
+			{
+				path: 'vehicle',
+				name: 'vehicle',
+				component: () => import('@/views/basicInfo/vehicle.vue')
+			},
+			{
+				path: 'coldCloset',
+				name: 'coldCloset',
+				component: () => import('@/views/basicInfo/coldCloset.vue')
+			},
+			{
+				path: 'client',
+				name: 'client',
+				component: () => import('@/views/basicInfo/client.vue')
+			},
+			{
+				path: 'area',
+				name: 'area',
+				component: () => import('@/views/basicInfo/area.vue')
+			},
+			{
+				path: 'staff',
+				name: 'staff',
+				component: () => import('@/views/basicInfo/staff.vue')
+			},
+			/* 羊只收购 */
+			{
+				path: 'buyBatch',
+				name: 'buyBatch',
+				component: () => import('@/views/buySheep/buyBatch.vue')
+			},
+			{
+				path: 'buySheepInfo',
+				name: 'buySheepInfo',
+				component: () => import('@/views/buySheep/buySheepInfo.vue')
+			},
+			/* 运输信息 */
+			{
+				path: 'transportBatch',
+				name: 'transportBatch',
+				component: () => import('@/views/transportInfo/transportBatch.vue')
+			},
+			{
+				path: 'transportSheepInfo',
+				name: 'transportSheepInfo',
+				component: () => import('@/views/transportInfo/transportSheepInfo.vue')
+			},
+			/* 羊只入栏 */
+			{
+				path: 'enterBatch',
+				name: 'enterBatch',
+				component: () => import('@/views/sheepEnter/enterBatch.vue')
+			},
+			{
+				path: 'sheepEnter',
+				name: 'sheepEnter',
+				component: () => import('@/views/sheepEnter/sheepEnter.vue')
+			},
+			/* 羊只检疫 */
+			{
+				path: 'quarantineBatch',
+				name: 'quarantineBatch',
+				component: () => import('@/views/sheepQuarantine/quarantineBatch.vue')
+			},
+			{
+				path: 'quarantineSheep',
+				name: 'quarantineSheep',
+				component: () => import('@/views/sheepQuarantine/quarantineSheep.vue')
+			},
+			/* 损失管理 */
+			{
+				path: 'loss',
+				name: 'loss',
+				component: () => import('@/views/loss/loss.vue')
+			},
+			/* 屠宰管理 */
+			{
+				path: 'butcherBatch',
+				name: 'butcherBatch',
+				component: () => import('@/views/butcher/butcherBatch.vue')
+			},
+			{
+				path: 'butcherSheep',
+				name: 'butcherSheep',
+				component: () => import('@/views/butcher/butcherSheep.vue')
+			},
+			/* 排酸入库 */
+			{
+				path: 'wipeBatch',
+				name: 'wipeBatch',
+				component: () => import('@/views/wipeEnter/wipeBatch.vue')
+			},
+			{
+				path: 'wipeSheep',
+				name: 'wipeSheep',
+				component: () => import('@/views/wipeEnter/wipeSheep.vue')
+			},
+			/* 胴体分割 */
+			{
+				path: 'segmentationBatch',
+				name: 'segmentationBatch',
+				component: () => import('@/views/carcassSegmentation/segmentationBatch.vue')
+			},
+			{
+				path: 'carcassSegmentation',
+				name: 'carcassSegmentation',
+				component: () => import('@/views/carcassSegmentation/carcassSegmentation.vue')
+			},
+			/* 分割仓储 */
+			{
+				path: 'segmentationEnterBatch',
+				name: 'segmentationEnterBatch',
+				component: () => import('@/views/segmentation/segmentationEnterBatch.vue')
+			},
+			{
+				path: 'segmentationEnter',
+				name: 'segmentationEnter',
+				component: () => import('@/views/segmentation/segmentationEnter.vue')
+			},
+			{
+				path: 'segmentationOuterBatch',
+				name: 'segmentationOuterBatch',
+				component: () => import('@/views/segmentation/segmentationOuterBatch.vue')
+			},
+			{
+				path: 'segmentationOuter',
+				name: 'segmentationOuter',
+				component: () => import('@/views/segmentation/segmentationOuter.vue')
+			},
+			/* 肉丁加工 */
+			{
+				path: 'dicedMeatBatch',
+				name: 'dicedMeatBatch',
+				component: () => import('@/views/dicedMeat/dicedMeatBatch.vue')
+			},
+			{
+				path: 'dicedMeatEnterBatch',
+				name: 'dicedMeatEnterBatch',
+				component: () => import('@/views/dicedMeat/dicedMeatEnterBatch.vue')
+			},
+			{
+				path: 'dicedMeatEnter',
+				name: 'dicedMeatEnter',
+				component: () => import('@/views/dicedMeat/dicedMeatEnter.vue')
+			},
+			{
+				path: 'dicedMeatOuterBatch',
+				name: 'dicedMeatOuterBatch',
+				component: () => import('@/views/dicedMeat/dicedMeatOuterBatch.vue')
+			},
+			{
+				path: 'dicedMeatOuter',
+				name: 'dicedMeatOuter',
+				component: () => import('@/views/dicedMeat/dicedMeatOuter.vue')
+			},
+			/* 产品打包 */
+			{
+				path: 'packBatch',
+				name: 'packBatch',
+				component: () => import('@/views/productPack/packBatch.vue')
+			},
+			{
+				path: 'productPack',
+				name: 'productPack',
+				component: () => import('@/views/productPack/productPack.vue')
+			},
+			/* 成品仓储 */
+			{
+				path: 'finishedProductBatch',
+				name: 'finishedProductBatch',
+				component: () => import('@/views/finishedProduct/finishedProductBatch.vue')
+			},
+			{
+				path: 'finishedProduct',
+				name: 'finishedProduct',
+				component: () => import('@/views/finishedProduct/finishedProduct.vue')
+			},
+			{
+				path: 'finishedProductOuterBatch',
+				name: 'finishedProductOuterBatch',
+				component: () => import('@/views/finishedProduct/finishedProductOuterBatch.vue')
+			},
+			{
+				path: 'finishedProductOuter',
+				name: 'finishedProductOuter',
+				component: () => import('@/views/finishedProduct/finishedProductOuter.vue')
+			},
+			/* 成品运输 */
+			{
+				path: 'finishedProductTransportBatch',
+				name: 'finishedProductTransportBatch',
+				component: () => import('@/views/finishedProductTransport/finishedProductTransportBatch.vue')
 			},
-			
+			{
+				path: 'finishedProductTransport',
+				name: 'finishedProductTransport',
+				component: () => import('@/views/finishedProductTransport/finishedProductTransport.vue')
+			},
+			/* 销售管理 */
+			{
+				path: 'sellOrder',
+				name: 'sellOrder',
+				component: () => import('@/views/sell/sellOrder.vue')
+			},
+			{
+				path: 'orderFinishedProduct',
+				name: 'orderFinishedProduct',
+				component: () => import('@/views/sell/orderFinishedProduct.vue')
+			}
 		]
 	},
 ]

+ 1 - 1
src/views/butcher/butcherBatch.vue

@@ -3,7 +3,7 @@
         <h2
             style="margin-bottom: 20px;padding-bottom:7px;border-bottom:2px solid #ddd"
         >
-            企业信息
+            屠宰批次管理
         </h2>
     </div>
 </template>

+ 1 - 1
src/views/butcher/butcherSheep.vue

@@ -3,7 +3,7 @@
         <h2
             style="margin-bottom: 20px;padding-bottom:7px;border-bottom:2px solid #ddd"
         >
-            企业信息
+            羊只管理
         </h2>
     </div>
 </template>

+ 1 - 1
src/views/buySheep/buyBatch.vue

@@ -3,7 +3,7 @@
         <h2
             style="margin-bottom: 20px;padding-bottom:7px;border-bottom:2px solid #ddd"
         >
-            企业信息
+            收购批次管理
         </h2>
     </div>
 </template>

+ 1 - 1
src/views/buySheep/buySheepInfo.vue

@@ -3,7 +3,7 @@
         <h2
             style="margin-bottom: 20px;padding-bottom:7px;border-bottom:2px solid #ddd"
         >
-            企业信息
+            羊只信息
         </h2>
     </div>
 </template>

+ 1 - 1
src/views/carcassSegmentation/carcassSegmentation.vue

@@ -3,7 +3,7 @@
         <h2
             style="margin-bottom: 20px;padding-bottom:7px;border-bottom:2px solid #ddd"
         >
-            企业信息
+            分割批次管理
         </h2>
     </div>
 </template>

+ 1 - 1
src/views/carcassSegmentation/segmentationBatch.vue

@@ -3,7 +3,7 @@
         <h2
             style="margin-bottom: 20px;padding-bottom:7px;border-bottom:2px solid #ddd"
         >
-            企业信息
+            胴体分割管理
         </h2>
     </div>
 </template>

+ 1 - 1
src/views/dicedMeat/dicedMeatBatch.vue

@@ -3,7 +3,7 @@
         <h2
             style="margin-bottom: 20px;padding-bottom:7px;border-bottom:2px solid #ddd"
         >
-            企业信息
+            肉丁加工批次管理
         </h2>
     </div>
 </template>

+ 1 - 1
src/views/dicedMeat/dicedMeatEnter.vue

@@ -3,7 +3,7 @@
         <h2
             style="margin-bottom: 20px;padding-bottom:7px;border-bottom:2px solid #ddd"
         >
-            企业信息
+            肉丁入库
         </h2>
     </div>
 </template>

+ 1 - 1
src/views/dicedMeat/dicedMeatEnterBatch.vue

@@ -3,7 +3,7 @@
         <h2
             style="margin-bottom: 20px;padding-bottom:7px;border-bottom:2px solid #ddd"
         >
-            企业信息
+            肉丁入库批次管理
         </h2>
     </div>
 </template>

+ 1 - 1
src/views/dicedMeat/dicedMeatOuter.vue

@@ -3,7 +3,7 @@
         <h2
             style="margin-bottom: 20px;padding-bottom:7px;border-bottom:2px solid #ddd"
         >
-            企业信息
+            肉丁出库
         </h2>
     </div>
 </template>

+ 1 - 1
src/views/dicedMeat/dicedMeatOuterBatch.vue

@@ -3,7 +3,7 @@
         <h2
             style="margin-bottom: 20px;padding-bottom:7px;border-bottom:2px solid #ddd"
         >
-            企业信息
+            肉丁出库批次管理
         </h2>
     </div>
 </template>

+ 1 - 1
src/views/finishedProduct/finishedProduct.vue

@@ -3,7 +3,7 @@
         <h2
             style="margin-bottom: 20px;padding-bottom:7px;border-bottom:2px solid #ddd"
         >
-            企业信息
+            成品入库
         </h2>
     </div>
 </template>

+ 1 - 1
src/views/finishedProduct/finishedProductBatch.vue

@@ -3,7 +3,7 @@
         <h2
             style="margin-bottom: 20px;padding-bottom:7px;border-bottom:2px solid #ddd"
         >
-            企业信息
+            成品入库批次管理
         </h2>
     </div>
 </template>

+ 1 - 1
src/views/finishedProduct/finishedProductOuter.vue

@@ -3,7 +3,7 @@
         <h2
             style="margin-bottom: 20px;padding-bottom:7px;border-bottom:2px solid #ddd"
         >
-            企业信息
+            成品出库
         </h2>
     </div>
 </template>

+ 1 - 1
src/views/finishedProduct/finishedProductOuterBatch.vue

@@ -3,7 +3,7 @@
         <h2
             style="margin-bottom: 20px;padding-bottom:7px;border-bottom:2px solid #ddd"
         >
-            企业信息
+            成品出库批次管理
         </h2>
     </div>
 </template>

+ 1 - 1
src/views/finishedProductTransport/finishedProductTransport.vue

@@ -3,7 +3,7 @@
         <h2
             style="margin-bottom: 20px;padding-bottom:7px;border-bottom:2px solid #ddd"
         >
-            企业信息
+            成品运输
         </h2>
     </div>
 </template>

+ 1 - 1
src/views/finishedProductTransport/finishedProductTransportBatch.vue

@@ -3,7 +3,7 @@
         <h2
             style="margin-bottom: 20px;padding-bottom:7px;border-bottom:2px solid #ddd"
         >
-            企业信息
+            成品运输批次管理
         </h2>
     </div>
 </template>

+ 1 - 1
src/views/loss/loss.vue

@@ -3,7 +3,7 @@
         <h2
             style="margin-bottom: 20px;padding-bottom:7px;border-bottom:2px solid #ddd"
         >
-            企业信息
+            损失管理
         </h2>
     </div>
 </template>

+ 1 - 1
src/views/productPack/packBatch.vue

@@ -3,7 +3,7 @@
         <h2
             style="margin-bottom: 20px;padding-bottom:7px;border-bottom:2px solid #ddd"
         >
-            企业信息
+            打包批次管理
         </h2>
     </div>
 </template>

+ 1 - 1
src/views/productPack/productPack.vue

@@ -3,7 +3,7 @@
         <h2
             style="margin-bottom: 20px;padding-bottom:7px;border-bottom:2px solid #ddd"
         >
-            企业信息
+            产品打包
         </h2>
     </div>
 </template>

+ 1 - 1
src/views/segmentation/segmentationEnter.vue

@@ -3,7 +3,7 @@
         <h2
             style="margin-bottom: 20px;padding-bottom:7px;border-bottom:2px solid #ddd"
         >
-            企业信息
+            分割品入库管理
         </h2>
     </div>
 </template>

+ 1 - 1
src/views/segmentation/segmentationEnterBatch.vue

@@ -3,7 +3,7 @@
         <h2
             style="margin-bottom: 20px;padding-bottom:7px;border-bottom:2px solid #ddd"
         >
-            企业信息
+            分割品入库批次管理
         </h2>
     </div>
 </template>

+ 1 - 1
src/views/segmentation/segmentationOuter.vue

@@ -3,7 +3,7 @@
         <h2
             style="margin-bottom: 20px;padding-bottom:7px;border-bottom:2px solid #ddd"
         >
-            企业信息
+            分割品出库管理
         </h2>
     </div>
 </template>

+ 1 - 1
src/views/segmentation/segmentationOuterBatch.vue

@@ -3,7 +3,7 @@
         <h2
             style="margin-bottom: 20px;padding-bottom:7px;border-bottom:2px solid #ddd"
         >
-            企业信息
+            分割品出库批次管理
         </h2>
     </div>
 </template>

+ 1 - 1
src/views/sell/orderFinishedProduct.vue

@@ -3,7 +3,7 @@
         <h2
             style="margin-bottom: 20px;padding-bottom:7px;border-bottom:2px solid #ddd"
         >
-            企业信息
+            订单成品管理
         </h2>
     </div>
 </template>

+ 1 - 1
src/views/sell/sellOrder.vue

@@ -3,7 +3,7 @@
         <h2
             style="margin-bottom: 20px;padding-bottom:7px;border-bottom:2px solid #ddd"
         >
-            企业信息
+            销售订单管理
         </h2>
     </div>
 </template>

+ 1 - 1
src/views/sheepEnter/enterBatch.vue

@@ -3,7 +3,7 @@
         <h2
             style="margin-bottom: 20px;padding-bottom:7px;border-bottom:2px solid #ddd"
         >
-            企业信息
+            入栏批次管理
         </h2>
     </div>
 </template>

+ 1 - 1
src/views/sheepEnter/sheepEnter.vue

@@ -3,7 +3,7 @@
         <h2
             style="margin-bottom: 20px;padding-bottom:7px;border-bottom:2px solid #ddd"
         >
-            企业信息
+            sheepEnter
         </h2>
     </div>
 </template>

+ 1 - 1
src/views/sheepQuarantine/quarantineBatch.vue

@@ -3,7 +3,7 @@
         <h2
             style="margin-bottom: 20px;padding-bottom:7px;border-bottom:2px solid #ddd"
         >
-            企业信息
+            检疫批次管理
         </h2>
     </div>
 </template>

+ 1 - 1
src/views/sheepQuarantine/quarantineSheep.vue

@@ -3,7 +3,7 @@
         <h2
             style="margin-bottom: 20px;padding-bottom:7px;border-bottom:2px solid #ddd"
         >
-            企业信息
+            检疫羊只
         </h2>
     </div>
 </template>

+ 1 - 1
src/views/transportInfo/transportBatch.vue

@@ -3,7 +3,7 @@
         <h2
             style="margin-bottom: 20px;padding-bottom:7px;border-bottom:2px solid #ddd"
         >
-            企业信息
+            运输批次管理
         </h2>
     </div>
 </template>

+ 1 - 1
src/views/transportInfo/transportSheepInfo.vue

@@ -3,7 +3,7 @@
         <h2
             style="margin-bottom: 20px;padding-bottom:7px;border-bottom:2px solid #ddd"
         >
-            企业信息
+            羊只信息
         </h2>
     </div>
 </template>

+ 1 - 1
src/views/wipeEnter/wipeBatch.vue

@@ -3,7 +3,7 @@
         <h2
             style="margin-bottom: 20px;padding-bottom:7px;border-bottom:2px solid #ddd"
         >
-            企业信息
+            排酸批次管理
         </h2>
     </div>
 </template>

+ 1 - 1
src/views/wipeEnter/wipeSheep.vue

@@ -3,7 +3,7 @@
         <h2
             style="margin-bottom: 20px;padding-bottom:7px;border-bottom:2px solid #ddd"
         >
-            企业信息
+            羊只管理
         </h2>
     </div>
 </template>