vue.js

关注公众号 jb51net

关闭
首页 > 网络编程 > JavaScript > javascript类库 > vue.js > el-table表格组件插槽scope.row使用

关于el-table表格组件中插槽scope.row的使用方式

作者:小柠檬爱编程

这篇文章主要介绍了关于el-table表格组件中插槽scope.row的使用方式,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教

el-table表格组件中插槽scope.row使用

要实现点击查看显示后端返回的字段并以文字渲染到页面上,就要是使用到插槽

下图是要实现的

 <el-table-column label="任职要求" width="100" align="center">
            <template slot-scope="scope">
              <el-popover placement="bottom" width="300" trigger="click">
                <div>
                  <div class="line">任职要求</div>
                  <div class="heighth">
                    工作年限:<span>{{ scope.row.worked_year }}</span>
                  </div>
                  //给学历定义一个edutype方法,通过scope.row传参
                  <div class="heighth">
                    学历:<span>{{ edutype(scope.row.education) }}</span>
                  </div>
                  <div class="heighth">
                    专业:<span>{{ scope.row.major }}</span>
                  </div>
                  <div class="heighth">
                    技能及经验:<span>{{ scope.row.experience_skills }}</span>
                  </div>
                </div>
                <el-button slot="reference" type="text">查看</el-button>
              </el-popover>
            </template>
          </el-table-column>
 methods: {
    //通过row接受参数
    edutype(row) {
      // console.log(row);
      if (row == "primary school") {
        return "小学";
      }
      if (row == "junior high school") {
        return "初中";
      }
      if (row == "senior high school") {
        return "高中";
      }
      if (row == "technical secondary school") {
        return "中专";
      }
      if (row == "junior college") {
        return "大专";
      }
      if (row == "undergraduate") {
        return "本科";
      }
      if (row == "graduate student") {
        return "研究生";
      }
      if (row == "unlimited") {
        return "不限";
      }
    }
  }

这样就实现啦。。。。。 

slot-scope和scope.row的用法

实现效果

根据后端传来的mg_state的bool型数据来渲染开关状态,当为true时,开关打开;为false时关闭

解决

状态开关属于单元格,也属于一行,如果我们拿到这一行的数据,就可以.mg_state具体值,则可以按需渲染效果。所以想到用作用域插槽来渲染状态这一列

 <el-table :data="userlist"  border stripe>
			<el-table-column type="index"></el-table-column>
			<el-table-column label="姓名" prop="username"></el-table-column>
			<el-table-column label="邮箱" prop="email"></el-table-column>
			<el-table-column label="电话" prop="mobile"></el-table-column>
			<el-table-column label="角色" prop="role_name"></el-table-column>
			<el-table-column label="状态" >
				<template slot-scope="scope">
					<el-switch v-model="scope.row.mg_state"></el-switch>
				</template>
           </el-table-column>
           <el-table-column label="操作"> </el-table-column>
 </el-table>

ElementUI文档

userList数据如下:

效果

以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。

您可能感兴趣的文章:
阅读全文