效果图:

在这里插入图片描述
在这里插入图片描述

实现方法:


			    <a-table
                  :loading="tableLoading"
                  :columns="columns"
                  :data-source="tableData"
                  rowKey="id"
                  :rowClassName="rowClassName"
                  :customRow="customRow"
                  bordered>
                  <span slot="num" slot-scope="text,records,index">
                    {{ (currentPage-1)*pageSize+Number(index)+1 }}
                  </span>
                </a-table>


data:
	  currentPage: 1, // 当前第几页
      pageSize: 9, // 每页显示条数
      columns: [
	      {
		    title: '序号',
		    scopedSlots: { customRender: 'num' }
		  },
		  {
		    title: '标签名称',
		    dataIndex: 'name',
		    key: 'name'
		  },
		  {
		    title: '',
		    key: 'action',
		    scopedSlots: { customRender: 'action' }
		  }
      ]
Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐