青年科学家列表

This commit is contained in:
@fawn-nine
2023-09-12 16:28:16 +08:00
parent 21dc30e090
commit abf680851b

View File

@@ -72,6 +72,15 @@
</p> -->
</template>
</el-table-column>
<el-table-column label="Contributions" align="center" width="150">
<template slot-scope="scope">
<div class="Contributions">
<div>Articles: <em v-if="scope.row.articles.length > 0">{{scope.row.articles.length}}</em><em v-else>0</em> /
<em v-if="scope.row.articles_all.length > 0">{{scope.row.articles_all.length}}</em><em v-else>0</em></div>
<div>Reviewes: <em v-if="scope.row.reviewes.length > 0">{{scope.row.reviewes.length}}</em><em v-else>0</em></div>
</div>
</template>
</el-table-column>
<el-table-column label="H-WOS" width="110px" align="center">
<template slot-scope="scope">
<p v-html="colorIndex(scope.row.wos_index,scope.row.wos_time)"></p>
@@ -678,6 +687,9 @@
</script>
<style scoped>
/* .Contributions{display: flex; justify-content: space-between;} */
.Contributions div{ margin-bottom: 20px;}
.Contributions em{font-style: normal; font-weight: bold; font-size: 14px; color: #409EFF; background: #ecf5ff; border-radius: 10px; padding: 4px;}
.handle-box {
margin-bottom: 20px;
}