xiaodai2022 2 years ago
parent
commit
8aa4dd9153

File diff suppressed because it is too large
+ 0 - 0
dist/static/js/0.js


+ 2 - 1
src/views/sellOut/sellOutOrder/components/want-deliver.vue

@@ -128,7 +128,8 @@ export default {
           callback(new Error("仅支持0;纯数字或字母数字组合(10~20位)!"));
         } else if (isnumber(value)) {
           callback();
-        } else if (isAlphanumeric(value)) {
+        } else if (!isAlphanumeric(value)) {
+          console.log(!isAlphanumeric(value));
           callback(new Error("仅支持0;纯数字或字母数字组合(10~20位)!"));
         } else {
           callback();

+ 1 - 1
src/views/sellOut/sellOutOrder/sendOutOrder.vue

@@ -141,7 +141,7 @@ export default {
           res = false;
         } else if (isnumber(value)) {
           res = true;
-        } else if (isAlphanumeric(value)) {
+        } else if (!isAlphanumeric(value)) {
           res = false;
         } else {
           res = true;

Some files were not shown because too many files changed in this diff