mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
feat(Radio): add icon-size prop (#2027)
This commit is contained in:
parent
b9228ba3ea
commit
456273f639
@ -26,10 +26,8 @@ VantComponent({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
data() {
|
data: {
|
||||||
return {
|
strokeWidthUnit: '4px'
|
||||||
strokeWidthUnit: '4px'
|
|
||||||
};
|
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
|
@ -153,6 +153,7 @@ Page({
|
|||||||
| value | 当前选中项的 name | *any* | - | - |
|
| value | 当前选中项的 name | *any* | - | - |
|
||||||
| shape | 形状,可选值为 `round` `square` | *string* | `round` | - |
|
| shape | 形状,可选值为 `round` `square` | *string* | `round` | - |
|
||||||
| disabled | 是否为禁用状态 | *boolean* | `false` | - |
|
| disabled | 是否为禁用状态 | *boolean* | `false` | - |
|
||||||
|
| icon-size | 图标大小,默认单位为`px` | *string \| number* | `20px` | - |
|
||||||
| label-disabled | 是否禁用文本内容点击 | *boolean* | `false` | - |
|
| label-disabled | 是否禁用文本内容点击 | *boolean* | `false` | - |
|
||||||
| label-position | 文本位置,可选值为 `left` | *string* | `right` | - |
|
| label-position | 文本位置,可选值为 `left` | *string* | `right` | - |
|
||||||
| use-icon-slot | 是否使用 icon slot | *boolean* | `false` | - |
|
| use-icon-slot | 是否使用 icon slot | *boolean* | `false` | - |
|
||||||
|
@ -2,14 +2,10 @@
|
|||||||
|
|
||||||
.van-radio {
|
.van-radio {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
|
||||||
&__icon-wrap,
|
|
||||||
&__label {
|
|
||||||
line-height: @radio-size;
|
|
||||||
}
|
|
||||||
|
|
||||||
&__icon-wrap {
|
&__icon-wrap {
|
||||||
flex: none;
|
flex: none;
|
||||||
}
|
}
|
||||||
@ -17,10 +13,9 @@
|
|||||||
&__icon {
|
&__icon {
|
||||||
display: block;
|
display: block;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
width: @radio-size;
|
width: 1em;
|
||||||
height: @radio-size;
|
height: 1em;
|
||||||
color: transparent;
|
color: transparent;
|
||||||
font-size: 14px;
|
|
||||||
text-align: center;
|
text-align: center;
|
||||||
border: 1px solid @radio-border-color;
|
border: 1px solid @radio-border-color;
|
||||||
transition-duration: @radio-transition-duration;
|
transition-duration: @radio-transition-duration;
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
import { VantComponent } from '../common/component';
|
import { VantComponent } from '../common/component';
|
||||||
import { Weapp } from 'definitions/weapp';
|
import { Weapp } from 'definitions/weapp';
|
||||||
|
import { addUnit } from '../common/utils';
|
||||||
|
|
||||||
VantComponent({
|
VantComponent({
|
||||||
field: true,
|
field: true,
|
||||||
@ -30,10 +31,24 @@ VantComponent({
|
|||||||
shape: {
|
shape: {
|
||||||
type: String,
|
type: String,
|
||||||
value: 'round'
|
value: 'round'
|
||||||
|
},
|
||||||
|
iconSize: {
|
||||||
|
type: null,
|
||||||
|
observer: 'setIconSizeUnit'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
data: {
|
||||||
|
iconSizeWithUnit: '20px'
|
||||||
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
|
setIconSizeUnit(val) {
|
||||||
|
this.setData({
|
||||||
|
iconSizeWithUnit: addUnit(val)
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
emitChange(value: boolean) {
|
emitChange(value: boolean) {
|
||||||
const instance = this.parent || this;
|
const instance = this.parent || this;
|
||||||
instance.$emit('input', value);
|
instance.$emit('input', value);
|
||||||
|
@ -8,15 +8,15 @@
|
|||||||
>
|
>
|
||||||
<slot />
|
<slot />
|
||||||
</view>
|
</view>
|
||||||
<view class="van-radio__icon-wrap" bindtap="onChange">
|
<view class="van-radio__icon-wrap" style="font-size: {{ iconSizeWithUnit }};" bindtap="onChange">
|
||||||
<slot wx:if="{{ useIconSlot }}" name="icon" />
|
<slot wx:if="{{ useIconSlot }}" name="icon" />
|
||||||
<van-icon
|
<van-icon
|
||||||
wx:else
|
wx:else
|
||||||
name="success"
|
name="success"
|
||||||
class="{{ utils.bem('radio__icon', [shape, { disabled, checked: value === name }]) }}"
|
class="{{ utils.bem('radio__icon', [shape, { disabled, checked: value === name }]) }}"
|
||||||
style="{{ checkedColor && !disabled && value === name ? 'border-color:' + checkedColor + '; background-color:' + checkedColor : '' }}"
|
style="{{ checkedColor && !disabled && value === name ? 'border-color:' + checkedColor + '; background-color:' + checkedColor + ';' : '' }}"
|
||||||
custom-class="icon-class"
|
custom-class="icon-class"
|
||||||
custom-style="line-height: 20px;"
|
custom-style="line-height: {{ iconSizeWithUnit }};font-size: .8em;display: block;"
|
||||||
/>
|
/>
|
||||||
</view>
|
</view>
|
||||||
<view
|
<view
|
||||||
|
Loading…
x
Reference in New Issue
Block a user