wxml:
第1题:企业的价值观是 ? 单选
我们看一下原生的效果:
修改wxml中的redio 组件的color属性:
{{item.value}}
wxss(只有修改样式的部分):
radio .wx-radio-input{
}
radio .wx-radio-input.wx-radio-input-checked {
border-color: #2792ff!important;
}
radio .wx-radio-input.wx-radio-input-checked::before {
content: '';
width: 36rpx;
height: 36rpx;
border-radius: 50%;
background-color: #2792ff;
}
修改后的单选框样式:
复选框同理
wxml:
第1题:企业的价值观是 ? 多选
wxss:
checkbox .wx-checkbox-input{
border-radius: 50%;
}
checkbox .wx-checkbox-input.wx-checkbox-input-checked {
border-radius: 50%;
border-color: #2792ff!important;
}
checkbox .wx-checkbox-input.wx-checkbox-input-checked::before {
content: '';
width: 36rpx;
height: 36rpx;
border-radius: 50%;
background-color: #2792ff;
}
修改前后对比:
前
后
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持考高分网。



