vue+element-ui)动态设置tabel列的显示与隐藏

条件指定列的隐藏于显示,v-show没有实现,用v-if实现了,虽然vue官网提示:一般来说,v-if 有更高的切换开销,而 v-show 有更高的初始渲染开销。因此,如果需要非常频繁地切换,则使用 v-show 较好;如果在运行时条件很少改变,则使用 v-if 较好。



 export default{
     data(){
       return {
        isshow002:true,
        isshow003:true
        }
    }
}

 

 let isShowD = this.userName.indexOf('段');
        console.log(isShowD,'isShowD');
        let isShowC = this.userName.indexOf('车间');
        let isShowW = this.userName.indexOf('工区');
         if(isShowD != -1){
          this.isshow = true;
          this.isshow01 = false;
          this.isshow002 = true;
          this.isshow003 = true;
         }
        if(isShowC != -1){
           this.isshow002 = false;
           this.isshow = true;
           this.isshow01 = false;
           this.isshow003 = true;
        }
        if(isShowW != -1){
          this.isshow = false;
          this.isshow01 = true;
          this.isshow002 = false;
           this.isshow003 = false;
        }

 vue+element-ui)动态设置tabel列的显示与隐藏_第1张图片

vue+element-ui)动态设置tabel列的显示与隐藏_第2张图片

 vue+element-ui)动态设置tabel列的显示与隐藏_第3张图片

 

你可能感兴趣的:(vue-element)