VUE 使用IView的Table 实现table tree,在增删改查后不整体刷新表格数据,只更新当前节点的数据

该博客详细介绍了如何在Vue中利用IView的Table组件实现表格树形数据的增删改操作,并在操作后仅更新当前节点的数据,避免整体刷新表格。主要步骤包括获取更新后的数据,使用递归更新数据源,以及调用不同的方法处理新增、编辑和删除操作。通过这种方式,可以提高用户体验并减少不必要的数据加载。
摘要由CSDN通过智能技术生成

VUE 使用IView的Table 实现table tree,在增删改查后不整体刷新表格数据,只更新当前节点的数据

整体实现思路

增删改等操作后,通过当前行的数据ID,通过接口获取当前行数据更新后保存到数据库的最新数据(与table数据源返回的数据相同)对象,将table历史的数据源赋值给临时变量。对临时变量的数据通过递归进行更新,数据更新完成后在赋值给table数据源

table标签 

其中 table 数据源为familyList

        <Table ref="thisTab"
          row-key="ID"
          :load-data="handleLoadData"
          :columns="columnsList"
          :data="familyList"
        ></Table>

添加table数据更新方法

    
    //获取当前节点更新后的数据数据
    GetRowNewData(row, callback) {
      var _row = row;
      post("/api/GetList", {
        PID: row.PID,
      }).then(res => {
        if (res.Code == 0) {
          res.Datas.forEach(function(info,i){
            if(info.ID == _row.ID){
              callback(info);
              return false;
            }
          });
        }
      });
    },
    UpdateTableData(row, type,arry) {
      this.handleClearCurrentRow();//清空选择的行
      //因为新增和删除判断的都是父级节点ID,所以要特殊处理
      if(arry.length == 0){//数组等于0时只能是新增
        if(type=="Add"){
          arry.push(row);
          arry.ChildCont= arry.length;
        }
      }else if(row.PID == "0" && type != "Edit"){//父节点id= 0 时
        if(type=="Add"){
          arry.push(row);
          arry.ChildCont= arry.length;
        }else if(type=="Del"){
          arry.forEach(function(v,i){
            if(v.ID==row.ID){
              arry.splice(i, 1);
              arry.ChildCont--;
            }
          });
        }
      }
      else if(arry.length>0){
        for(var i = 0;i<arry.length;i++){
            if(type=="Add"){
              if(arry[i].ID==row.PID){
                if(arry[i].children.length==0){//目前为叶节点,直接打开
                  arry[i]._loading = false;//是否直接展开
                }
                else{
                  arry[i].children.push(row);
                }
                arry[i].ChildCont++;
                return false;
              }else if(arry[i].children.length>0){
                this.UpdateTableData(row,type,arry[i].children);
              }
            }else if(type=="Edit"){
              if(arry[i].ID==row.ID){
                //console.log("赋值前:info.Name:"+arry[i].Name+" row.Name:"+row.Name);
                if(arry[i]._loading!=undefined){
                  row._loading = arry[i]._loading;
                }
                if(arry[i].children.length>0){
                  row.children = arry[i].children;
                }
                arry[i]=row;
                //console.log("赋值前:info.Name:"+arry[i].Name+" row.Name:"+row.Name);
                return false;
              }else if(arry[i].children.length>0){
                this.UpdateTableData(row,type,arry[i].children);
              }
            }else if(type=="Del"){
              if(arry[i].ID==row.PID){
                arry[i].children.forEach(function(v,j){
                  if(v.ID==row.ID){
                    arry[i].children.splice(j, 1);
                    arry[i].ChildCont--;
                    return false;
                  }
                });
                if(arry[i].ChildCont==0){
                  delete arry[i]._loading;
                }
              }else if(arry[i].children.length>0){
                this.UpdateTableData(row,type,arry[i].children);
              }
            }
        };
      }
    }

新增后调用方法

根据 _this.GetRowNewData方法获取当前行数据更新后保存到数据库的最新数据(与table数据源返回的数据相同),此时data返回的是当前行的最新数据

            _this.GetRowNewData(_row, function(data){
              _this.familyListTemp = JSON.parse(JSON.stringify(_this.familyList));
              _this.UpdateTableData(data,"Add",_this.familyListTemp);
              _this.familyList = JSON.parse(JSON.stringify(_this.familyListTemp));
              _this.$forceUpdate();
            })

编辑后调用方法

根据 _this.GetRowNewData方法获取当前行数据更新后保存到数据库的最新数据(与table数据源返回的数据相同),此时data返回的是当前行的最新数据

            //更新后的数据
            _this.GetRowNewData(_row, function(data){
              _this.familyListTemp = JSON.parse(JSON.stringify(_this.familyList));
              _this.UpdateTableData(data,"Edit",_this.familyListTemp);
              _this.familyList = JSON.parse(JSON.stringify(_this.familyListTemp ));
              _this.$forceUpdate();
            });

删除后调用方法

                  _this.familyListTemp = JSON.parse(JSON.stringify(_this.familyList));
                  _this.UpdateTableData(row,"Del",_this.familyListTemp);
                  _this.familyList = JSON.parse(JSON.stringify(_this.familyListTemp));

 

treegrid插件 当前选中的行: var config = { id: "tg1", width: "800", renderTo: "div1", headerAlign: "left", headerHeight: "30", dataAlign: "left", indentation: "20", folderOpenIcon: "images/folderOpen.gif", folderCloseIcon: "images/folderClose.gif", defaultLeafIcon: "images/defaultLeaf.gif", hoverRowBackground: "false", folderColumnIndex: "1", itemClick: "itemClickEvent", columns:[ {headerText: "", headerAlign: "center", dataAlign: "center", width: "20", handler: "customCheckBox"}, {headerText: "名称", dataField: "name", headerAlign: "center", handler: "customOrgName"}, {headerText: "拼音码", dataField: "code", headerAlign: "center", dataAlign: "center", width: "100"}, {headerText: "负责人", dataField: "assignee", headerAlign: "center", dataAlign: "center", width: "100"}, {headerText: "查看", headerAlign: "center", dataAlign: "center", width: "50", handler: "customLook"} ], data:[ {name: "城区分公司", code: "CQ", assignee: "", children:[ {name: "城区卡品分销中心"}, {name: "先锋服务厅", children:[ {name: "chlid1"}, {name: "chlid2"}, {name: "chlid3", children: [ {name: "chlid3-1"}, {name: "chlid3-2"}, {name: "chlid3-3"}, {name: "chlid3-4"} ]} ]}, {name: "半环服务厅"} ]}, {name: "清新分公司", code: "QX", assignee: "", children:[]}, {name: "英德分公司", code: "YD", assignee: "", children:[]}, {name: "佛冈分公司", code: "FG", assignee: "", children:[]} ] }; /* 单击数据行后触发该事件 id:行的id index:行的索引。 data:json格式的行数据对象。 */ function itemClickEvent(id, index, data){ window.location.href="ads"; } /* 通过指定的方法来自定义栏数据 */ function customCheckBox(row, col){ return ""; } function customOrgName(row, col){ var name = row[col.dataField] || ""; return name; } function customLook(row, col){ return "查看"; } //创建一个组件对象 var treeGrid = new TreeGrid(config); treeGrid.show(); /* 展开、关闭所有节点。 isOpen=Y表示展开,isOpen=N表示关闭 */ function expandAll(isOpen){ treeGrid.expandAll(isOpen); } /* 取得当前选中的行,方法返回TreeGridItem对象 */ function selectedItem(){ var treeGridItem = treeGrid.getSelectedItem(); if(treeGridItem!=null){ //获取数据行属性值 //alert(treeGridItem.id + ", " + treeGridItem.index + ", " + treeGridItem.data.name); //获取父数据行 var parent = treeGridItem.getParent(); if(parent!=null){ //jQuery("#currentRow").val(parent.data.name); } //获取子数据行集 var children = treeGridItem.getChildren(); if(children!=null && children.length>0){ jQuery("#currentRow").val(children[0].data.name); } } }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值