|
@@ -18,7 +18,7 @@ const router=useRouter()
|
|
|
|
|
|
const userInfo=useUserInfo()
|
|
|
|
|
|
-const {lastFocusPosition,initFroalaEditor,frolaEditorContentChange}=useInitFroalaEditor()
|
|
|
+const {lastFocusPosition,initFroalaEditor,imgUploadFlag,frolaEditorContentChange}=useInitFroalaEditor()
|
|
|
let reportContentEditorIns=null//报告内容编辑器实例
|
|
|
|
|
|
let autoSaveTimer=null
|
|
@@ -35,6 +35,10 @@ onUnmounted(()=>{
|
|
|
// 自动保存
|
|
|
function autoSaveReportContent(e){
|
|
|
if(!e&&!frolaEditorContentChange.value) return
|
|
|
+ if(!imgUploadFlag.value){
|
|
|
+ e==='cg'&&showToast('有图片未上传完成,请稍等')
|
|
|
+ return
|
|
|
+ }
|
|
|
let arr=[]
|
|
|
ticketList.value.forEach(item=>{
|
|
|
let obj={
|
|
@@ -49,6 +53,8 @@ function autoSaveReportContent(e){
|
|
|
arr.push(obj)
|
|
|
}
|
|
|
})
|
|
|
+ //如果富文本中有未上传完成的图片,去除这个dom
|
|
|
+ $('.fr-element').find('img.fr-uploading').length&&$('.fr-element').find('img.fr-uploading').remove()
|
|
|
apiReport.chapterDetailSave({
|
|
|
ReportChapterId: Number(route.query.id),
|
|
|
Title:chapterBaseInfo.title,
|
|
@@ -339,6 +345,8 @@ async function chapterReportPublish(PublishReport){
|
|
|
arr.push(obj)
|
|
|
}
|
|
|
})
|
|
|
+ //如果富文本中有未上传完成的图片,去除这个dom
|
|
|
+ $('.fr-element').find('img.fr-uploading').length&&$('.fr-element').find('img.fr-uploading').remove()
|
|
|
const res=await apiReport.chapterReportPublish({
|
|
|
ReportChapterId: Number(route.query.id),
|
|
|
Title:chapterBaseInfo.title,
|