diff --git a/src/mods/work/AppProgressNew/AppProgressNew.vue b/src/mods/work/AppProgressNew/AppProgressNew.vue index f7186db..8a8c57d 100644 --- a/src/mods/work/AppProgressNew/AppProgressNew.vue +++ b/src/mods/work/AppProgressNew/AppProgressNew.vue @@ -43,7 +43,7 @@ export default { if(this.current > this.pages) return this.$instance.post(`/app/approval-process-def/list-xcx?processType=2`, null, { params: { - size: 10, + size: 20, current: this.current }, withoutToken: true, diff --git a/src/project/sanjianxi/AppApplyPoint/AppApplyPoint.vue b/src/project/sanjianxi/AppApplyPoint/AppApplyPoint.vue index 8ff49fb..f9c7c45 100644 --- a/src/project/sanjianxi/AppApplyPoint/AppApplyPoint.vue +++ b/src/project/sanjianxi/AppApplyPoint/AppApplyPoint.vue @@ -68,7 +68,10 @@ export default { if (res.code == 0) { this.pages = res.data.pages res.data.records.map((item) => { - item.ladderRule = JSON.parse(item.ladderRule) + if(item.ladderRule) { + item.ladderRule = JSON.parse(item.ladderRule) + } + }) if (this.current > 1) { this.list = [...this.list, ...res.data.records] diff --git a/src/project/sanjianxi/AppApplyPoint/add.vue b/src/project/sanjianxi/AppApplyPoint/add.vue index fcf0393..3ce40e1 100644 --- a/src/project/sanjianxi/AppApplyPoint/add.vue +++ b/src/project/sanjianxi/AppApplyPoint/add.vue @@ -11,7 +11,7 @@