跳转至

table首列序号

columns: [
  {
    title: "序号",
    dataIndex: "num",
    width: "15%",
    align: "center",
    customRender: (t, r, index) => {
      return parseInt(index) + 1;
    }
  }
]