gpt4 book ai didi

javascript - 如何使用 Vue 正确检查所有复选框并更改状态?

转载 作者:行者123 更新时间:2023-12-02 22:17:39 25 4
gpt4 key购买 nike

一直在寻找这个问题一段时间,现在我努力选择所有复选框:

1.- 当标记为“选择待办事项”的复选框被选中时,必须选中所有当前复选框。

2.- 如果选中“选择待办事项”复选框,但用户取消选中“选择待办事项”之外的任何复选框,则必须停用选择所有复选框

Tickets.vue(此文件创建我需要的表,这是我需要帮助的地方)

<template>
<v-card class="elevation-5 pa-3">
<div>
<v-checkbox color="primary" @change="selectall()" :id="`todos`" :label="`Seleccionar Todo`" :checked="booleanValue" :val="'FALSE'" ref="todos"/>
</div>
<v-data-table
ref="data_table"
:headers="configuracion.configClientes.encabezados"
expand
rows-per-page-text="Filas por página"
:rows-per-page-items="[10, 20, 55, { text: 'Todas', value: -1 }]"
:no-results-text="'No se han encontrado tickets'"
:item-key="configuracion.configClientes.itemKey"
v-model="seleccion"
:configuracion="configuracion.configClientes"
:items="cat_clientes.catalogo"
>
<template slot="headerCell" slot-scope="props">
<span>
{{ props.header.text }}
</span>
</template>

<template slot="items" slot-scope="props">
<tr>
<td
v-for="columna in configuracion.configClientes.encabezados"
v-if="columna.value !== '$acciones'"
:key="keyUUID()"
>
{{ formatearColumna( props.item, columna ) }}

</td>
<td>
<v-checkbox :val="items.FOLIO" v-model="props.items" color="primary" @change="changeCheckbox(props.item.FOLIO)"/>
</td>
</tr>
</template>

<template slot="no-data">
<v-alert :value="true" color="warning" icon="warning">
{{ configuracion.mensajeVacia ? configuracion.mensajeVacia : 'No hay tickets' }}
</v-alert>
</template>
</v-data-table>
</v-card>
</template>

<script>
import { mapActions, mapGetters } from 'vuex';
/* mixins */
import { mixins_generales } from "../Mixins/generales";
import { formatos } from "../Mixins/formatos";

export default {
mixins: [mixins_generales, formatos],

props: {
configuracion: {
type: Object,
default: () => {
return {
configClientes: {
seleccionable: true,
itemKey: 'id',
editable: true,
eliminable: true,
buscable: true,
expandible: true,
labelBusqueda: 'Buscar ticket',
mensajeVacia: 'No hay tickets',
encabezados: [
{text: 'Folio', value: 'FOLIO', align: 'left'},
{text: 'Fecha', value: 'FECHA', align: 'left'},
{text: 'Hora', value: 'HORA', align: 'left'},
{text: 'Sub-Total', value: 'SUBTOTAL', align: 'left'},
{text: 'IVA', value: 'IVA', align: 'left'},
{text: 'Total', value: 'TOTAL', align: 'left'},
{text: 'Procesar', value: '$acciones', align: 'left'}
]
},
clienteSeleccionado: null,
};
}
},
items: {
type: Array,
default: () => []
}
},

data() {

return {
checked:false,
seleccion: [],
todos:[],
booleanValue:false
};
},
computed: {
...mapGetters([
'cat_clientes'
]),
},
methods: {
...mapActions([
'LLENAR_CAT_CLIENTES',
'AGREGAR_CAT_CLIENTE',
'QUITAR_CAT_CLIENTE',
'MARCAR_CAT_CLIENTES_CONSULTADO'
]),
handleInput(e) {
console.log("handleInput in App :: ", e);
this.formattedValue = e;
},
onClick(props) {
if (this.configuracion.expandible) {
props.expanded = !props.expanded;
}
},

onEditar(item) {
this.$emit('editar', item);
},

onEliminar(item) {
this.$emit("eliminar", item);
},

formatearColumna(item, encabezado) {
if (item[encabezado.value]) {
if (encabezado.formato) {
if (encabezado.formato === 'moneda') {
return this.formatearMoneda(item[encabezado.value]);
}
}

return item[encabezado.value];
}
return 'N/A';
},

override_genPagination() {
const that = this.$refs.data_table;
that.genPagination = () => {
let pagination = '–';

if (that.itemsLength) {
const stop = that.itemsLength < that.pageStop || that.pageStop < 0
? that.itemsLength
: that.pageStop;

pagination = that.$scopedSlots.pageText
? that.$scopedSlots.pageText({
pageStart: that.pageStart + 1,
pageStop: stop,
itemsLength: that.itemsLength
})
: `${that.pageStart + 1}-${stop} de ${that.itemsLength}`;
}

return that.$createElement('div', {
'class': 'datatable__actions__pagination'
}, [pagination]);
}
},
cargar() {
this.MOSTRAR_LOADING('Obteniendo tickets');
const url = this.g_url + '/php/catalogos/obtenertickets.php';

this.$http.get(url)
.then(response => {
const respuesta = response.data;
console.log('[Tickets](cargar)', response);

if (!this.RespuestaSinErrores(respuesta, 'Ha ocurrido un error en el servidor al obtener los tickets')) {
return;
}

// actualizar el state con el catálogo y mostrar al usuario
this.MOSTRAR_SNACKBAR({texto: 'Tickets cargados', color: 'success', arriba: true, derecha: true});
this.LLENAR_CAT_CLIENTES(respuesta.conceptos.catalogo);
this.todos = respuesta.todos;
this.MARCAR_CAT_CLIENTES_CONSULTADO();
}, error => {
this.MostrarErrorConexion(error);
});
},
changeCheckbox(item)
{
let aux = 0;
this.booleanValue = false;

if(this.seleccion.length == 0)
{
//Array Vacio
this.seleccion.push(item);
}else{
for(var i=0;i < this.seleccion.length;i++)
{
if(this.seleccion[i] == item)
{
//Existe en array
this.seleccion.splice(this.seleccion.indexOf(item), 1);
aux = 1;
break;
}
}
if(aux==0)
{
this.seleccion.push(item);
}
}
console.log(this.seleccion);
},
toggleAll() {
this.items.forEach((props, items) => {
this.$set(this.props.items, "value", !this.selectDeselectAll);
});
},
toFol()
{
let istodos = document.getElementById("todos").checked;
let fol = "";
if(this.seleccion.length == 0 && istodos == false)
{
this.MOSTRAR_SNACKBAR({texto: 'No ha elegido tickets para facturar', color: 'error'});
return false;
}

if(istodos == true)
{
return this.todos;
}else{
return this.seleccion;
}
}
},//Fin metodos

mounted() {
this.override_genPagination();
},
created() {
if (!this.cat_clientes.consultado) {
this.cargar();
}
},
watch: {
seleccion(valor) {
this.$emit('seleccion', valor);
}
}
}
</script>

我以这个网址 https://makitweb.com/check-uncheck-all-checkboxes-with-vue-js/ 为例& @Robin ZecKa Ferrari 的回答没有运气(因为他的示例与我的代码需求完全不同,但它是一个帮助)

编辑:当前方法使用 Robin ZecKa Ferrari 答案,但它只勾选选择待办事项,而不是所有复选框

最佳答案

请下次尝试与我们分享较小的代码,尝试隔离您的问题。

这里,我使用 watch 方法在每次选择/取消全选按钮上的值发生变化时触发一个函数。

还请查看 this.$set,使用它来保持数据响应非常重要。不要像 this.options[index].value = newValue 那样直接改变数据。有关深度 react 性的更多信息: https://v2.vuejs.org/v2/guide/reactivity.html

在 CodeSandBox 上查看:https://codesandbox.io/s/checkdeselect-all-bu0p4

<template>
<div class="hello">
<input type="checkbox" v-model="selectDeselectAll">Select/deselect All
<ul>
<li v-for="(option, index) in options" :key="'option'+index">
<input type="checkbox" v-model="options[index].value">
{{option.label}}
</li>
</ul>
</div>
</template>

<script>
export default {
name: "HelloWorld",
data() {
return {
selectDeselectAll: false,
options: [
{ label: "option 1", value: false },
{ label: "option 2", value: false },
{ label: "option 3", value: false }
]
};
},
watch: {
selectDeselectAll: function(newValue) {
this.options.forEach((option, index) =>
// it's important to use $set to allow Reactivity in Depth
// See: https://v2.vuejs.org/v2/guide/reactivity.html
this.$set(this.options[index], "value", newValue)
);
}
}
};
</script>

关于javascript - 如何使用 Vue 正确检查所有复选框并更改状态?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59337026/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com