🐝 Fix: url长度放宽到5000

This commit is contained in:
fanxb 2019-09-08 10:47:24 +08:00
parent 38e60b7af8
commit 05d07e49a6

View File

@ -25,8 +25,8 @@ const reg = {
text: "名称字符数为1-40" text: "名称字符数为1-40"
}, },
url: { url: {
reg: /^.{1,500}$/, reg: /^.{1,5000}$/,
text: "链接字符数为1-500" text: "链接字符数为1-5000"
} }
}; };