Bläddra i källkod

完成屠宰批次,注释修改

linan 4 år sedan
förälder
incheckning
662760edc8

+ 6 - 6
src/views/productManagement/productInfo.vue

@@ -113,7 +113,7 @@ export default {
         };
     },
     created() {
-        // 出仓管理列表
+        // 产品档案列表
         this.getProductInfoList();
     },
     methods: {
@@ -123,7 +123,7 @@ export default {
                     if (this.isAdd) {
                         reqAddProductInfo(this.formData)
                             .then(res => {
-                                // 出仓管理列表
+                                // 产品档案列表
                                 this.getProductInfoList();
                                 this.$message.success("添加成功!");
                             })
@@ -134,7 +134,7 @@ export default {
                     } else {
                         reqUpdateProductInfo(this.formData)
                             .then(res => {
-                                // 出仓管理列表
+                                // 产品档案列表
                                 this.getProductInfoList();
                                 this.$message.success("编辑成功!");
                             })
@@ -148,7 +148,7 @@ export default {
                 }
             });
         },
-        // 出仓管理列表 
+        // 产品档案列表 
         getProductInfoList() {
             reqProductInfoList({
                 searchStr: this.search,
@@ -176,7 +176,7 @@ export default {
             reqDelProductInfo(row.id)
                 .then(res => {
                     console.log(res);
-                    // 出仓管理列表
+                    // 产品档案列表
                     this.getProductInfoList();
                     this.$message.success("删除成功!");
                 })
@@ -188,7 +188,7 @@ export default {
         pageChange(p) {
             console.log(p);
             this.page = p;
-            // 出仓管理列表
+            // 产品档案列表
             this.getProductInfoList();
         }
     }

+ 6 - 6
src/views/productManagement/splitLog.vue

@@ -118,7 +118,7 @@ export default {
         };
     },
     created() {
-        // 出仓管理列表
+        // 分割登记列表
         this.getSplitLogList();
     },
     methods: {
@@ -128,7 +128,7 @@ export default {
                     if (this.isAdd) {
                         reqAddSplitLog(this.formData)
                             .then(res => {
-                                // 出仓管理列表
+                                // 分割登记列表
                                 this.getSplitLogList();
                                 this.$message.success("添加成功!");
                             })
@@ -139,7 +139,7 @@ export default {
                     } else {
                         reqUpdateSplitLog(this.formData)
                             .then(res => {
-                                // 出仓管理列表
+                                // 分割登记列表
                                 this.getSplitLogList();
                                 this.$message.success("编辑成功!");
                             })
@@ -153,7 +153,7 @@ export default {
                 }
             });
         },
-        // 出仓管理列表
+        // 分割登记列表
         getSplitLogList() {
             reqSplitLogList({
                 searchStr: this.search,
@@ -181,7 +181,7 @@ export default {
             reqDelSplitLog(row.id)
                 .then(res => {
                     console.log(res);
-                    // 出仓管理列表
+                    // 分割登记列表
                     this.getSplitLogList();
                     this.$message.success("删除成功!");
                 })
@@ -193,7 +193,7 @@ export default {
         pageChange(p) {
             console.log(p);
             this.page = p;
-            // 出仓管理列表
+            // 分割登记列表
             this.getSplitLogList();
         }
     }

+ 6 - 6
src/views/sellManagement/carcassSell.vue

@@ -150,7 +150,7 @@ export default {
         };
     },
     created() {
-        // 出仓管理列表
+        // 胴体销售列表
         this.getCarcassList();
     },
     methods: {
@@ -160,7 +160,7 @@ export default {
                     if (this.isAdd) {
                         reqAddCarcass(this.formData)
                             .then(res => {
-                                // 出仓管理列表
+                                // 胴体销售列表
                                 this.getCarcassList();
                                 this.$message.success("添加成功!");
                             })
@@ -171,7 +171,7 @@ export default {
                     } else {
                         reqUpdateCarcass(this.formData)
                             .then(res => {
-                                // 出仓管理列表
+                                // 胴体销售列表
                                 this.getCarcassList();
                                 this.$message.success("编辑成功!");
                             })
@@ -185,7 +185,7 @@ export default {
                 }
             });
         },
-        // 出仓管理列表 
+        // 胴体销售列表 
         getCarcassList() {
             reqCarcassList({
                 searchStr: this.search,
@@ -213,7 +213,7 @@ export default {
             reqDelCarcass(row.id)
                 .then(res => {
                     console.log(res);
-                    // 出仓管理列表
+                    // 胴体销售列表
                     this.getCarcassList();
                     this.$message.success("删除成功!");
                 })
@@ -225,7 +225,7 @@ export default {
         pageChange(p) {
             console.log(p);
             this.page = p;
-            // 出仓管理列表
+            // 胴体销售列表
             this.getCarcassList();
         }
     }

+ 6 - 6
src/views/sellManagement/client.vue

@@ -118,7 +118,7 @@ export default {
         };
     },
     created() {
-        // 出仓管理列表
+        // 客户管理列表
         this.getClientList();
     },
     methods: {
@@ -128,7 +128,7 @@ export default {
                     if (this.isAdd) {
                         reqAddClient(this.formData)
                             .then(res => {
-                                // 出仓管理列表
+                                // 客户管理列表
                                 this.getClientList();
                                 this.$message.success("添加成功!");
                             })
@@ -139,7 +139,7 @@ export default {
                     } else {
                         reqUpdateClient(this.formData)
                             .then(res => {
-                                // 出仓管理列表
+                                // 客户管理列表
                                 this.getClientList();
                                 this.$message.success("编辑成功!");
                             })
@@ -153,7 +153,7 @@ export default {
                 }
             });
         },
-        // 出仓管理列表 
+        // 客户管理列表 
         getClientList() {
             reqClientList({
                 searchStr: this.search,
@@ -181,7 +181,7 @@ export default {
             reqDelClient(row.id)
                 .then(res => {
                     console.log(res);
-                    // 出仓管理列表
+                    // 客户管理列表
                     this.getClientList();
                     this.$message.success("删除成功!");
                 })
@@ -193,7 +193,7 @@ export default {
         pageChange(p) {
             console.log(p);
             this.page = p;
-            // 出仓管理列表
+            // 客户管理列表
             this.getClientList();
         }
     }

+ 6 - 6
src/views/sellManagement/directSell.vue

@@ -142,7 +142,7 @@ export default {
         };
     },
     created() {
-        // 出仓管理列表
+        // 屠宰直销列表
         this.getDirectSellList();
     },
     methods: {
@@ -152,7 +152,7 @@ export default {
                     if (this.isAdd) {
                         reqAddDirectSell(this.formData)
                             .then(res => {
-                                // 出仓管理列表
+                                // 屠宰直销列表
                                 this.getDirectSellList();
                                 this.$message.success("添加成功!");
                             })
@@ -163,7 +163,7 @@ export default {
                     } else {
                         reqUpdateDirectSell(this.formData)
                             .then(res => {
-                                // 出仓管理列表
+                                // 屠宰直销列表
                                 this.getDirectSellList();
                                 this.$message.success("编辑成功!");
                             })
@@ -177,7 +177,7 @@ export default {
                 }
             });
         },
-        // 出仓管理列表 
+        // 屠宰直销列表 
         getDirectSellList() {
             reqDirectSellList({
                 searchStr: this.search,
@@ -205,7 +205,7 @@ export default {
             reqDelDirectSell(row.id)
                 .then(res => {
                     console.log(res);
-                    // 出仓管理列表
+                    // 屠宰直销列表
                     this.getDirectSellList();
                     this.$message.success("删除成功!");
                 })
@@ -217,7 +217,7 @@ export default {
         pageChange(p) {
             console.log(p);
             this.page = p;
-            // 出仓管理列表
+            // 屠宰直销列表
             this.getDirectSellList();
         }
     }

+ 6 - 6
src/views/sellManagement/elseSell.vue

@@ -147,7 +147,7 @@ export default {
         };
     },
     created() {
-        // 出仓管理列表
+        // 其他销售列表
         this.getElseSellList();
     },
     methods: {
@@ -157,7 +157,7 @@ export default {
                     if (this.isAdd) {
                         reqAddElseSell(this.formData)
                             .then(res => {
-                                // 出仓管理列表
+                                // 其他销售列表
                                 this.getElseSellList();
                                 this.$message.success("添加成功!");
                             })
@@ -168,7 +168,7 @@ export default {
                     } else {
                         reqUpdateElseSell(this.formData)
                             .then(res => {
-                                // 出仓管理列表
+                                // 其他销售列表
                                 this.getElseSellList();
                                 this.$message.success("编辑成功!");
                             })
@@ -182,7 +182,7 @@ export default {
                 }
             });
         },
-        // 出仓管理列表 
+        // 其他销售列表 
         getElseSellList() {
             reqElseSellList({
                 searchStr: this.search,
@@ -210,7 +210,7 @@ export default {
             reqDelElseSell(row.id)
                 .then(res => {
                     console.log(res);
-                    // 出仓管理列表
+                    // 其他销售列表
                     this.getElseSellList();
                     this.$message.success("删除成功!");
                 })
@@ -222,7 +222,7 @@ export default {
         pageChange(p) {
             console.log(p);
             this.page = p;
-            // 出仓管理列表
+            // 其他销售列表
             this.getElseSellList();
         }
     }

+ 6 - 6
src/views/sellManagement/price.vue

@@ -118,7 +118,7 @@ export default {
         };
     },
     created() {
-        // 出仓管理列表
+        // 价格管理列表
         this.getPriceList();
     },
     methods: {
@@ -128,7 +128,7 @@ export default {
                     if (this.isAdd) {
                         reqAddPrice(this.formData)
                             .then(res => {
-                                // 出仓管理列表
+                                // 价格管理列表
                                 this.getPriceList();
                                 this.$message.success("添加成功!");
                             })
@@ -139,7 +139,7 @@ export default {
                     } else {
                         reqUpdatePrice(this.formData)
                             .then(res => {
-                                // 出仓管理列表
+                                // 价格管理列表
                                 this.getPriceList();
                                 this.$message.success("编辑成功!");
                             })
@@ -153,7 +153,7 @@ export default {
                 }
             });
         },
-        // 出仓管理列表 
+        // 价格管理列表 
         getPriceList() {
             reqPriceList({
                 searchStr: this.search,
@@ -181,7 +181,7 @@ export default {
             reqDelPrice(row.id)
                 .then(res => {
                     console.log(res);
-                    // 出仓管理列表
+                    // 价格管理列表
                     this.getPriceList();
                     this.$message.success("删除成功!");
                 })
@@ -193,7 +193,7 @@ export default {
         pageChange(p) {
             console.log(p);
             this.page = p;
-            // 出仓管理列表
+            // 价格管理列表
             this.getPriceList();
         }
     }

+ 6 - 6
src/views/sellManagement/splitSell.vue

@@ -146,7 +146,7 @@ export default {
         };
     },
     created() {
-        // 出仓管理列表
+        // 分割销售列表
         this.getSplitSellList();
     },
     methods: {
@@ -156,7 +156,7 @@ export default {
                     if (this.isAdd) {
                         reqAddSplitSell(this.formData)
                             .then(res => {
-                                // 出仓管理列表
+                                // 分割销售列表
                                 this.getSplitSellList();
                                 this.$message.success("添加成功!");
                             })
@@ -167,7 +167,7 @@ export default {
                     } else {
                         reqUpdateSplitSell(this.formData)
                             .then(res => {
-                                // 出仓管理列表
+                                // 分割销售列表
                                 this.getSplitSellList();
                                 this.$message.success("编辑成功!");
                             })
@@ -181,7 +181,7 @@ export default {
                 }
             });
         },
-        // 出仓管理列表
+        // 分割销售列表
         getSplitSellList() {
             reqSplitSellList({
                 searchStr: this.search,
@@ -209,7 +209,7 @@ export default {
             reqDelSplitSell(row.id)
                 .then(res => {
                     console.log(res);
-                    // 出仓管理列表
+                    // 分割销售列表
                     this.getSplitSellList();
                     this.$message.success("删除成功!");
                 })
@@ -221,7 +221,7 @@ export default {
         pageChange(p) {
             console.log(p);
             this.page = p;
-            // 出仓管理列表
+            // 分割销售列表
             this.getSplitSellList();
         }
     }

+ 6 - 6
src/views/slaughterManagment/packinghouse.vue

@@ -123,7 +123,7 @@ export default {
         };
     },
     created() {
-        // 入待宰栏列表
+        // 入宰登记列表
         this.getWaitList();
     },
     methods: {
@@ -133,7 +133,7 @@ export default {
                     if (this.isAdd) {
                         reqAddWait(this.formData)
                             .then(res => {
-                                // 入待宰栏列表
+                                // 入宰登记列表
                                 this.getWaitList();
                                 this.$message.success("添加成功!");
                             })
@@ -144,7 +144,7 @@ export default {
                     } else {
                         reqUpdateWait(this.formData)
                             .then(res => {
-                                // 入待宰栏列表
+                                // 入宰登记列表
                                 this.getWaitList();
                                 this.$message.success("编辑成功!");
                             })
@@ -158,7 +158,7 @@ export default {
                 }
             });
         },
-        // 入待宰栏列表 
+        // 入宰登记列表 
         getWaitList() {
             reqWaitList({
                 searchStr: this.search,
@@ -186,7 +186,7 @@ export default {
             reqDelWait(row.id)
                 .then(res => {
                     console.log(res);
-                    // 入待宰栏列表
+                    // 入宰登记列表
                     this.getWaitList();
                     this.$message.success("删除成功!");
                 })
@@ -198,7 +198,7 @@ export default {
         pageChange(p) {
             console.log(p);
             this.page = p;
-            // 入待宰栏列表
+            // 入宰登记列表
             this.getWaitList();
         }
     }

+ 6 - 6
src/views/slaughterManagment/segmentation.vue

@@ -123,7 +123,7 @@ export default {
         };
     },
     created() {
-        // 出仓管理列表
+        // 分割加工列表
         this.getSegmentationList();
     },
     methods: {
@@ -133,7 +133,7 @@ export default {
                     if (this.isAdd) {
                         reqAddSegmentation(this.formData)
                             .then(res => {
-                                // 出仓管理列表
+                                // 分割加工列表
                                 this.getSegmentationList();
                                 this.$message.success("添加成功!");
                             })
@@ -144,7 +144,7 @@ export default {
                     } else {
                         reqUpdateSegmentation(this.formData)
                             .then(res => {
-                                // 出仓管理列表
+                                // 分割加工列表
                                 this.getSegmentationList();
                                 this.$message.success("编辑成功!");
                             })
@@ -158,7 +158,7 @@ export default {
                 }
             });
         },
-        // 出仓管理列表 
+        // 分割加工列表 
         getSegmentationList() {
             reqSegmentationList({
                 searchStr: this.search,
@@ -186,7 +186,7 @@ export default {
             reqDelSegmentation(row.id)
                 .then(res => {
                     console.log(res);
-                    // 出仓管理列表
+                    // 分割加工列表
                     this.getSegmentationList();
                     this.$message.success("删除成功!");
                 })
@@ -198,7 +198,7 @@ export default {
         pageChange(p) {
             console.log(p);
             this.page = p;
-            // 出仓管理列表
+            // 分割加工列表
             this.getSegmentationList();
         }
     }

+ 6 - 6
src/views/storeTransportation/dispatching.vue

@@ -143,7 +143,7 @@ export default {
         };
     },
     created() {
-        // 出仓管理列表
+        // 配送管理列表
         this.getDispatchList();
     },
     methods: {
@@ -153,7 +153,7 @@ export default {
                     if (this.isAdd) {
                         reqAddDispatch(this.formData)
                             .then(res => {
-                                // 出仓管理列表
+                                // 配送管理列表
                                 this.getDispatchList();
                                 this.$message.success("添加成功!");
                             })
@@ -164,7 +164,7 @@ export default {
                     } else {
                         reqUpdateDispatch(this.formData)
                             .then(res => {
-                                // 出仓管理列表
+                                // 配送管理列表
                                 this.getDispatchList();
                                 this.$message.success("编辑成功!");
                             })
@@ -178,7 +178,7 @@ export default {
                 }
             });
         },
-        // 出仓管理列表
+        // 配送管理列表
         getDispatchList() {
             reqDispatchList({
                 searchStr: this.search,
@@ -206,7 +206,7 @@ export default {
             reqDelDispatch(row.id)
                 .then(res => {
                     console.log(res);
-                    // 出仓管理列表
+                    // 配送管理列表
                     this.getDispatchList();
                     this.$message.success("删除成功!");
                 })
@@ -218,7 +218,7 @@ export default {
         pageChange(p) {
             console.log(p);
             this.page = p;
-            // 出仓管理列表
+            // 配送管理列表
             this.getDispatchList();
         }
     }

+ 3 - 3
src/views/storeTransportation/productQuery.vue

@@ -74,12 +74,12 @@ export default {
         };
     },
     created() {
-        // 出仓管理列表
+        // 产品追溯列表
         this.getProductQueryList();
     },
     methods: {
         //
-        // 出仓管理列表
+        // 产品追溯列表
         getProductQueryList() {
             reqProductQueryList({
                 searchStr: this.search,
@@ -97,7 +97,7 @@ export default {
         pageChange(p) {
             console.log(p);
             this.page = p;
-            // 出仓管理列表
+            // 产品追溯列表
             this.getProductQueryList();
         }
     }

+ 6 - 6
src/views/storeTransportation/shopStore.vue

@@ -118,7 +118,7 @@ export default {
         };
     },
     created() {
-        // 出仓管理列表
+        // 门店管理列表
         this.getShopStoreList();
     },
     methods: {
@@ -128,7 +128,7 @@ export default {
                     if (this.isAdd) {
                         reqAddShopStore(this.formData)
                             .then(res => {
-                                // 出仓管理列表
+                                // 门店管理列表
                                 this.getShopStoreList();
                                 this.$message.success("添加成功!");
                             })
@@ -139,7 +139,7 @@ export default {
                     } else {
                         reqUpdateShopStore(this.formData)
                             .then(res => {
-                                // 出仓管理列表
+                                // 门店管理列表
                                 this.getShopStoreList();
                                 this.$message.success("编辑成功!");
                             })
@@ -153,7 +153,7 @@ export default {
                 }
             });
         },
-        // 出仓管理列表
+        // 门店管理列表
         getShopStoreList() {
             reqShopStoreList({
                 searchStr: this.search,
@@ -181,7 +181,7 @@ export default {
             reqDelShopStore(row.id)
                 .then(res => {
                     console.log(res);
-                    // 出仓管理列表
+                    // 门店管理列表
                     this.getShopStoreList();
                     this.$message.success("删除成功!");
                 })
@@ -193,7 +193,7 @@ export default {
         pageChange(p) {
             console.log(p);
             this.page = p;
-            // 出仓管理列表
+            // 门店管理列表
             this.getShopStoreList();
         }
     }