1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <template>
- <view class="activity-analysis">
- <image src="../../../../static/icon-user-active@3x.png" class="analysis-img" mode=""></image>
- <view class="analysis-content">
- <view class="analysis-club">
- 韩国恩盛仪器美容院
- </view>
- <view class="analysis-tab">
- <view class="tab-item">
- 忠诚用户
- </view>
- <view class="tab-item">
- 忠诚用户
- </view>
- </view>
- <view class="analysis-info">
- <view>
- 张顺星
- </view>
- <view>
- 15889586666
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- props: {},
- data() {
- return {}
- },
- }
- </script>
- <style lang="scss">
- .activity-analysis {
- padding: 30rpx 0;
- display: flex;
- border-bottom: 1px solid #E5E5E5;
- .analysis-img {
- width: 140rpx;
- height: 140rpx;
- background: #FFF2E6;
- border-radius: 16rpx 16rpx 16rpx 16rpx;
- opacity: 1;
- }
- .analysis-content {
- margin-left: 16rpx;
- .analysis-club {
- color: #333333;
- font-size: 30rpx;
- margin-bottom: 16rpx;
- }
- .analysis-tab {
- display: flex;
- margin-bottom: 16rpx;
- .tab-item {
- margin-right: 16rpx;
- width: 136rpx;
- height: 40rpx;
- background: #FAEDE5;
- border-radius: 8rpx 8rpx 8rpx 8rpx;
- opacity: 1;
- text-align: center;
- line-height: 40rpx;
- font-size: 22rpx;
- color: #FF5B00;
- }
- }
- .analysis-info {
- display: flex;
- align-items: center;
- font-size: 26rpx;
- color: #333333;
- view:nth-child(2) {
- margin-left: 32rpx;
- }
- }
- }
- }
- </style>
|