diff --git a/jero-web/src/components/OcrTable/index.vue b/jero-web/src/components/OcrTable/index.vue index 8908df52c..2c0ee74d1 100644 --- a/jero-web/src/components/OcrTable/index.vue +++ b/jero-web/src/components/OcrTable/index.vue @@ -189,6 +189,11 @@ this.loading = true postAction(this.url.tableList, params).then((res) => { if (res.success) { + if (res.result.current > 1 && res.result.records.length == 0) { + this.pageNo = res.result.current - 1 + this.getTableList() + return + } this.dataSource = res.result.records this.total = res.result.total this.loading = false diff --git a/jero-web/src/views/documentManage/splitting/modules/SplitAddForm.vue b/jero-web/src/views/documentManage/splitting/modules/SplitAddForm.vue index 6094fa4a8..df1f8a44a 100644 --- a/jero-web/src/views/documentManage/splitting/modules/SplitAddForm.vue +++ b/jero-web/src/views/documentManage/splitting/modules/SplitAddForm.vue @@ -641,7 +641,7 @@ if(res.success){ // todo - console.log(res,'res...') + // console.log(res,'res...') this.formInline=[...res.result] } }) @@ -776,6 +776,8 @@ .catch( (error) =>{ console.log(error); }).finally(()=>{ + this.visible=false + this.$emit('closeVisible',false) this.loading=false this.submitFlag=false })