xiaodai2022 2 vuotta sitten
vanhempi
commit
8aa4dd9153

Tiedoston diff-näkymää rajattu, sillä se on liian suuri
+ 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;

Kaikkia tiedostoja ei voida näyttää, sillä liian monta tiedostoa muuttui tässä diffissä