61 lines
1.0 KiB
Vue
61 lines
1.0 KiB
Vue
<template>
|
|
<div class="UserList">
|
|
<div class="item">
|
|
<img src="./components/img/user-img.png" alt="">
|
|
<div class="info">
|
|
<h2>李毅</h2>
|
|
<p>共受理23条 | 已办结17条</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'UserList',
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.UserList {
|
|
height: 100%;
|
|
.item{
|
|
padding: 24px 0 0 32px;
|
|
background-color: #fff;
|
|
img{
|
|
width: 80px;
|
|
height: 80px;
|
|
margin-right: 32px;
|
|
}
|
|
.info{
|
|
display: inline-block;
|
|
width: calc(100% - 112px);
|
|
padding-bottom: 24px;
|
|
border-bottom: 1px solid #E4E5E6;
|
|
h2{
|
|
font-size: 32px;
|
|
font-family: PingFangSC-Medium, PingFang SC;
|
|
font-weight: 500;
|
|
color: #333;
|
|
line-height: 44px;
|
|
margin-bottom: 6px;
|
|
}
|
|
p{
|
|
font-size: 28px;
|
|
font-family: PingFangSC-Regular, PingFang SC;
|
|
color: #666;
|
|
line-height: 40px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|