溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

微信小程序如何實(shí)現(xiàn)性別單選效果

發(fā)布時(shí)間:2022-07-19 13:37:55 來(lái)源:億速云 閱讀:1097 作者:iii 欄目:開(kāi)發(fā)技術(shù)

本文小編為大家詳細(xì)介紹“微信小程序如何實(shí)現(xiàn)性別單選效果”,內(nèi)容詳細(xì),步驟清晰,細(xì)節(jié)處理妥當(dāng),希望這篇“微信小程序如何實(shí)現(xiàn)性別單選效果”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來(lái)學(xué)習(xí)新知識(shí)吧。

效果圖:

微信小程序如何實(shí)現(xiàn)性別單選效果

代碼:

html:

<view class="inputbox">
        <view class="inptxt">性別</view>
        <view class="inpbox">
          <radio-group bindchange="radioChange" class="inp radiogroup">
            <view class="radiobox" wx:for="{{sex}}" wx:key="value">
              <radio value="{{item.id}}" color="#ff0000" checked="{{item.checked}}"/>
              <view class="radiotxt">{{item.value}}</view>
            </view>
          </radio-group>          
        </view>
</view>

js:

data:{
    sex: [{
      id: 1,
      value: '男'
    }, {
      id: 2,
      value: '女'
    }],
}
// sexinp
  radioChange: function (e) {
    // console.log('radio發(fā)生change事件,攜帶value值為:', e.detail.value)
    const sex = this.data.sex
    for (let i = 0, len = sex.length; i < len; ++i) {
      sex[i].checked = sex[i].id == e.detail.value
    }
    this.setData({
      sex
    })
    console.log(this.data.sex);
  },

(注意:post提交時(shí),提交的是選中的性別的id,所以需要把選中的id 提出來(lái),再提交)

postaddManage: function () {
    let sex = '';
    this.data.sex.map((item, index) => {
      if (item.checked) {
        sex = item.id;
      }
    })
    let params = {
        sex: sex,
    }
    addManage(params).then(res => {
        console.log(res);
    })
}

css(less):

.inputbox {
        display: flex;
        flex-direction: row;
        // justify-content: space-between;
        width: 100%;
        height: 80rpx;
        line-height: 80rpx;
        margin-top: 10rpx;
        border-bottom: 1px solid #f1f1f1;
        font-size: 32rpx;
        color: #353535;

        .inptxt {
          white-space: nowrap;
        }

        .inpbox {
          width: 100%;
          margin-left: 20rpx;
          display: flex;
          flex-direction: row;
          justify-content: space-between;

          .inp {
            position: relative;
            width: 100%;
            height: 80rpx;
          }

          .telinpbox {
            width: 240rpx;
            // height: 52rpx;
            overflow: hidden;
            margin-top: 10rpx;

            .telinp {
              width: 55rpx;
              height: 55rpx;
              overflow: hidden;
              margin-left: 25rpx;
            }
          }

          .radiogroup {
            display: flex;
            flex-direction: row;

            .radiobox {
              display: flex;
              flex-direction: row;
              margin-left: 50rpx;
            }
          }
        }
}

讀到這里,這篇“微信小程序如何實(shí)現(xiàn)性別單選效果”文章已經(jīng)介紹完畢,想要掌握這篇文章的知識(shí)點(diǎn)還需要大家自己動(dòng)手實(shí)踐使用過(guò)才能領(lǐng)會(huì),如果想了解更多相關(guān)內(nèi)容的文章,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI