diff --git a/jero-web/src/common/lang/en-us.js b/jero-web/src/common/lang/en-us.js
index ab5cd15f3..b21fcc4a4 100644
--- a/jero-web/src/common/lang/en-us.js
+++ b/jero-web/src/common/lang/en-us.js
@@ -642,4 +642,8 @@ module.exports = {
confirmWithdraw:'confirm Withdraw',
OperationDetails:'Operation details',
OperationTime:'Operation time',
+ oneTableAdded:'only one table can be added',
+ addATable:'please add a table',
+ pleaseUploadSplitFile:'please upload split file',
+
}
\ 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 499fe9598..b3359a562 100644
--- a/jero-web/src/common/lang/zh-cn.js
+++ b/jero-web/src/common/lang/zh-cn.js
@@ -646,4 +646,8 @@ module.exports = {
confirmWithdraw:'确认撤回?',
OperationDetails:'操作详情',
OperationTime:'操作时间',
+ oneTableAdded:'只能添加一个表格',
+ addATable:'请添加一个表格',
+ pleaseUploadSplitFile:'请上传拆分文件',
+
}
\ No newline at end of file
diff --git a/jero-web/src/components/SplitImport/index.vue b/jero-web/src/components/SplitImport/index.vue
index e746afa7b..f9c26dbb4 100644
--- a/jero-web/src/components/SplitImport/index.vue
+++ b/jero-web/src/components/SplitImport/index.vue
@@ -124,8 +124,6 @@
this.preErrVisible=true
this.errValue=val.response.message
}
-
-
}
info.fileList.splice(index,1)
diff --git a/jero-web/src/components/importSplitUpload/index.vue b/jero-web/src/components/importSplitUpload/index.vue
index c3d11e8fd..c12ac174a 100644
--- a/jero-web/src/components/importSplitUpload/index.vue
+++ b/jero-web/src/components/importSplitUpload/index.vue
@@ -54,7 +54,7 @@
this.fileTypeSatus=false
if(this.myfileList&&this.myfileList.length>=1){
// console.log()
- this.$message.warning('只能上传一个文件')
+ this.$message.warning(this.$t('onlyOnefileUploaded'))
return false
}else{
// let thisFileType = this.thisFileType.replace(/\s+/g, "");
@@ -102,7 +102,7 @@
if (status === 'error') {
this.$emit('uploadSuccess', this.fileList)
this.$message.destroy()
- this.$message.error(`${info.file.name} 文件上传失败。`);
+ this.$message.error(`${info.file.name}`+this.$t('fileUploadFailed'));
} else if (status === 'removed') {
this.myfileList = info.fileList;
this.fileList = []
@@ -116,7 +116,7 @@
// console.log('remove',this.fileList)
this.$emit('uploadSuccess', this.fileList)
this.$message.destroy()
- this.$message.success(`${info.file.name} 删除成功。`);
+ this.$message.success(`${info.file.name}`+this.$t('deletedSuccessfully'));
} else if (status === 'done') {
this.fileList = []
this.myfileList = info.fileList;
@@ -152,7 +152,7 @@
if(this.myfileList.length > 0){
this.$emit('uploadSuccess', this.fileList)
this.$message.destroy()
- this.$message.success(`${info.file.name} 文件上传成功。`);
+ this.$message.success(`${info.file.name}`+this.$t('fileUploadFailed'));
// console.log('fileList111',file,this.fileList,fileList1)
}
} else if (status === 'uploading') {
@@ -162,7 +162,7 @@
}
}
}else if( !this.fileTypeSatus&&this.myfileList.length<1){
- this.$message.warning('不支持上传该类型的文件!')
+ this.$message.warning(this.$t('typeCannotUploaded'))
}
},
}
diff --git a/jero-web/src/views/documentManage/ocr/OcrSplit.vue b/jero-web/src/views/documentManage/ocr/OcrSplit.vue
index af01f8ca9..936a83dd4 100644
--- a/jero-web/src/views/documentManage/ocr/OcrSplit.vue
+++ b/jero-web/src/views/documentManage/ocr/OcrSplit.vue
@@ -40,7 +40,8 @@
methods:{
populateIframe(iframe, headers) {
var xhr = new XMLHttpRequest();
- xhr.open("GET", 'http://10.0.1.31:8080/jero-boot/ocr/pageOffice/word');
+ // xhr.open("GET", 'http://10.0.1.31:8080/jero-boot/ocr/pageOffice/word');
+ xhr.open("GET", 'http://10.0.1.25:8080/jero-boot/ocr/ocrCheck/editorFile');
xhr.responseType = "blob";
headers.forEach((header) => {
xhr.setRequestHeader(header[0], header[1]);
diff --git a/jero-web/src/views/documentManage/splitting/modules/ImportResult.vue b/jero-web/src/views/documentManage/splitting/modules/ImportResult.vue
index a7a540918..0bbdb6179 100644
--- a/jero-web/src/views/documentManage/splitting/modules/ImportResult.vue
+++ b/jero-web/src/views/documentManage/splitting/modules/ImportResult.vue
@@ -43,6 +43,15 @@