Browse Source

fix 点位分页bug

master
liujiangyong 2 years ago
parent
commit
08ae2b8cea
  1. 2
      web/client/src/sections/projectRegime/containers/point.js

2
web/client/src/sections/projectRegime/containers/point.js

@ -26,7 +26,7 @@ const Information = (props) => {
const projectList = (obj) => {
const { limit, page } = obj
dispatch(projectRegime.positionList({ limit, page, projectId: qrCodeId })).then(res => {
dispatch(projectRegime.positionList({ limit, page: 0, projectId: qrCodeId })).then(res => {
if (res.success) {
let data = []
res.payload.data?.rows?.map(v => {

Loading…
Cancel
Save