美文网首页
element-ui talbe 使用计算属性

element-ui talbe 使用计算属性

作者: flyjar | 来源:发表于2020-12-26 10:05 被阅读0次
    computed: {
         getStatus: {
           get() {
               return function (status) {
    
                   switch(status){
                   case 0:
                       return '使用中';
                   case 1:
                       return '库存';
                   case 2:
                       return '报废';
                   case 3:
                       return '丢失';            
    
               }
    
               }
               
           }
         }
      },
    
    <el-table-column prop="status" label="状态" width="120"> 
    
            <template slot-scope="scope">
                    {{getStatus(scope.row.status)}}
                </template>
    
            </el-table-column>
    

    相关文章

      网友评论

          本文标题:element-ui talbe 使用计算属性

          本文链接:https://www.haomeiwen.com/subject/fdkinktx.html