diff --git a/pages/index/document.vue b/pages/index/document.vue index a2843de..74ce24e 100644 --- a/pages/index/document.vue +++ b/pages/index/document.vue @@ -136,22 +136,16 @@ fileId:item.fileId },function(res) { if(res.code==='200'){ - fetch(`${that.GLOBAL.server_address}${res.msg}`).then(res=>res.text()).then(res=>{ - item.content=res - loadingInstance.close() - that.$store.commit('menus/read') - that.$store.commit('read/open', item) - that.$router.push(that.localePath('/read')) - }).catch(err=>{ - console.error(err) - loadingInstance.close() - }) - }else{ + item.content=res.msg + that.$store.commit('menus/read') + that.$store.commit('read/open', item) + that.$router.push(that.localePath('/read')) loadingInstance.close() + }else{ that.$message.error(that.$t('error_500').toString()) } + loadingInstance.close() }) - }, query(){ let that=this diff --git a/pages/index/read.vue b/pages/index/read.vue index e3d1a5d..84ab291 100644 --- a/pages/index/read.vue +++ b/pages/index/read.vue @@ -493,6 +493,7 @@ noteContent: this.note_form.note_content, paperId: that.activeContent.id, fileId: that.activeContent.fileId, + originalText:that.note_form.original_text, content: that.pre.innerHTML },function(res) { if(res.code==='200'){