浏览代码

bug解决

cz 1 年之前
父节点
当前提交
30f383344e
共有 2 个文件被更改,包括 14 次插入3 次删除
  1. 11 0
      src/router/index.js
  2. 3 3
      src/views/purchase-sales/inventory-management/inventoryQuery/index.vue

+ 11 - 0
src/router/index.js

@@ -495,7 +495,18 @@ const routes = [{
 				path: "sacnTest",
 				name: "扫码页面",
 				component: () => import("../views/system/sacn/index.vue"),
+			},
+			{
+				path: "standardProductLibrary",
+				name: "标准产品库",
+				component: () => import("../views/product-material/standard-product-library/index.vue"),
+			},
+			{
+				path: "productLibraryAdd",
+				name: "标准产品库添加",
+				component: () => import("../views/product-material/standard-product-library/add.vue"),
 			}
+			
 		]
 	},
 ]

+ 3 - 3
src/views/purchase-sales/inventory-management/inventoryQuery/index.vue

@@ -57,15 +57,15 @@ const warehouseData = ref([]);
 const active = ref("all");
 const listConfig = ref([
   {
-    label: porxy.t('inventoryQuery.itemClassification'),
+    label: proxy.t('inventoryQuery.itemClassification'),
     prop: "productClassifyName",
   },
   {
-    label: porxy.t('inventoryQuery.itemName'),
+    label: proxy.t('inventoryQuery.itemName'),
     prop: "productName",
   },
   {
-    label: porxy.t('inventoryQuery.inventoryQuantity'),
+    label: proxy.t('inventoryQuery.inventoryQuantity'),
     prop: "quantity",
   },
 ]);