This commit is contained in:
zhutianqi
2021-12-10 09:03:32 +08:00
parent df0739e269
commit e768e5f7d0
2 changed files with 4 additions and 1 deletions
@@ -381,6 +381,9 @@
this.tableIndex++ this.tableIndex++
let index = this.tableIndex * 20 let index = this.tableIndex * 20
let endIndex = index + 20 let endIndex = index + 20
if (this.tableIndex * 20 > this.itemLists.length) {
this.$message.warning('没有更多了')
}
let newData = this.itemLists.slice(index, endIndex) let newData = this.itemLists.slice(index, endIndex)
this.itemList = this.itemList.concat(newData) this.itemList = this.itemList.concat(newData)
}, },
@@ -980,7 +980,7 @@ export default {
}) })
} else if (row.taskInfo === '责任人审核') { } else if (row.taskInfo === '责任人审核') {
this.$router.push({ this.$router.push({
name: 'phoneBzjdStep4', name: 'bzjdStep4',
query: { query: {
taskIds: row.taskIds, taskIds: row.taskIds,
prcId: row.prcId, prcId: row.prcId,