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); + }); } } }