template内写:

<el-table-column label="序号" prop="" width="100" align="center">
   <template slot-scope="scope">
     <span v-text="getIndex(scope.$index)"> </span>
    </template>
</el-table-column>

methods内写:


    getIndex($index) {
      return (this.queryParams.pageNum - 1) * this.queryParams.pageSize + $index + 1
    },

 实现:

 

 

 

Logo

前往低代码交流专区

更多推荐