ant vue项目记录

57 阅读1分钟

1.隐藏某一列表格

    title: '划线价格',
    dataIndex: 'line_price',
    width: 1,
    //隐藏这一列
    className:'tableHiddle',
    scopedSlots: { customRender: 'line_price' }
  },
  
  <style>
    .tableHiddle {
      display: none;
    }
</style>