san框架单选框配置

  • Post author:
  • Post category:其他


san框架官方文档:https://baidu.github.io/san/tutorial/start/



动态样式添加

<div class="c-form-item mgb-xl">
            <p class="c-form-names">
              <span class="c-form-nonull">*</span>单选
            </p>
            <div class="c-form-info">
              <label class="c-radio {{loopType == '0' ? 'choice' : ''}} mgr-l" on-click="selectCircle('0')">
                <i></i>
                <span></span>
              </label>
              <label class="c-radio {{loopType == '1' ? 'choice' : ''}} mgr-l" on-click="selectCircle('1')">
                <i></i>
                <span></span>
              </label>
            </div>
          </div>
 initData: function () {
             return {
                updatePicId: '',
             }
 }
//选择循环周期
         selectCircle: function(loopType) {
            let self = this;       			this.data.set('malltRightsLoopInfoList[0].loopType',loopType);
          
         },


我的博客主页 :

https://qingmuzhang.gitee.io/



版权声明:本文为qingmuzhang原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。