lilei 2 tháng trước cách đây
mục cha
commit
27f2cfdb3f

+ 1 - 1
public/version.json

@@ -1,5 +1,5 @@
 {
   "message": "发现有新版本发布,确定更新系统?",
   "vendorJsVersion": "",
-  "version": 1744710532103
+  "version": 1744711012865
 }

+ 6 - 1
src/views/salesManagement/salesQueryNew/chooseProductModal.vue

@@ -482,7 +482,7 @@ export default {
   methods: {
     // 查询
     searchForm () {
-      if (this.queryParam.vinCode.length != 17) {
+      if (this.queryParam.vinCode.length != 0 && this.queryParam.vinCode.length != 17) {
         this.$message.info('请输入正确的VIN码')
         return
       }
@@ -573,6 +573,11 @@ export default {
         }, 200)
       } else {
         // this.$message.info('请输入正确的VIN码')
+        if (this.hasVaild) {
+          setTimeout(() => {
+            this.searchForm()
+          }, 200)
+        }
         this.queryParam.productCodeList = undefined
       }
     },