diff --git a/jero-web/src/common/lang/en-us.js b/jero-web/src/common/lang/en-us.js index ab1d80c16..80afea7ab 100644 --- a/jero-web/src/common/lang/en-us.js +++ b/jero-web/src/common/lang/en-us.js @@ -399,5 +399,6 @@ module.exports = { DropDownType:'Drop down type', ExhibitionAreaManagement:'Exhibition area management', NewLabelItem:'New label item', + NodeQuickLookup:'Node quick lookup', } \ No newline at end of file diff --git a/jero-web/src/common/lang/zh-cn.js b/jero-web/src/common/lang/zh-cn.js index ece7144c6..6e8010dbb 100644 --- a/jero-web/src/common/lang/zh-cn.js +++ b/jero-web/src/common/lang/zh-cn.js @@ -403,5 +403,5 @@ module.exports = { DropDownType:'下拉选类型', ExhibitionAreaManagement:'展示区域管理', NewLabelItem:'新增标签项', - + NodeQuickLookup:'节点快速查找', } \ No newline at end of file diff --git a/jero-web/src/components/ocrTable/docTable.vue b/jero-web/src/components/ocrTable/docTable.vue index 03494269c..dce4b8bae 100644 --- a/jero-web/src/components/ocrTable/docTable.vue +++ b/jero-web/src/components/ocrTable/docTable.vue @@ -135,6 +135,14 @@ if (res.success) { var jsonHead = res.result this.columns = [] + this.columns.push( + { + title: this.$t('serialNumber'), + dataIndex: 'index', + key: 'index', + align: 'center', + customRender: (text,record,index) => `${index+1}`, + }) jsonHead.forEach((res, index) => { this.columns.push({ title: res.db_field_txt, diff --git a/jero-web/src/views/documentManage/ocr/index.vue b/jero-web/src/views/documentManage/ocr/index.vue index f4ffb8b22..1ff62455a 100644 --- a/jero-web/src/views/documentManage/ocr/index.vue +++ b/jero-web/src/views/documentManage/ocr/index.vue @@ -290,6 +290,7 @@ } postAction(`ocr/ocrRecord/syncToDocument`,params).then(res=>{ if(res.success){ + eventBUs.$emit('searchReset') this.$message.success(res.message) this.toVisible=false }else{ diff --git a/jero-web/src/views/documentManage/splitting/index.vue b/jero-web/src/views/documentManage/splitting/index.vue index 503511256..afc4bc800 100644 --- a/jero-web/src/views/documentManage/splitting/index.vue +++ b/jero-web/src/views/documentManage/splitting/index.vue @@ -72,14 +72,14 @@ } ], url: { - tableHeader: 'document/bussDocumentLibraryEO/getHeader', //表格头部字段 - seachList: 'document/bussDocumentLibraryEO/queryCondition', //搜索字段 - tableList: 'document/bussDocumentLibraryEO/queryPageInfo', //表格数据 - getAddForm: 'document/bussDocumentLibraryEO/getAddForm', // 表单的字段 - addInfo: 'document/bussDocumentLibraryEO/addInfo', //新增 - updateInfo: 'document/bussDocumentLibraryEO/updateInfo', //编辑 - getDocumentInfo: 'document/bussDocumentLibraryEO/getDocumentInfoById', //查看 - deleteBatch: 'document/bussDocumentLibraryEO/deleteBatch' //删除 + // tableHeader: 'document/bussDocumentLibraryEO/getHeader', //表格头部字段 + // seachList: 'document/bussDocumentLibraryEO/queryCondition', //搜索字段 + // tableList: 'document/bussDocumentLibraryEO/queryPageInfo', //表格数据 + // getAddForm: 'document/bussDocumentLibraryEO/getAddForm', // 表单的字段 + // addInfo: 'document/bussDocumentLibraryEO/addInfo', //新增 + // updateInfo: 'document/bussDocumentLibraryEO/updateInfo', //编辑 + // getDocumentInfo: 'document/bussDocumentLibraryEO/getDocumentInfoById', //查看 + // deleteBatch: 'document/bussDocumentLibraryEO/deleteBatch' //删除 } } }, @@ -111,7 +111,9 @@ }, //查看 seeTable(){ - + this.$router.push({ + path:'/docManage/splitting/splitDetail' + }) }, //删除 deleteTable(val){ diff --git a/jero-web/src/views/documentManage/subscribtion/module/subArea.vue b/jero-web/src/views/documentManage/subscribtion/module/subArea.vue index 4d927cc12..71049cf2e 100644 --- a/jero-web/src/views/documentManage/subscribtion/module/subArea.vue +++ b/jero-web/src/views/documentManage/subscribtion/module/subArea.vue @@ -1,15 +1,15 @@