• 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: '', 
                };
            },
  • 相关阅读:
    explicit构造函数
    Windows内核编程之:结构化异常处理
    驱动对象DRIVER_OBJECT
    Windows内核编程之:内存管理
    Windows内核编程之:链表
    Windows内核编程之:返回状态值
    设备对象DEVICE_OBJECT
    数据恢复
    Windows内核编程之:数据类型
    Windows内核编程之:检查内存的可用性
  • 原文地址:https://www.cnblogs.com/wofeiliangren/p/14989694.html
Copyright © 2020-2023  润新知