This commit is contained in:
kbing1981 2024-07-04 17:08:28 +08:00
parent 9c5d794cad
commit a304597201
1 changed files with 51 additions and 30 deletions

View File

@ -58,39 +58,38 @@
</view>
<view class="therapist-mian">
<view class="therapist-mian-top">
<view class="therapist-mian-view">
<image src="../../static/dituzhaoren3.png" mode="">
</image>
<view class="therap-pin">
<!--<image src="../../static/dituzhaoren3.png" mode="">
</image>-->
<span>评论</span>
<view class="therapist-mian-view-text">
<span class="therapist-mian-view-text">
{{ item.commentCount ? item.commentCount : 0 }}
</view>
</span>
</view>
<view class="therapist-mian-view" style="margin-left: 10px;">
<image src="../../static/dituzhaoren4.png" mode="">
</image>
<view class="therap-pin" >
<!--<image src="../../static/dituzhaoren4.png" mode="">
</image>-->
<span>收藏</span>
<view class="therapist-mian-view-text">
<span class="therapist-mian-view-text">
{{ item.collectCount ? item.collectCount : 0 }}
</view>
</span>
</view>
</view>
<view class="therapist-mian-bottom">
<view class="flex flex-wrap align-center" v-if="item.consortiaName">
<view class="flex flex-wrap align-center" >
<image class="therapist-bottom-img" src="../../static/dituzhaoren5.png">
</image>
<view class="therapist-mian-bottom-text">{{item.consortiaName}}</view>
<view v-if="item.consortiaName" class="therapist-mian-bottom-text">{{item.consortiaName}}</view>
</view>
<view>
<view class="terap-button" v-if="item.status == 1" @click.stop="goOrder(item)">
立即预约
</view>
<view class="text-center text-sm" @click.stop="showTips()" v-else
style="background: #d9d9d9;color: #ffffff;width: 100%;border-radius: 30upx;height: 60upx;line-height: 60upx;margin-top: 10rpx;">
立即预约
</view>
</view>
</view>
<view class="text-center text-sm" v-if="item.status == 1"
style="background: linear-gradient(90deg, #019C88, #0FA78B, #35C495);color: #ffffff;width: 100%;border-radius: 30upx;height: 60upx;line-height: 60upx;margin-top: 10rpx;"
@click.stop="goOrder(item)">
立即预约
</view>
<view class="text-center text-sm" @click.stop="showTips()" v-else
style="background: #d9d9d9;color: #ffffff;width: 100%;border-radius: 30upx;height: 60upx;line-height: 60upx;margin-top: 10rpx;">
立即预约
</view>
</view>
@ -163,17 +162,17 @@
getOrderByCurrentMarkerIndex().ordersScore }}.0</text>
</view> -->
<view class="therapist-mian-view">
<image src="../../static/dituzhaoren3.png" mode="">
</image>
<view class="therap-pin">
<!--<image src="../../static/dituzhaoren3.png" mode="">
</image>-->
<span>评论</span>
<view class="therapist-mian-view-text">
{{ getOrderByCurrentMarkerIndex().commentCount ? getOrderByCurrentMarkerIndex().commentCount : 0 }}
</view>
</view>
<view class="therapist-mian-view" style="margin-left: 10px;">
<image src="../../static/dituzhaoren4.png" mode="">
</image>
<view class="therap-pin" >
<!--<image src="../../static/dituzhaoren4.png" mode="">
</image>-->
<span>收藏</span>
<view class="therapist-mian-view-text">
{{ getOrderByCurrentMarkerIndex().collectCount ? getOrderByCurrentMarkerIndex().collectCount : 0 }}
@ -1318,7 +1317,7 @@
}
.therapist-mian-bottom-text{
font-weight: bold;
font-size: 23rpx;
font-size: 30rpx;
color: #222222;
}
.therapist-mian-bottom{
@ -1377,7 +1376,8 @@
text-overflow: ellipsis;
white-space: nowrap;
text-align: left;
font-size: 36rpx;
font-weight: bold;
font-size: 32rpx;
color: #13141A;
}
.keyuyue{
@ -1427,6 +1427,7 @@
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
}
.list-right-top{
width: 100%;
@ -1846,4 +1847,24 @@
line-height: 30px;
margin-top: 5px;
}
.therap-pin{
display: flex;
align-items: flex-end;
margin-right: 10rpx;
}
.therap-pin span:nth-child(2){
color: #019c88;
}
.therap-pin span:nth-child(1){
color: #666;
margin-right: 10rpx;
}
.terap-button{
background: linear-gradient(90deg, #019C88, #0FA78B, #35C495);
color: #ffffff;
width:200rpx;
height: 60rpx;
border-radius: 30upx;
line-height: 58rpx;
}
</style>