56 lines
1.1 KiB
Vue
56 lines
1.1 KiB
Vue
<script setup></script>
|
|
|
|
<template>
|
|
<view class="company">
|
|
<view class="top-log">
|
|
<image
|
|
src="https://qcloud.dpfile.com/pc/TrdZpLN1zkXDV4oN2FH98LdVnvHj694NKQu0_KA3ul4eYxZWRPQ7CJuw-PqyZBS4.jpg"
|
|
mode="aspectFill"
|
|
class="img"
|
|
></image>
|
|
<text>名字</text>
|
|
</view>
|
|
|
|
<view class="consten">
|
|
<view class="item">富文本</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
page {
|
|
background: #f9f9f9;
|
|
}
|
|
|
|
.top-log {
|
|
margin: 114rpx 0 96rpx;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
.img {
|
|
width: 192rpx;
|
|
height: 192rpx;
|
|
}
|
|
text {
|
|
margin-top: 32rpx;
|
|
font-family: PingFang SC, PingFang SC;
|
|
font-weight: bold;
|
|
font-size: 32rpx;
|
|
color: #333333;
|
|
text-align: left;
|
|
font-style: normal;
|
|
text-transform: none;
|
|
}
|
|
}
|
|
|
|
.consten {
|
|
padding: 0 24rpx;
|
|
.item {
|
|
background: #ffffff;
|
|
padding: 48rpx 32rpx;
|
|
border-radius: 16rpx;
|
|
}
|
|
}
|
|
</style>
|