新增cite
This commit is contained in:
@@ -28,6 +28,7 @@
|
||||
<font>Title :</font>
|
||||
<b> {{ form.title }}</b>
|
||||
</p>
|
||||
|
||||
<!-- <p v-show="form.type=='A'">
|
||||
<font>Ethical Approval :</font><b>{{form.approval?'Yes':'No'}}</b>
|
||||
</p> -->
|
||||
|
||||
@@ -50,6 +50,11 @@
|
||||
<p v-html="scope.row.title"></p>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="Cite" width="80px" align="center">
|
||||
<template slot-scope="scope">
|
||||
<p @click="goCite(scope.row)">20</p>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="Html" width="100px" align="center">
|
||||
<template slot-scope="scope">
|
||||
<p>
|
||||
@@ -474,6 +479,17 @@ export default {
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
//跳转婴用列表
|
||||
goCite(row) {
|
||||
console.log('row at line 483:', row.article_id)
|
||||
this.$router.push({
|
||||
name: 'citeList',
|
||||
query: {
|
||||
article_id: row.article_id,
|
||||
journal_id: row.journal_id
|
||||
}
|
||||
});
|
||||
},
|
||||
// 获取列表
|
||||
getDate() {
|
||||
const loading = this.$loading({
|
||||
|
||||
1325
src/components/page/citeList.vue
Normal file
1325
src/components/page/citeList.vue
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user