更新阅读论文

master
pan 4 years ago
parent e7e7b6737a
commit 6928ef4fef
  1. 18
      pages/index/document.vue
  2. 1
      pages/index/read.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

@ -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'){

Loading…
Cancel
Save