Przeglądaj źródła

Merge remote-tracking branch 'origin/v3.0' into v3.0

snow 1 rok temu
rodzic
commit
0fa911b206

Plik diff jest za duży
+ 0 - 0
dist/static/js/0.js


Plik diff jest za duży
+ 0 - 0
dist/static/js/app.js


Plik diff jest za duży
+ 0 - 0
dist/static/js/chunk-elementUI.js


Plik diff jest za duży
+ 0 - 0
dist/static/js/chunk-libs.js


+ 6 - 3
src/utils/validate.js

@@ -531,9 +531,12 @@ export function hasSpace(s) {
   //   \"  034   代表一个双引号字符
   //   \?  063   代表一个问号
   //   \0  000   空字符(NUL)
-  //   \ddd 三位八进制  1到3位八进制数所代表的任意字符
-  //   \xhh 十六进制  十六进制所代表的任意字符
-  const str2 = s.replace(/[\a\b\f\n\r\t\v\\\'\"\?\0\ddd\xhh]/g, "");
+  //   \ddd 三位八进制  1到3位八进制数所代表的任意字符 会把数字过滤掉
+  //   \xhh 十六进制  十六进制所代表的任意字符 会把部分字母过滤掉
+  // 
+  const str2 = s.replace(/[\b\f\n\r\t\v\\\'\"\?\0]/g, "");
+  console.log(s);
+  console.log(str2);
   return !(str2 === s);
 }
 function com1(str, arr) {

+ 2 - 2
src/views/serviceParam/supplier/components/baseForm.vue

@@ -634,7 +634,7 @@ export default {
         supplier_type,
         level,
         pay_type,
-        supplier_img,
+        license_img,
         prove_img,
         contactor,
         mobile,
@@ -664,7 +664,7 @@ export default {
         supplier_type: supplier_type || '',
         level: level || '',
         pay_type: pay_type || '',
-        supplier_img: supplier_img || '',
+        supplier_img: license_img || '',
         prove_img: prove_img ? (prove_img || '').split(',') : [],
         contactor: contactor || '',
         mobile: mobile || '',

Niektóre pliki nie zostały wyświetlone z powodu dużej ilości zmienionych plików