ant design vue 的表单渲染

 <template slot="index" slot-scope="text,record,index">
           <span>{{ (ipaginationList.current-1)*ipaginationList.pageSize + parseInt(index) + 1}}</span>
   </template>
 
改代码表示的是首列的序号,在所有数据中的序号
 
其中text是当前表格值,record是当前行  ,index是当前行所在的数组下标
原文地址:https://www.cnblogs.com/chenlongsheng/p/15349249.html