Commit 2bd65778 authored by liwei's avatar liwei

修改了Ai工作站的管道温度bug

parent 0c85f0ef
...@@ -197,8 +197,8 @@ const handleSortChange = (data) => { ...@@ -197,8 +197,8 @@ const handleSortChange = (data) => {
/**序号自增*/ /**序号自增*/
function Nindex(index) { function Nindex(index) {
// 当前页数 - 1 * 每页数据条数 + 1 // 当前页数 - 1 * 每页数据条数 + 1
const page = Page.page // 当前页码 const page = historyPage.page // 当前页码
const pagesize = Page.rows // 每页条数 const pagesize = historyPage.rows // 每页条数
return index + 1 + (page - 1) * pagesize return index + 1 + (page - 1) * pagesize
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment