diff --git a/dist.zip b/dist.zip
index e517749..ed1503a 100644
Binary files a/dist.zip and b/dist.zip differ
diff --git a/src/common/js/commonJS.js b/src/common/js/commonJS.js
index 4e1c5ba..e170c93 100644
--- a/src/common/js/commonJS.js
+++ b/src/common/js/commonJS.js
@@ -225,7 +225,7 @@ export default {
callback(str);
// 输出结果到控制台
- console.log('Processed HTML:', str);
+ // console.log('Processed HTML:', str);
}
diff --git a/src/components/page/GenerateCharts.vue b/src/components/page/GenerateCharts.vue
index bf9636f..9c876cd 100644
--- a/src/components/page/GenerateCharts.vue
+++ b/src/components/page/GenerateCharts.vue
@@ -148,6 +148,19 @@
+
+ updateChange(res, 'imgTitle')"
+ :height="200"
+ ref="tinymceChildImgTitle"
+ style="margin-left: -115px"
+ >
+
{
if (typeof renderMathJax === 'function') {
- this.window.renderMathJax(editorId);
+ // this.window.renderMathJax(editorId);
}
}, 10);
}
@@ -1117,7 +1130,7 @@ export default {
},
handleFileChange(event) {
var that = this;
-
+
// 处理文件上传并传递回调函数
this.$commonJS.handleFileUpload(event, function (tables) {
console.log('tables at line 786:', tables);
@@ -1238,7 +1251,7 @@ export default {
});
},
handleImageAdd(type) {
- this.picStyle = { note: '', picUrl: '' };
+ this.picStyle = { note: '', picUrl: '', title: '' };
this.picStyle.visiTitle = 'Add Figure';
this.pictVisible = true;
},
@@ -1286,6 +1299,8 @@ export default {
var str = this.$commonJS.transformHtmlString(content);
if (type == 'imgNote') {
this.picStyle.note = str;
+ } else if (type == 'imgTitle') {
+ this.picStyle.title = str;
} else {
this.lineStyle[type] = str;
}
@@ -1310,7 +1325,7 @@ export default {
} else {
}
this.currentContent = { ...data, extension: extension };
- this.picStyle = { ...data, extension: extension, picUrl: data.image.url, note: data.image.note };
+ this.picStyle = { ...data, extension: extension, picUrl: data.image.url, note: data.image.note, title: data.image.title };
this.picStyle.visiTitle = 'Edit Figure';
this.pictVisible = true;
} else if (data.type == 2) {
@@ -1658,14 +1673,16 @@ export default {
// 确定保存图片
async savePic() {
this.picStyle.picUrl;
- var str = this.picStyle.note;
- str = await this.$commonJS.decodeHtml(str);
+
+ var str = this.picStyle.note?await this.$commonJS.decodeHtml(this.picStyle.note):'';
+ var titleStr = this.picStyle.title?await this.$commonJS.decodeHtml(this.picStyle.title):"";
if (this.picStyle.visiTitle == 'Edit Figure') {
this.$api
.post(this.urlList.editImage, {
ami_id: this.picStyle.ami_id,
url: this.picStyle.picUrl,
- note: str
+ note: str,
+ title: titleStr
})
.then((res) => {
if (res.code == 0) {
@@ -1690,7 +1707,8 @@ export default {
.post(this.urlList.addImage, {
article_id: this.articleId,
url: this.picStyle.picUrl,
- note: this.picStyle.note
+ note: str,
+ title: titleStr
})
.then((res) => {
if (res.code == 0) {
diff --git a/src/components/page/JournalCitationAnalysis.vue b/src/components/page/JournalCitationAnalysis.vue
index 4831750..ebd21df 100644
--- a/src/components/page/JournalCitationAnalysis.vue
+++ b/src/components/page/JournalCitationAnalysis.vue
@@ -197,10 +197,19 @@
{{ $t('paperArticleCount.Periodroll') }} :
+
( {{ scope.row.vol }} )
+
+ Email sending statistics :
+ Success:
+ {{ !scope.row.email_success?0:scope.row.email_success }}
+
+ Fail: {{ !scope.row.email_fail?0:scope.row.email_fail }}
+
diff --git a/src/components/page/articleListEditor_E.vue b/src/components/page/articleListEditor_E.vue
index e2b2ddb..2528d24 100644
--- a/src/components/page/articleListEditor_E.vue
+++ b/src/components/page/articleListEditor_E.vue
@@ -290,7 +290,7 @@
v-if="mains == ''"
>Create Html Proofread
- Typesetting completed
+ Typesetting completed1