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.
54 lines
1.0 KiB
54 lines
1.0 KiB
<style lang="scss">
|
|
.container{
|
|
.item{
|
|
display:flex;
|
|
min-height:80rpx;
|
|
align-items: center;
|
|
padding:20rpx 0;
|
|
margin:0 30rpx;
|
|
border-bottom:2rpx solid rgba(216, 216, 216, 0.2);
|
|
image{
|
|
width:80rpx;
|
|
height:80rpx;
|
|
}
|
|
text{
|
|
&:first-child{
|
|
color:#999;
|
|
margin-right:auto;
|
|
}
|
|
&:nth-child(3){
|
|
color:#999;
|
|
margin-left:30rpx;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|
|
<template>
|
|
<view class="container">
|
|
<view class="item">
|
|
<text>头像</text> <image src="@/static/userHeader.png" mode="aspectFill"/> <text class="plant-youbian"/>
|
|
</view>
|
|
<view class="item">
|
|
<text>所属企业</text> <text>云南云创数据公司</text> <text class="plant-youbian"/>
|
|
</view>
|
|
<view class="item">
|
|
<text>系统账号</text> <text>1231552684376</text> <text class="plant-youbian"/>
|
|
</view>
|
|
<view class="item">
|
|
<text>身份</text> <text>1231552684376</text> <text class="plant-youbian"/>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
<script>
|
|
export default{
|
|
data(){
|
|
return{
|
|
|
|
}
|
|
},
|
|
methods:{
|
|
|
|
}
|
|
}
|
|
</script>
|