🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
| 参数名 | 状态 | 说明 | | --- | --- | --- | | title | 选填 | 弹框标题 | | input | 必填 | 表单数组 | | SP | 选填 | 系统逻辑指向地址 | | MP | 选填 | 功能逻辑指向地址 | | submit | 选填 | 提交按钮名称 ( 默认为确定 ) | * 表单限制 ( 如 : limit=>[1,5] ) | 校对编号 | 说明 | 案例 | | --- | --- |--- | | 1 | 非空 | limit=>[1] | | 2 | 字数限制 ( limit_min 最小值 / limit_max 最大值 ) | limit=>[1], limit_min=>6, limit_max=>30 | | 3 | 数值限制 ( limit_min 最小值 / limit_max 最大值 ) | limit=>[1] , limit_min=>6, limit_max=>30 | | 4 | 表单同值 ( limit_same 比对字段id ) | limit=>[4], limit_same="same" | | 5 | 只能为数字 | limit=>[5] | | 6 | 只能为邮箱 | limit=>[6] | | 7 | 只能字母或数字 | limit=>[7] | | 8 | 只能为手机号 | limit=>[8] | | 9 | 只能为身份证号 | limit=>[9] | ~~~