7、radio 单选.md 3.8 KB
Newer Older
VK1688's avatar
1.0.5  
VK1688 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
## 万能表单使用方式
#### 静态数据方式
#### 应用场景:选项数据为静态数据的情况。
```js
{
  key:"radio1", title:"radio类型1", type:"radio",
  itemWidth:80,
  data:[
    { value:1, label:"选项1" },
    { value:2, label:"选项2" }
  ]
}
```

#### 远程数据方式
#### 应用场景:需要从数据库中获取选项的情况。
```js
{
  key:"radio4", title:"远程radio", type:"radio",
  border:true,
  itemWidth:80,
  action:"admin/select/kh/categorys",
  props:{ list:"rows", value:"_id", label:"name" },
}
```
VK1688's avatar
1.2.0  
VK1688 已提交
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
#### 远程数据带参数方式1
```js
{
  key:"radio4", title:"远程radio", type:"radio",
  border:true,
  itemWidth:80,
  action:"admin/select/kh/categorys",
  actionData:{
    a:1
  },
  props:{ list:"rows", value:"_id", label:"name" },
}
```
#### 远程数据带参数方式2
```js
{
  key:"radio4", title:"远程radio", type:"radio",
  border:true,
  itemWidth:80,
  action:"admin/select/kh/categorys",
  actionData:function(){
      return {
      a:that.form1.data.a
    }
  },
  props:{ list:"rows", value:"_id", label:"name" },
}
```
VK1688's avatar
1.2.2  
VK1688 已提交
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
#### 数据预处理
```js
{
  key:"radio4", title:"远程radio", type:"radio",
  border:true,
  itemWidth:80,
  action:"admin/select/kh/categorys",
  props:{ list:"rows", value:"_id", label:"name" },
  dataPreprocess:function(list){
    list.map((item, index) => {
      item.name = `${item.name}(${item._id})`
    });
    return list;
  }
}
```
VK1688's avatar
1.2.0  
VK1688 已提交
70

VK1688's avatar
1.0.5  
VK1688 已提交
71 72 73 74 75 76 77 78 79 80 81 82 83 84


## API

### 属性

[点击查看『公共属性』](https://gitee.com/vk-uni/vk-uni-cloud-router/wikis/pages?sort_id=4051177&doc_id=975983)

### 组件属性

| 参数             | 说明                           | 类型    | 默认值  | 可选值 |
|------------------|-------------------------------|---------|--------|-------|
| data            | 静态模式数据源 | Array  | - | -  |
| action          | 动态模式 - 远程请求的云函数地址 | String  | - | -  |
VK1688's avatar
1.2.0  
VK1688 已提交
85
| actionData          | 动态模式 - 远程请求的云函数时的额外参数 | Object、Function  | - | -  |
VK1688's avatar
1.0.5  
VK1688 已提交
86
| props          | 数据源的属性匹配规则 | Object  | { list:'list', value:'value', label:'label' } | -  |
VK1688's avatar
1.2.2  
VK1688 已提交
87
| dataPreprocess          | 动态模式 - 云函数返回的数据进行预处理 | function(list)  | - | -  |
VK1688's avatar
1.0.5  
VK1688 已提交
88 89 90 91 92
| textColor      | 按钮形式的 Radio 激活时的文本颜色 | String  | #ffffff | -  |
| fill      | 按钮形式的 Radio 激活时的填充色和边框色 | String  | #409EFF | -  |
| optionType        | 选项形状类型 | String  | default | button  |
| border          | 是否显示边框 | Boolean  | false| true |
| itemWidth          | 选项的统一宽度(用于排版) | Number  | - | -  |
VK1688's avatar
1.1.7  
VK1688 已提交
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
| onChange          | function(val, formData, column, index, option) | Function  | -| -  |

#### onChange 使用示例
```js
{
  key:"radio4", title:"远程radio", type:"radio",
  border:true,
  itemWidth:80,
  action:"admin/select/kh/categorys",
  props:{ list:"rows", value:"_id", label:"name" },
  onChange:function(val, formData, column, index, option){
    console.log(1,val, formData, column, index, option);
  }
}
```
VK1688's avatar
1.0.5  
VK1688 已提交
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141

## 万能表格使用方式

```js
{ 
  key: "gender", title: "性别", type: "radio", width: 120, defaultValue:0,
  data:[
    { value:1, label:"" },
    { value:2, label:"" },
    { value:0, label:"保密" }
  ]
}
```


## template 使用方式
#### 静态数据方式
#### 应用场景:选项数据为静态数据的情况。
```html
<vk-data-input-radio
  v-model="form1.value"
  :localdata="[
    { value:1, label:'男' },
    { value:2, label:'女' },
    { value:0, label:'保密' }
  ]"
></vk-data-input-radio>
```
#### 远程数据方式
#### 应用场景:需要从数据库中获取选项的情况。
```html
<vk-data-input-radio
  v-model="form1.value"
  :item-width="80"
VK1688's avatar
1.2.4  
VK1688 已提交
142
  action="admin/select/kh/categorys"
VK1688's avatar
1.0.5  
VK1688 已提交
143 144 145
  :props="{ list:'rows', value:'_id', label:'name' }"
></vk-data-input-radio>
```