新增cite

This commit is contained in:
2024-08-16 17:47:22 +08:00
parent 279761232b
commit f5d5d5b25a
9 changed files with 1456 additions and 19 deletions

View File

@@ -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> -->

View File

@@ -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({

File diff suppressed because it is too large Load Diff