@beisen-platform/platform-radiobutton
v1.0.11-rc.2
Published
## 提交
Downloads
46
Readme
组件使用、扩展文档
提交
- npm install
- 修改代码后执行 npm run lib进行编译
- 更新package.json中的 version版本号
- push代码
- 在cmp.beisen.io站点,头部导航的《服务》中查看编译是否通过
使用参数
{
text: this.props.text || '',
value: this.props.value || '',
"cmp_id": "2a5e8670-6ea6-474d-b682-be8f55a46b4b",
"cmp_name": "BeisenCloudDemofirst_dxkforeignsjy",
"cmp_type": "BC_RadioList",
"cmp_label": "单选框主键数据源",
"cmp_data": {
"title": "单选框主键数据源",
"field_name": "dxkforeignsjy",
"required": false, //必填
"cmp_state": "create",
"cmp_status": "editable",
"editdisplaystate": "editable",
"createdisplaystate": "editable",
"showdisplaystate": "readonly",
"datasourcename": "NativePlace",
"metaObjectName":"BeisenCloudDemo.first",
"dataType": "Text",
"datasource": [ //展示的数据
{
"text":"哈哈1"
,"textJson":"525db9d4-c9c2-47a2-82bb-1dac27568101"
,"value":"525db9d4-c9c2-47a2-82bb-1dac27568101"
},
{
"text":"哈哈2"
,"textJson":"525db9d4-c9c2-47a2-82bb-1dac27568101"
,"value":"525db9d4-c9c2-47a2-82bb-1dac27568101"
},
{
"text":"哈哈3"
,"textJson":"525db9d4-c9c2-47a2-82bb-1dac27568101"
,"value":"525db9d4-c9c2-47a2-82bb-1dac27568101"
}
]
},
"search_data": {
metaFieldRelationIDPath: null,
metaobjectname: "BeisenCloudDemo.first",
opeartor: "eq",
seperator: "-"
},
"ifError": false, //true 或者false,是否显示错误状态
"biz_data": { "text": "" },
"validators": {},
styleTitle: 'rightFlush', // "upAndDown" , "rightFlush", "leftFlush", label的位置上下还是左右
onChange: (value,target) => {} //onchange回调事件
}
组件使用
- npm install @beisen-cmps/platform-radiobutton
- 该组件有两种使用方式, 第一种会走组件内部的获取数据方式(如果组件需要请求接口),数据会存在state里,第二种会走外部传入的action
- import XXX from '@beisen-cmps/platform-radiobutton'
- import {RadioButton} from '@beisen-cmps/platform-radiobutton'
render() {
return <RadioButton {...this.props}/>;
}