JavaScript

超轻量级php框架startmvc

Vue中Table组件Select的勾选和取消勾选事件详解

更新时间:2020-08-18 14:12:01 作者:startmvc
简述之间设计的界面中使用的是复选框控件,但是经过对官网了一些了解,使我们更加倾向

简述

之间设计的界面中使用的是复选框控件,但是经过对官网了一些了解,使我们更加倾向于使用一些官网已经封装好的事件,就比如Table组件的Select勾选和取消勾选的这样一个事件。

勾选

首先我们需要说一下这个需求,如下图:

勾选要实现如下的一个效果:对左侧Table的内容进行勾选,然后勾选行的数据传给右侧的Table中。

实现代码如下:


============1、按照官网封装好的样式去写Table组件=======
<template>
 <div>
 <Table></Table>
 </div>
</template>

<script>
 import axios from "axios";
 export default{
 data(){
 return{
 hotFoodData:[],
 selectedFoodData:[],
 columnHotFood:[
 {
 title:"菜名",
 key:"foodName"
 },
 {
 title:"份数(默认为不限份数,文本框输入限制)",
 key:"perlimitFood",
 width:300.
 align:"center",
 ///////////////////////数据双向绑定/////////////////////////////
 render:(h,params)=>{
 return h("Input",{
 props:{
 min:0,
 value:this.hotFoodData[params.index].perlimitFood //设置数字
 },
 on:{
 "on-change":event=>{
 this.hotFoodData[params.index].permitFood=event.target.value;
 }
 }
 });
 }
 },
 {
 type:"selection",
 width:100,
 align:"center"
 },
 ],
 column2: [
 {
 title: "菜名",
 key: "foodName"
 },
 {
 title: "限制份数(默认为不限份数)",
 key: "perlimitFood"
 }
 ]
 }
 methods:{
 }
 };
</script>

============2、向绑定数据中传送数据(后端传送数据、方法中书写)=============
 add() {
 var vm = this;
 //配置热菜菜单
 var urldata =
 "http://192.168.21.210:8016/Food/QueryFoodByShiId?FoodTN=18";
 axios.get(urldata).then(function(response) {
 vm.hotFoodData = response.data;
 });
 },
 created() {
 this.add();
 }

 
===========3、写勾选传输数据的事件==============
<Table border :columns="columnMainFood" :data="mainFoodData" @on-select="selectRow" @on-select-all="selectAllRow" ></Table>

method中:

//点击左边表格触发事件,向右侧表格添加元素
 selectRow(selection, row) {
 this.selectRowData = row;

 this.selectedFoodData.push(this.selectRowData);
 console.log(this.selectedFoodData);
 },

取消勾选

取消勾选的事件和勾选事件类似,如下(之前table组件的创建代码和数据传入不再重复)


<Table border :columns="columnMainFood" :data="mainFoodData" @on-select-cancel="selectCancel" ></Table>

method中:

//点击左侧表格,取消勾选,右侧数据也发生改变
 selectCancel(selection, row) {
 console.log("看一下row---------", row);
 this.selectedFoodData.pop(row);
 }

总结

还差的远呢,加油吧!

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

Vue Table Select 勾选事件