Commit 09e0e385 by 陈超

T

parent ef1120dc
...@@ -396,8 +396,8 @@ ...@@ -396,8 +396,8 @@
count: on ? r.video_order_count_mark : r.video_order_count count: on ? r.video_order_count_mark : r.video_order_count
} }
})) }))
that.page = data.nowPage that.page = res.nowPage
that.finished = data.nowPage == data.totalPages that.finished = res.nowPage >= res.totalPages
} }
}) })
} }
......
...@@ -215,9 +215,8 @@ ...@@ -215,9 +215,8 @@
price: r.price price: r.price
}})) }}))
opt.page = res.nowPage opt.page = res.nowPage
opt.finished = res.nowPage == res.totalPages opt.finished = res.nowPage >= res.totalPages
that.finished = res.nowPage == res.totalPages that.finished = res.nowPage >= res.totalPages
console.log(that.finished)
} }
}) })
} }
......
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