血翼残飞

导航

若依 vue问题

1.table 列 对布尔的处理

<el-table-column label="是否可见" align="center" prop="activityVisible" :formatter="formatActivityVisible"/>
formatActivityVisible:function(row,index) {
      let res = ''
      if (row.activityFlag == true) {
        res = "可见" //根据自己的需求设定
      } else {
        res = "不可见"
      }
      return res;
    },

 

posted on 2023-09-21 11:09  血翼残飞  阅读(9)  评论(0编辑  收藏  举报