📌  相关文章
📜  运算符 '+' 不能应用于类型 '() => number' 和 'number' - 无论代码示例

📅  最后修改于: 2022-03-11 14:55:29.233000             🧑  作者: Mango

代码示例1
// Credit: https://stackoverflow.com/questions/47484525/operator-cannot-be-applied-to-types-number-and-1

you can try adding the unary operator + like,

CurrentPage: +this.paging.PageIndex + 1

which will also work in your case.

Hope this helps!