Commit df9fbc93 authored by 前端-黄佳鑫's avatar 前端-黄佳鑫

fix: 修改营销成团人数必须大于1

parent 7242a125
......@@ -526,7 +526,7 @@ const RulesLayout: React.FC<RulesLayoutProps> = (props: any) => {
name={['activityDefined', 'assembleNum']}
rules={[{
required: true, validator: (_rule, value) => {
const pattern = /^\+?[1-9]\d*$/;
const pattern = /^0*(?:[2-9]|[1-9]\d\d*)$/;
if (!value) {
return Promise.reject(new Error('请输入成团人数'));
}
......
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