Browse Source

bug 修复

lilei 2 years ago
parent
commit
598393535b

+ 1 - 1
public/version.json

@@ -1,4 +1,4 @@
 {
-    "version": "2.1.24",
+    "version": "2.1.25",
     "message": "发现有新版本发布,确定更新系统?"
 }

+ 7 - 0
src/views/salesReturnManagement/custConfirm/list.vue

@@ -258,6 +258,13 @@ export default {
       showPlModal: false
     }
   },
+  watch: {
+    showPlModal (newValue, oldValue) {
+      if (!newValue) {
+        this.plReturnReason = ''
+      }
+    }
+  },
   computed: {
     selNums () {
       return this.rowSelectionInfo && this.rowSelectionInfo.selectedRowKeys.length || 0

+ 7 - 0
src/views/salesReturnManagement/receiveCheck/checking.vue

@@ -167,6 +167,13 @@ export default {
       showPlModal: false
     }
   },
+  watch: {
+    showPlModal (newValue, oldValue) {
+      if (!newValue) {
+        this.plReturnReason = ''
+      }
+    }
+  },
   computed: {
     selNums () {
       return this.rowSelectionInfo && this.rowSelectionInfo.selectedRowKeys.length || 0

+ 7 - 0
src/views/salesReturnManagement/salesReturn/salesReturnEdit.vue

@@ -231,6 +231,13 @@ export default {
       showPlModal: false
     }
   },
+  watch: {
+    showPlModal (newValue, oldValue) {
+      if (!newValue) {
+        this.plReturnReason = ''
+      }
+    }
+  },
   computed: {
     selNums () {
       return this.rowSelectionInfo && this.rowSelectionInfo.selectedRowKeys.length || 0