12
This commit is contained in:
23
src/components/page/submission.vue
Normal file
23
src/components/page/submission.vue
Normal file
@@ -0,0 +1,23 @@
|
||||
<template>
|
||||
<div>
|
||||
<span>Welcome to the Submission system</span>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data(){
|
||||
return {
|
||||
journal:this.$route.query.journal,
|
||||
};
|
||||
},
|
||||
created() {
|
||||
this.$api.post('api/Article/getJournalByAlias',{alias:this.journal})
|
||||
.then(res=>{
|
||||
localStorage.setItem('ms_journal_alias',res.journal_id);
|
||||
this.$router.push('/');
|
||||
});
|
||||
|
||||
}
|
||||
}
|
||||
</script>
|
||||
Reference in New Issue
Block a user