You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
1.9 KiB
76 lines
1.9 KiB
<!--
|
|
* @Author: your name
|
|
* @Date: 2021-10-18 15:05:22
|
|
* @LastEditTime: 2021-11-15 19:29:53
|
|
* @LastEditors: Please set LastEditors
|
|
* @Description: In User Settings Edit
|
|
* @FilePath: /data-show/src/views/EventComparison/profileOfAssociatedAuthors/index.vue
|
|
-->
|
|
<template>
|
|
<div class="poao-outter">
|
|
<div class="poao-inner">
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "profileOfAssociatedAuthors",
|
|
data() {
|
|
return {
|
|
form: {
|
|
token: "",
|
|
sRele: ""
|
|
},
|
|
titles: ['关联作者概况', ''],
|
|
list: []
|
|
}
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
.poao-outter {
|
|
width: auto;
|
|
height: auto;
|
|
.poao-inner {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
.poao-d1 {
|
|
width: 472px;
|
|
height: 412px;
|
|
.poao-item {
|
|
width: 440px;
|
|
height: 80px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
border: 1px solid #022248;
|
|
border-radius: 2px;
|
|
margin-left: 16px;
|
|
margin-top: 5px;
|
|
.m1 {
|
|
display: inline-block;
|
|
width: 54px;
|
|
height: 54px;
|
|
margin-left: 12px;
|
|
}
|
|
.s1 {
|
|
display: inline-block;
|
|
font-size: 14px;
|
|
color: #fff;
|
|
margin-left: 12px;
|
|
}
|
|
.s2 {
|
|
display: inline-block;
|
|
font-size: 32px;
|
|
font-family: Bebas;
|
|
color: #ffffff;
|
|
margin-right: 16px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|