Commit f754c702 authored by honghy's avatar honghy Committed by wux

【后台-会员等级】新增/修改页面中,“等级有效期”应该是非必填

parent 1d7af6a7
......@@ -290,7 +290,7 @@ export default {
}
},
validatePositiveIntegerorNull(rule, value, callback) {
if (value === '') {
if (value === ''||value === null) {
callback();
} else {
const regex = /^[1-9]\d*$/;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment