小程序配合vant+vue2+ts使用实现反选多选全选demo

<template>
  <div>
    <van-checkbox :value="checked" @change="radioChange">全选</van-checkbox>
    <van-checkbox-group :value="result" @change="onChange">
      <van-checkbox v-for="item in list" :key="item.id" :name="item.id"
        >{{ item.name }}
      </van-checkbox>
    </van-checkbox-group>
  </div>
</template>
<script lang="ts">
import Vue from 'vue'

export default Vue.extend({
  name: 'Rights',
  data() {
    return {
      checked: false,
      result: ['1'],
      list: [
        {
          id: '1',
          name: '第一项'
        },
        {
          id: '2',
          name: '第二项'
        }
      ]
    }
  },
  methods: {
    onChange(item) {
      console.log(item.detail, 'item.detail')
      this.result = [...item.detail]
      if (!item.detail.length) {
        this.checked = false
      } else if (item.detail.length === this.list.length) {
        this.checked = true
      } else {
        this.checked = false
      }
    },
    radioChange(item) {
      console.log(item, 'radioItem')
      this.checked = item.detail
      if (item.detail) {
        const listAll = this.list.map(item => item.id)
        this.result = [...listAll]
      } else {
        this.result.splice(0, this.result.length)
      }
    }
  },
  created() {
    console.log('获取list数据')
  }
})
</script>
<style lang="less" scoped></style>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值