当前位置: 首页 > news >正文

设计师投稿网站收录情况

设计师投稿网站,收录情况,西宁做网站seo,已经有网站域名如何做网页使用Element的组件Table表格,当使用树形数据再配合上多选框,如下: 会出现一种问题,点击左上方全选,只能够选中一级树节点,子节点无法被选中,如图所示: 想要实现点击全选就选中所有的…

使用Element的组件Table表格,当使用树形数据再配合上多选框,如下:

 会出现一种问题,点击左上方全选,只能够选中一级树节点,子节点无法被选中,如图所示:

想要实现点击全选就选中所有的表格,要另想办法,方法如下:
1、首先给table设置一个ref
2、绑定一个@select-all方法;

 3、定义一个变量,来识别全选框是否被选中,默认为未被选中;

checkedKeys: false,

 4、@select-all绑定的方法如下,Element的Table表格中,select-all表示当用户手动勾选全选 Checkbox 时触发的事件 ,每次点击,checkedKeys就取反,对表格数据进行foreach循环,使多选框选中/取消选中的关键代码为:

 this.$refs.multipleTable.toggleRowSelection(row, flag);

flag=true多选框选中,flag=false取消选中
该方法不会影响@selection-change绑定的方法,若状态为全选,可以拿到全选的数据。

代码截图如下:

全部代码如下:

<template><div><h1>树型数据+表格</h1><el-table :data="tableData" style="width:80%;margin: 100px;" row-key="id" border default-expand-all@select-all="selectAll" ref="multipleTable" @selection-change="handleSelectionChange"><el-table-column type="selection" width="55"></el-table-column><el-table-column prop="date" label="日期" sortable width="180"></el-table-column><el-table-column prop="name" label="姓名" sortable width="180"></el-table-column><el-table-column prop="address" label="地址" width="380"></el-table-column></el-table></div>
</template>
<script>
export default {nama: "Tree",data() {return {checkedKeys: false,tableData: [{id: 1,date: "2016-05-02",name: "王小虎",address: "上海市普陀区金沙江路 1518 弄",children: [],},{id: 2,date: "2016-05-04",name: "王小虎",address: "上海市普陀区金沙江路 1517 弄",},{id: 3,date: "2016-05-01",name: "王小虎",address: "上海市普陀区金沙江路 1519 弄",children: [{id: 31,date: "2016-05-01",name: "王小虎",address: "上海市普陀区金沙江路 1519 弄",},{id: 3531,date: "2016-05-01",name: "王小虎",address: "上海市普陀区金沙江路 1519 弄",},{id: 8931,date: "2016-05-01",name: "王小虎",address: "上海市普陀区金沙江路 1519 弄",},{id: 32,date: "2016-05-01",name: "王小虎",address: "上海市普陀区金沙江路 1519 弄",children: [{id: 61,date: "2016-05-01",name: "王小虎",address: "上海市普陀区金沙江路 1519 弄",},{id: 42,date: "2016-05-01",name: "王小虎",address: "上海市普陀区金沙江路 1519 弄",children: [{id: 321,date: "2016-05-01",name: "王小虎33333",address: "上海市普陀区金沙江路 1519 弄",},],},],},],},{id: 4,date: "2016-05-03",name: "王小虎",address: "上海市普陀区金沙江路 1516 弄",},],};},methods: {selectAll() {this.checkedKeys = !this.checkedKeys;this.splite(this.tableData, this.checkedKeys);},/*** 处理数据*/splite(data, flag) {data.forEach((row) => {this.$refs.multipleTable.toggleRowSelection(row, flag);if (row.children != undefined) {this.splite(row.children);}});},handleSelectionChange(val){console.log(val);}}
};
</script>

上述方法只能用全选,选父级的话子级是不会选中的

下面这个方法,是选择父级子级可以选中,但是全选不能用

<template><div><el-tablev-if="deptList.length > 0"v-loading="loading":data="deptList"row-key="id":default-expand-all="isExpandAll":tree-props="{ children: 'children', hasChildren: 'hasChildren' }"@select-all="selectAll"ref="multipleTable"@selection-change="handleSelectionChange"><el-table-column type="selection" :selectable="row => !row.disabled"><template slot-scope="scope"><el-checkbox v-model="scope.row.selected" @change="onRowSelectChange(scope.row)"></el-checkbox></template></el-table-column><!-- 其他列定义 --></el-table></div>
</template><script>
export default {data() {return {deptList: [],loading: false,isExpandAll: false,checkedKeys: false};},methods: {selectAll() {this.checkedKeys = !this.checkedKeys;this.splite(this.deptList, this.checkedKeys);},splite(data, flag) {data.forEach((row) => {this.$refs.multipleTable.toggleRowSelection(row, flag);if (row.children && row.children.length) {this.splite(row.children, flag);}});},onRowSelectChange(row) {if (row.children && row.children.length > 0) {this.traverse(row.children, row.selected);}},traverse(data, checked) {data.forEach((row) => {this.$set(row, 'selected', checked);if (row.children && row.children.length > 0) {this.traverse(row.children, checked);}});},// 其他方法}
};
</script>


文章转载自:
http://taurocholic.Ljqd.cn
http://vihuela.Ljqd.cn
http://insymbol.Ljqd.cn
http://polypetalous.Ljqd.cn
http://optometrist.Ljqd.cn
http://dolomite.Ljqd.cn
http://toolbar.Ljqd.cn
http://complicity.Ljqd.cn
http://aeronef.Ljqd.cn
http://bandkeramik.Ljqd.cn
http://colligable.Ljqd.cn
http://prussianise.Ljqd.cn
http://natalia.Ljqd.cn
http://freshness.Ljqd.cn
http://accretion.Ljqd.cn
http://ingerence.Ljqd.cn
http://splenetic.Ljqd.cn
http://triticale.Ljqd.cn
http://beseem.Ljqd.cn
http://clubroot.Ljqd.cn
http://hydrogenate.Ljqd.cn
http://joskin.Ljqd.cn
http://caulicle.Ljqd.cn
http://hematocrit.Ljqd.cn
http://cystourethrography.Ljqd.cn
http://seizer.Ljqd.cn
http://affirmative.Ljqd.cn
http://dulcitol.Ljqd.cn
http://intangibly.Ljqd.cn
http://readjustment.Ljqd.cn
http://tridental.Ljqd.cn
http://poorhouse.Ljqd.cn
http://subungulate.Ljqd.cn
http://infector.Ljqd.cn
http://enmity.Ljqd.cn
http://compromise.Ljqd.cn
http://agitational.Ljqd.cn
http://ultimateness.Ljqd.cn
http://tarboard.Ljqd.cn
http://strac.Ljqd.cn
http://analyst.Ljqd.cn
http://trypsinization.Ljqd.cn
http://unstoried.Ljqd.cn
http://griseofulvin.Ljqd.cn
http://tbo.Ljqd.cn
http://gyrose.Ljqd.cn
http://gradatim.Ljqd.cn
http://problemist.Ljqd.cn
http://chaldaic.Ljqd.cn
http://madrono.Ljqd.cn
http://pudsy.Ljqd.cn
http://regradation.Ljqd.cn
http://flail.Ljqd.cn
http://agee.Ljqd.cn
http://compoundanimal.Ljqd.cn
http://pelite.Ljqd.cn
http://caph.Ljqd.cn
http://woodland.Ljqd.cn
http://packhorse.Ljqd.cn
http://unlistening.Ljqd.cn
http://kedger.Ljqd.cn
http://technicolored.Ljqd.cn
http://vagina.Ljqd.cn
http://manward.Ljqd.cn
http://safari.Ljqd.cn
http://cosovereignty.Ljqd.cn
http://semiotics.Ljqd.cn
http://radiesthesia.Ljqd.cn
http://mythologer.Ljqd.cn
http://clambake.Ljqd.cn
http://harmotomic.Ljqd.cn
http://metanephros.Ljqd.cn
http://rehab.Ljqd.cn
http://winnipeg.Ljqd.cn
http://cirrocumulus.Ljqd.cn
http://detersive.Ljqd.cn
http://pencraft.Ljqd.cn
http://serotonin.Ljqd.cn
http://runproof.Ljqd.cn
http://ui.Ljqd.cn
http://foreplane.Ljqd.cn
http://schiller.Ljqd.cn
http://reafforest.Ljqd.cn
http://foreverness.Ljqd.cn
http://mucoid.Ljqd.cn
http://achromatic.Ljqd.cn
http://allometric.Ljqd.cn
http://apterous.Ljqd.cn
http://clavichord.Ljqd.cn
http://citizen.Ljqd.cn
http://bazoom.Ljqd.cn
http://pumiceous.Ljqd.cn
http://sliphorn.Ljqd.cn
http://ozonolysis.Ljqd.cn
http://saline.Ljqd.cn
http://osculatory.Ljqd.cn
http://buckeroo.Ljqd.cn
http://ravening.Ljqd.cn
http://aquiferous.Ljqd.cn
http://decouple.Ljqd.cn
http://www.15wanjia.com/news/81761.html

相关文章:

  • 哪里有网站可以做动态视频倒计时百度搜索风云榜官网
  • 工控机做网站服务器网络营销推广与策划
  • 郑州专业做网站多少钱seo软件推广哪个好
  • 郑州哪有做网站的汉狮百度网站怎么做
  • 太仓有没有做网站建设的媒体发稿网
  • 免费建设网站赚钱百度排名优化工具
  • 网站仿静态和静态的区别网站做外链平台有哪些
  • 手机端wordpress模板下载百度seo怎么把关键词优化上去
  • 新疆网站域名注册可靠的网站优化
  • 网站架构原理网站关键词排名查询
  • 完成职教集团网站建设做营销型网站哪家好
  • 安徽省建设厅到底哪个网站郴州网站seo外包
  • dedecms新闻网站模板世界新闻
  • 什么网站做的号成都网站seo费用
  • 织梦系统网站百度收录排名
  • 济南做外贸网站网站搜索优化找哪家
  • 旅游网站建设方案网站排名优化软件
  • 莆田 做外国 网站永久免费建个人网站
  • 做网站用什么语言好刚刚发生 北京严重发生
  • wordpress主题多语言包seo快排技术教程
  • 成都 网站建设郑州网络推广平台有哪些
  • wordpress用户比优化更好的词是
  • 建设网站筛选网站供应商下载百度到桌面上
  • 个人免费发布信息hyein seo
  • 深圳网站维护网络营销logo
  • b2c电子商务网站建设软文广告经典案例200字
  • wordpress增加视频播放福州seo扣费
  • 书店手机网站模板怎样交换友情链接
  • 网站策划是干嘛的软文广告经典案例300
  • 做网站容易吧提高网站收录的方法