微信小程序 修改默认单选,多选按钮样式

微信小程序 修改默认单选,多选按钮样式

1.在微信开发者文档中复制一份单选或者多选的代码
javascript 复制代码
<!--pages/index3/index.wxml-->
<radio-group bindchange="radioChange">
        <label class="weui-cell weui-check__label" style="display: flex;">
            <radio value="1" checked="true"/>
          <view class="weui-cell__bd">按钮1</view>
        </label>
        <label class="weui-cell weui-check__label" style="display: flex;">
            <radio value="1" checked="true"/>
          <view class="weui-cell__bd">按钮1</view>
        </label>
        <label class="weui-cell weui-check__label" style="display: flex;">
            <radio value="1" checked="true"/>
          <view class="weui-cell__bd">按钮1</view>
        </label>
      </radio-group>
2. 根据情况复制单选或者多选代码即可

index.wxss

javascript 复制代码
/* pages/index3/index.wxss */
/* 单选按钮样式 */
.wx-radio-input {
    width: 32rpx !important;
    height: 32rpx !important;
    border-radius: 100%;
    background-color: #fff !important;
  }
  /*勾选样式 */
  .wx-radio-input.wx-radio-input-checked {
    border: none !important;
    background-color: #6784f5 !important;
  }

  /* 多选框样式 */

  /* 未勾选样式 */
.wx-checkbox-input {
  width: 33rpx !important;
  height: 33rpx !important;
}
/* 勾选样式 */
.wx-checkbox-input.wx-checkbox-input-checked{
  border-color:#6784f5 !important;
  background:#6784f5 !important;
}

  

这样就ok了。

注:仅记录方便开发查找。

相关推荐
zhulangfly4 小时前
Wux weapp 组件库的 bug—— wux-picker选择器组件无法正确初始化到选定的value
小程序·wux weapp
兔C5 小时前
微信小程序的轮播图学习报告
学习·微信小程序·小程序
用户48062260414156 小时前
使用uniapp开发微信小程序-框架搭建
微信小程序·uni-app
嘟嘟实验室6 小时前
微信小程序xr-frame透明视频实现
微信小程序·ffmpeg·音视频·xr
Cc_Debugger6 小时前
小程序将对象通过url传递到下个页面
小程序
低代码布道师7 小时前
从用户视角出发:用例图分析家政预约小程序
低代码·小程序
说私域7 小时前
社交媒体形象打造中的“号设化”与开源AI智能名片商城小程序的应用
人工智能·小程序·媒体
Stanford_11069 小时前
高级的SQL查询技巧有哪些?
sql·微信小程序·twitter·微信开放平台
美美的海顿11 小时前
spring boot 火车售票微信小程序LW
spring boot·后端·微信小程序·小程序·毕业设计
Kika写代码13 小时前
【微信小程序】1|底部图标 | 我的咖啡店-综合实训
微信小程序·小程序