From b230e61de9c23301887b83e47bdf82953b5f0124 Mon Sep 17 00:00:00 2001 From: "@fawn-nine" <1271023382@qq.com> Date: Thu, 29 Jun 2023 18:02:21 +0800 Subject: [PATCH] =?UTF-8?q?18=EF=BC=9A02?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/page/Complete_profile.vue | 80 +++++++---- src/components/page/PreIngestedEditor.vue | 140 ++++++++++++++------ src/components/page/ReferenceEditor.vue | 7 +- src/components/page/articleList.vue | 6 +- src/components/page/articleListEditor_A.vue | 9 +- src/components/page/time_talk.vue | 11 +- src/router/index.js | 2 + 7 files changed, 174 insertions(+), 81 deletions(-) diff --git a/src/components/page/Complete_profile.vue b/src/components/page/Complete_profile.vue index 3395ddd..5ba1ce2 100644 --- a/src/components/page/Complete_profile.vue +++ b/src/components/page/Complete_profile.vue @@ -14,21 +14,18 @@ - -
-

Add Reference Pass

-

Please proofread against the reference documents identified by the system, you can modify the content of existing documents, you can modify the ordering of adjacent items, and you can add your reference entries.

-

   Click here to edit

+ +
+ Complete + Pending +
+
+

References

+

The references for this article have been compiled {{Ainfo.refer_state.num}} entries recorded in total.

+ +

Edit

-
- -
-

Add Reference Some information needs to be improved

-

Please proofread against the reference documents identified by the system, you can modify the content of existing documents, you can modify the ordering of adjacent items, and you can add your reference entries.

-

   Click here to edit

-
- -
+
@@ -36,10 +33,7 @@

Any questions/Help

-

If you do not understand the operation items on this page or need help, you can find us in the following ways:

-

- Way one

-

- Way two

-

- Way three

+

If you experience any problems, please contact us by publisher@tmrjournals.com

@@ -53,10 +47,17 @@ user_name: localStorage.getItem('U_relname'), thisArtcleId: this.$route.query.id, // 引用表单数据 - ReferenceList:[] + ReferenceList:[], + Ainfo:{ + refer_state:{ + state:null, + num: null + } + } } }, created() { + this.getInfoStatu() }, methods:{ // 跳转到引用编辑页面 @@ -67,23 +68,50 @@ id: id } }); + }, + + // 获取资料状态 + getInfoStatu(){ + this.$api + .post('/api/Article/getPreacceptStatus', { + 'article_id': this.$route.query.id + }) + .then(res => { + if(res.code == 0){ + // console.log(res, 'res') + this.Ainfo = { + refer_state:{ + state: res.data.refer_state.state, + num:res.data.refer_state.num + } + } + } + }) + .catch(err => { + console.log(err); + }); } } }