quansitech / qscmf-builderitem-radio-text
qscmf formbuilder listbuilder item
Installs: 46
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Language:JavaScript
Requires
- php: >=8.0.0
- tiderjian/think-core: >=12.0.0
This package is auto-updated.
Last update: 2024-11-30 02:13:50 UTC
README
radio-text builder组件
效果截图
form_type
column_type
安装
composer require quansitech/qscmf-builderitem-radio-text
如何使用
-
FormType
// title: 选项标题 // key: 选现对应的键值 // need_text 是否需要填写额外的文本项 $option = [ [ 'title' => '网站开发', 'key' => 1, ], [ 'title' => '公众号运维', 'key' => 2, ], [ 'title' => '其他', 'key' => 3, 'need_text' => true, ] ]; ->addFormItem("main_business", "radio_text", "主营业务", "", $option) //注意:组件会自动构造好json格式的数据提交,直接存入对应的数据库字段即可
-
ColumnType
$option = [ [ 'title' => '网站开发', 'key' => 1, ], [ 'title' => '公众号运维', 'key' => 2, ], [ 'title' => '其他', 'key' => 3, 'need_text' => true, ] ]; ->addTableColumn("main_business", "主营业务", "radio_text", $option)