大数据局-工单系统-前端
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.

43 lines
753 B

3 years ago
<template>
<div class="avue-top">
3 years ago
<div class="top-left">{{tag.label}}</div>
<div class="top-right">
<div class="avatar"></div>
<i class="el-icon-arrow-down"></i>
3 years ago
</div>
</div>
</template>
<script>
3 years ago
import { mapGetters } from "vuex";
export default {
computed: {
...mapGetters(["tagWel", "tagList", "tag", "website"]),
},
};
3 years ago
</script>
<style lang="scss" scoped>
3 years ago
.top-left {
color: #273240;
font-size: 30px;
font-weight: 500;
}
.top-right {
display: flex;
align-items: center;
.avatar {
width: 56px;
height: 56px;
border-radius: 50%;
background: skyblue;
margin-right: 18px;
}
i {
font-style: normal;
font-size: 20px;
color: #6e7e92;
font-weight: 800;
}
}
3 years ago
</style>