zoukankan      html  css  js  c++  java
  • Vue使用v-for 循环生成tabs 标签页

    实现最终效果:

    template代码:
    activeName:默认第一个显示的tab
    <el-tabs v-model="activeName" type="card" @tab-click="handleClick">
      <el-tab-pane :label="item.subCompanyName" :name="item.subCompanyName" :key="item.subCompanyId" v-for="item in value.subCompanyList "></el-tab-pane>  
     </el-tabs> 

     <el-table ref="TaskListDistributionDetailTable" id="TaskListDistributionDetailTable" border :data="item.dataList.filter(item=>{ return item.targetCategoryId == 1 })" class="materialInfoTable clear-input-v"   show-summary :summary-method="getSummaries"  
                             :span-method="arraySpanMethod" v-if="(item.dataList.filter(item=>{ return item.targetCategoryId == 1 }).length>0)" >
                                <el-table-column type="index" align="center" label="序号" width="60">
                                    <template slot-scope="scope">
                                        {{scope.$index+1}}
                                    </template>
                                </el-table-column>
                                <el-table-column align="center" label="指标分类名称" min-width="120">
                                    <template slot-scope="scope">  
                                        <span>{{scope.row.targetCategoryName}}</span>
                                    </template>
                                </el-table-column>
                                <el-table-column align="center" label="指标名称" min-width="120">
                                    <template slot-scope="scope">  
                                        <span>{{scope.row.targetName}}</span>      
                                    </template>
                                </el-table-column>
                                <el-table-column align="left" label="指标量化" min-width="500">
                                    <template slot-scope="scope">  
                                        <span>{{scope.row.targetQuantification}}</span>     
                                    </template>
                                </el-table-column>
                                <el-table-column align="left" label="设定分值" prop="standardScore" min-width="100">
                                    <template slot-scope="scope"> 
                                        <span>{{scope.row.standardScore}}</span>    
                                    </template>
                                </el-table-column>
                                <el-table-column align="left" label="评分细则" min-width="300">
                                    <template slot-scope="scope"> 
                                        <span>{{scope.row.scoreRules}}</span>      
                                    </template>
                                </el-table-column>
                                <el-table-column align="left" label="分公司名称" min-width="100">
                                    <template slot-scope="scope"> 
                                        <span>{{scope.row.subCompanyName}}</span>      
                                    </template>
                                </el-table-column>
                                <el-table-column align="center" label="上年度公司排名" min-width="110">
                                    <template slot-scope="scope"> 
                                        <span>{{scope.row.prevYearRank}}</span>      
                                    </template>
                                </el-table-column>  
                            </el-table>
    View Code

    data中定义第一个显示的tab

     data: function () {
                return { 
                    activeName: '', 
                };
            },
  • 相关阅读:
    C++开源库,欢迎补充。
    LeetCode第二题
    LeetCode第五十八题
    tomcat连接数据库oracle问题,ClassNotFoundException异常
    jsp验证码,解决无法更新验证码问题
    [面试真题] LeetCode:Symmetric Tree
    [面试真题] LeetCode:Flatten Binary Tree to Linked List
    [面试真题] LeetCode:Longest Common Prefix
    [面试真题] LeetCode:Reverse Linked List II
    [面试真题] LeetCode:Merge Two Sorted Lists
  • 原文地址:https://www.cnblogs.com/wofeiliangren/p/14989694.html
Copyright © 2011-2022 走看看