当前位置:   article > 正文

el-table树形结构展示数据,含泪整理_el-table 树形结构

el-table 树形结构
// 初次渲染只加载一级,点击展开下级图标,再根据一次某参数,去查询二级的数据
<el-table
  :default-expand-all="isExpandAll"
  v-loading="loading"
  :data="inventoryList"
  row-key="contListNo"
  lazy
  :load="load"
  :tree-props="{children: 'children', hasChildren: 'hasChildren'}"
>
  <el-table-column prop="contListNo" label="清单编号" min-width="160" />
  <el-table-column prop="contListCn" label="清单名称" min-width="160" align="center" />
  <el-table-column prop="unit" label="单位" min-width="160" align="center" />
  <el-table-column prop="contPrice" label="合同单价(元)" min-width="160" align="center" />
  <el-table-column prop="contCount" label="合同数量" min-width="100" align="center" />
  <el-table-column label="合同金额(元)" align="center" prop="contAmount" min-width="100"/>
  <el-table-column label="操作" align="center" min-width="150">
    <template slot-scope="scope">
      <el-button
        type="text"
        @click="handleView(scope.row.contListId, scope.row.id)"
      >查看</el-button>
      <el-button
        type="text"
        @click="handleUpdate(scope.row.contListId, scope.row.id)"
      >编辑</el-button>
      <el-button
        v-if="scope.row.id"
        type="text"
        class="danger"
        @click="handleDelete(scope.row)"
      >删除</el-button>
    </template>
  </el-table-column>
</el-table>

data() {
 return {
   // 是否展开,默认全部折叠
   isExpandAll: false,
   // 遮罩层
   loading: true,
   // 菜单表格树数据
   inventoryList: []
  }
}

/** 查询列表 */
getList() {
  this.loading = true
  getGclHtqdList(this.listQuery).then(response => {
    this.inventoryList = response.data
    this.inventoryList.forEach(item => {
      // 必要设置,不然没有下级图标
      item.hasChildren = true
      item.children = null
    })
    this.loading = false
  })
},
// 在这里调接口查下一级数据就好了
load(tree, treeNode, resolve) {
  const params = {
    ptContListNo: tree.contListNo,
    contNo: tree.contNo
  }
  getGclHtqdList(params).then(response => {
    const childList = response.data
    childList.forEach(item => {
      item.hasChildren = true,
      item.children = null
    })
    setTimeout(() => {
      resolve(childList)
    }, 1000)
  })
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/427686
推荐阅读
相关标签
  

闽ICP备14008679号