zoukankan      html  css  js  c++  java
  • element-template slot-scope="scope"的使用

    1. 实例效果:
    2. 实例运用到的组件:

    这里的实例 运用 element

    • 表格组件:el-table
    • 下拉菜单:el-dropdown
    3.用法
    < template slot-scope="scope" >{{ scope.$index }} {{ scope.row }}</template>
    4. 实例代码,详细解释在注释中:
    <el-table :data="tableData" style=" 100%">
    <!-- :data="用于存放请求数据回来的数组"  --> 
        <el-table-column label="索引值" width="400">
            <template slot-scope="scope">  <!--  slot-scope="scope" 这里取到当前单元格  -->
                <span>{{ scope.$index }}</span>  <!-- scope.$index 直接取到该单元格值  -->
            </template>
        </el-table-column>
        <el-table-column label="标题" width="350">
            <template slot-scope="scope">  <!-- slot-scope="scope" 这里取到当前单元格  -->
                <span>{{ scope.row.title }}</span>
                <!-- scope.row 直接取到该单元格对象,即是tableData[scope.$index]  -->
                <!-- .title 是对象里面的title属性的值  -->
            </template>
        </el-table-column>
        <el-table-column label="操作">
            <template slot-scope="scope">  <!--  slot-scope="scope" 这里取到当前单元格  -->
                <el-dropdown size="medium" split-button type="primary">
                    更多
                    <el-dropdown-menu slot="dropdown">
                        <el-dropdown-item @click.native.prevent="handleEdit(scope.$index, scope.row)">编辑</el-dropdown-item>
                        <el-dropdown-item @click.native.prevent="getUp(scope.$index, scope.row)">上升</el-dropdown-item>
                        <el-dropdown-item @click.native.prevent="getDown(scope.$index, scope.row)">下降</el-dropdown-item>
                        <el-dropdown-item @click.native.prevent="handleDelete(scope.$index, scope.row)">删除</el-dropdown-item>
                        <!-- 这里的点击事件已经不是在根元素上了,因为多套了几层结构。-->
                        <!-- 这里的点击事件如果没有加上 .native 则点击无效!-->
                        <!--这里的点击事件要加上 .native 表示监听组件根元素的原生事件。-->
                        <!-- 这里的点击事件不需要 .prevent 也可以实现相同效果 -->
                    </el-dropdown-menu>
                </el-dropdown>
            </template>
        </el-table-column>
    </el-table>   

    javaScript:
    前端删除index要+1

    data() {
        return {
           tableData: [{title:123,age:11},{title:456,age:18}]
            //---为了效果先给值,一般情况下为空,其实际值是后台接口请求回来的
          }
      },
    methods:{
        handleDelete(index, row) {
          this.tableData.splice(index+1, 1);//---前端删除index要+1 !!!!!!!
          
          //---下面是后端数据删除
          axios.post(config.newsDelete,//---后端数据删除
              {
                id: row.id//---传入被删除的对象的id值
              },
              {
                headers: {
                  Authorization: "Bearer " + sessionStorage.getItem("token")//---请求头验证
                }
              }
            )
            .then(res => {
              this.rendering()//---删除了重新渲染
            });
        }
    }
      


    作者:Christoles
    链接:https://www.jianshu.com/p/6a9d247a4993

  • 相关阅读:
    C#使用二叉树算法设计一个无限分级的树表
    程序员写博客这件小事
    jqgrid定义多选操作
    jqgrid如何在一个页面点击按钮后,传递参数到新页面
    MVC 移除复数表名的契约
    [技术分享] .NET下 , 上传图片的处理方式 , 贴上代码 .
    Web应用程序项目以配置使用IIS。未找到Web服务器
    MVC5关联表读取相关表数据
    【转】C# Linq 交集、并集、差集、去重
    .NET MVC3中扩展一个HtmlHelper方法CheckBoxList
  • 原文地址:https://www.cnblogs.com/whoamimy/p/12419222.html
Copyright © 2011-2022 走看看