vue2 el-checkbox-group 复选框无法选中

news/2024/11/17 1:44:12/

vue2 el-checkbox-group 复选框无法选中

原代码:

<template slot-scope="scope"><el-checkbox v-model="scope.row.bitian">必填</el-checkbox>
</template>if (this.allTemplateList && this.allTemplateList.length > 0) {this.allTemplateList.forEach(template => {template.bitian = false;template.number = '';template.shangchuandatas = [];template.wenjiandaxiao = '';})
},

修改后:在遍历 this.allTemplateList 时,使用 Vue.set 或 this.$set 来确保新添加的属性是响应式的

if (this.allTemplateList && this.allTemplateList.length > 0) {  this.allTemplateList.forEach((template, index) => {  this.$set(this.allTemplateList, index, {  ...template,  bitian: false,  number: '',  shangchuandatas: [],  wenjiandaxiao: '',  });  });  
}

http://www.ppmy.cn/news/1412382.html

相关文章

OpenHarmony开发-连接开发板调试应用

在 OpenHarmony 开发过程中&#xff0c;连接开发板进行应用调试是一个关键步骤&#xff0c;只有在真实的硬件环境下&#xff0c;我们才能测试出应用更多的潜在问题&#xff0c;以便后续我们进行优化。本文详细介绍了连接开发板调试 OpenHarmony 应用的操作步骤。 首先&#xf…

lora微调过程

import os import pickle from transformers import AutoModelForCausalLM from peft import get_peft_config, get_peft_model, get_peft_model_state_dict, LoraConfig, TaskTypedevice "cuda:0"#1.创建lora微调基本的配置 peft_config LoraConfig(task_typeTask…

python 会员管理系统

问题介绍 综合案例&#xff1a;会员管理系统实现-V2版&#xff08;不可超前使用面向对象&#xff09; 利用函数&#xff0c;编写会员管理系统&#xff0c;实现进入系统显示系统功能界面&#xff0c;选择添加、删除、修改&#xff0c;查询、显示所有会员信息以及退出系统等响应…

【13137】第一章 质量与质量管理导论

目录 1.单选题 2.多选题 3.简答题 【13137】质量管理-考试分析: 1.单选题

基于SpringBoot注入Bean形式的监听(端口)

起一个线程、监听对应的端口,注入到容器 package com.port.component;import com.port.service.PortListenerService; import org.springframework.beans.factory.annotation.Value; import org.springframework.boot.CommandLineRunner; import org.springframework.stereoty…

线性变换在人工智能领域的深度实践与应用探索

线性变换&#xff0c;作为数学中的一种基本工具&#xff0c;在人工智能领域中发挥着举足轻重的作用。其强大的表示能力和灵活的运算特性使得线性变换成为机器学习、深度学习等多个子领域的核心组成部分。本文将详细探讨线性变换在人工智能领域中的实践应用&#xff0c;旨在揭示…

【攻防世界】web2(逆向解密)

进入题目环境&#xff0c;查看页面信息&#xff1a; <?php $miwen"a1zLbgQsCESEIqRLwuQAyMwLyq2L5VwBxqGA3RQAyumZ0tmMvSGM2ZwB4tws";function encode($str){$_ostrrev($str);// echo $_o;for($_00;$_0<strlen($_o);$_0){$_csubstr($_o,$_0,1);$__ord($_c)1;…

leetcode hot100中的经典背包问题

通过对比完全背包和01背包的leetcode hot100中几个小题目&#xff0c;明确应用场景&#xff0c;以及代码书写的遍历顺序。 完全背包问题 完全背包指的是每件物品可以重复被使用&#xff0c;放入背包中。 322. 零钱兑换 给你一个整数数组 coins &#xff0c;表示不同面额的硬币…