You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
720 B
23 lines
720 B
<?php
|
|
|
|
return [
|
|
[
|
|
//配置名称,该值在当前数组配置中确保唯一
|
|
'name' => 'mobile_name',
|
|
//配置标题
|
|
'title' => '网站名称',
|
|
//配置类型,支持string/text/number/datetime/array/select/selects/image/images/file/files/checkbox/radio/bool
|
|
'type' => 'string',
|
|
//分组选项卡
|
|
'group' => '分组1',
|
|
//配置值
|
|
'value' => 'CRM',
|
|
//配置验证规则,更之规则可参考nice-validator文件
|
|
'rule' => 'required',
|
|
'msg' => '请输入网站名称',
|
|
'tip' => 'h5或小程序登录页标题',
|
|
'ok' => '验证成功',
|
|
'extend' => ''
|
|
],
|
|
|
|
];
|
|
|