- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
一直在寻找这个问题一段时间,现在我努力选择所有复选框:
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/
我在将过滤器从 vue 1 迁移到 vue 2 时遇到问题,我在这里完全创建了我需要的东西(突出显示与输入文本匹配的文本): Vue.component('demo-grid', { templa
我有一个在 vue 组件外部运行的函数。我想要将它返回的数据传递给vue组件中的数据。 function example(){ var item = 'item'
我正在尝试安装一个 Vue 插件,以便我可以使用选项管理一些 API 调用。我有一个 stocks.js 文件,我想从中进行 API 调用。 当我执行以下操作时,出现'Vue is defined b
如何从指令访问 Vue 实例? 我有这个 HTML 和这个脚本 var app = new Vue({ el: '#vueApp', data: { myData:
如何在 .vue 文件中使用 Vue.set() 和 Vue.use()?我正在使用 vue-cli 搭建我的项目,我需要使用 Vue.use(VeeValidate) 进行验证。我也想使用类似下面的
从 vue-property-decorator 和 vue 导入 Vue 之间有什么区别和用例?据我所知,在使用 @Component 装饰器定义自定义组件时,我始终需要从 vue-property
有没有办法使用 yarn serve(可能使用 webpack/vuetify-loader)在本地 Vuetify 应用程序的本地 npm 依赖项上发生热重载? 商业案例 我们有一些通用的 Vuet
我有一个在某些未知情况下不可靠的插槽的奇怪错误。 成分 有3个层次组件。 孙子 (headlessTable),它提供一个名为 arrayValue 的插槽. 子项 (collapsableCard)
我是 Vue 本地新手,我也遇到了一个问题,can I use the Vue component inside a Vue native component such as Vue-chart an
Vue.delete 的替代方案是什么?在 Vue 3 的新 Reactivity API 中? 最佳答案 Vue.delete和 Vue.set在 Vue 3 中不需要。通过使用代理的新 react
我是 Vue 的新手,正在尝试学习如何使用它。 我想我在尝试安装一个新的 Vue 应用程序时被绊倒了。 这是我可以开始工作的内容: const vm = new Vue({}) 从那里我可以安装
我使用boots-vue。我从文档https://bootstrap-vue.js.org/docs/components/table/#table-body-transition-support中举
我真的只是想为我的图书馆建立一个 jest+vue 的框架,并迅速得到这个错误。 我知道这个结构不是通常的笑话结构,我在这里尝试用一个辅助控件来描述一个测试。 这是我的test的内容文件夹:array
我正在尝试使用基于 examples 的 vue-router , 如 let routes = [ { path: '/', component: MainComponent }, ];
我有一个想要通过简单的 v-model 功能发布到 NPM 的组件。 因此,如果它能够在 vuejs 2/3 上互换运行那就更理想了。 我可以通过将组件设置为发出 input 和 update:mod
我正在尝试在 bootstrap-vue 表中创建一个插槽,以使用自定义组件呈现任何 bool 值。 所以我有一个简单的表格 现在,如果我想以特定方式渲染单个列,我必须使用插槽 它有
Vue Router 在主 Vue 实例之前加载,但要加载该 Router,我应该准备一些信息,然后将它们作为属性传递给此 Route。在此示例中,它是从主 Vue 实例传递到主屏幕的 current
我有一个想要通过简单的 v-model 功能发布到 NPM 的组件。 因此,如果它能够在 vuejs 2/3 上互换运行那就更理想了。 我可以通过将组件设置为发出 input 和 update:mod
我找到了一个关于如何使用 Vue 路由器的很好的例子。这是 app.js 文件: // Telling Vue to use the router Vue.use(VueRouter) // Init
我没有完整的 vue 应用程序,所以我使用 custom elements替换一些应该用 vue 处理的元素。 我只想使用 vue multiselect plugin在 html 文件中。 所以我尝
我是一名优秀的程序员,十分优秀!