diff --git a/jero-web/src/components/uploadFile/file.vue b/jero-web/src/components/uploadFile/file.vue index 200251758..cf346c6fd 100644 --- a/jero-web/src/components/uploadFile/file.vue +++ b/jero-web/src/components/uploadFile/file.vue @@ -9,7 +9,7 @@ name="file" :file-list="myfileList" :multiple="true" - :action="uploadAction+'?state='+state" + :action="uploadAction+'?state='+state+'&cut='+cut" :headers="headers" @preview="preview" :before-upload="beforeUpload" @@ -45,7 +45,8 @@ downLoadFileUrl: window._CONFIG['domianPreviewURL'] + '/sys/common/download', fileList: [], myfileList: [], - isLoding: false + isLoding: false, + cut: '' } }, created() { @@ -54,6 +55,13 @@ this.containerId = 'container-ty-' + new Date().getTime() }, mounted() { + let long = localStorage.getItem('language') + this.cut = '' + if (long && long == 'zh-cn') { + this.cut = 'cn' + } else if (long && long == 'en-us') { + this.cut = 'en' + } // console.log(this.thisFileType,this.thisFileSize,this.thisFileUploadUrl); }, methods: {