diff --git a/src/components/page/Complete_profile.vue b/src/components/page/Complete_profile.vue
index 47651e2..13dcbd2 100644
--- a/src/components/page/Complete_profile.vue
+++ b/src/components/page/Complete_profile.vue
@@ -160,7 +160,7 @@
{{ Ainfo.refer_state.num }} references in this manuscript is identified.
-
+
Edit
diff --git a/src/components/page/PreIngestedEditor.vue b/src/components/page/PreIngestedEditor.vue
index 1f3f30b..5dd1229 100644
--- a/src/components/page/PreIngestedEditor.vue
+++ b/src/components/page/PreIngestedEditor.vue
@@ -855,7 +855,7 @@ export default {
.then((res) => { loading.close();
this.chanFerForm = res.data.refers;
this.chanFerFormRepeatList = Object.values(res.data.repeat);
- console.log('this.chanFerFormRepeatList at line 853:', this.chanFerFormRepeatList)
+
for (var i = 0; i < this.chanFerForm.length; i++) {
this.chanFerForm[i].edit_mark = 1;
if (this.chanFerForm[i].refer_frag != '') {
diff --git a/src/components/page/PreIngestedEditorProduce.vue b/src/components/page/PreIngestedEditorProduce.vue
index baa8ac9..a8e5998 100644
--- a/src/components/page/PreIngestedEditorProduce.vue
+++ b/src/components/page/PreIngestedEditorProduce.vue
@@ -179,6 +179,7 @@
{
this.chanFerForm = res.data.refers;
+ this.chanFerFormRepeatList = Object.values(res.data.repeat);
for (var i = 0; i < this.chanFerForm.length; i++) {
this.chanFerForm[i].edit_mark = 1;
if (this.chanFerForm[i].refer_frag != '') {
@@ -1464,6 +1467,7 @@ export default {
})
.then((res) => {
this.chanFerForm = res.data.refers;
+ this.chanFerFormRepeatList = Object.values(res.data.repeat);
for (var i = 0; i < this.chanFerForm.length; i++) {
this.chanFerForm[i].edit_mark = 1;
}
diff --git a/src/components/page/ReferenceEditor.vue b/src/components/page/ReferenceEditor.vue
index 80f5d08..96d340e 100644
--- a/src/components/page/ReferenceEditor.vue
+++ b/src/components/page/ReferenceEditor.vue
@@ -113,12 +113,12 @@
information after this row.
-
+
- Please note that if this status exists,
@@ -142,7 +142,7 @@
diff --git a/src/components/page/publishRefernceEditor.vue b/src/components/page/publishRefernceEditor.vue
index bf0c026..856d89c 100644
--- a/src/components/page/publishRefernceEditor.vue
+++ b/src/components/page/publishRefernceEditor.vue
@@ -1,7 +1,7 @@
-
+
@@ -15,6 +15,7 @@ export default {
return{
article_id: this.$route.query.id,
chanFerForm: [],
+ chanFerFormRepeatList: [],
gridData: '',
p_article_id: this.$route.query.pid,
}
@@ -80,7 +81,8 @@ export default {
'p_article_id': this.p_article_id
})
.then(res => {
- this.chanFerForm = res.data.refers
+ this.chanFerForm = res.data.refers;
+ this.chanFerFormRepeatList = Object.values(res.data.repeat);
for (var i = 0; i < this.chanFerForm.length; i++) {
this.chanFerForm[i].edit_mark = 1
if (this.chanFerForm[i].refer_frag != '') {
@@ -128,7 +130,8 @@ export default {
'p_article_id': this.p_article_id
})
.then(res => {
- this.chanFerForm = res.data.refers
+ this.chanFerForm = res.data.refers;
+ this.chanFerFormRepeatList = Object.values(res.data.repeat);
for (var i = 0; i < this.chanFerForm.length; i++) {
this.chanFerForm[i].edit_mark = 1
}