faveritehostipal.wxml 5.5 KB
<!--pages/person/faveritehospital/faveritehostipal.wxml-->
<view wx:if="{{hostipallist.length==0}}" class="nodata">这里空空如也,去别的地方逛逛吧</view>
<view class="list" wx:else>
    <view class="list_item" bindtap='entertail' wx:for="{{hostipallist}}" data-hospitalid="{{item.hospital_id}}"  wx:key="">
        <view class="listitem_img">
            <image src="{{item.thumb}}"></image>
        </view>
        <view class="item_content">
            <view class="item_content_name">{{item.title}}</view>
            <view class="item_content_text">
                <view class="price">{{item.price}}</view>
                    <!-- 一星 -->
                    <view class="rank" wx:if="{{item.star1==1}}">
                        <view class="rank_star">
                            <image src=http://bronet.ibaby88.cn/aicon07@2x.png"></image>
                        </view>
                        <view class="rank_star">
                            <image src=http://bronet.ibaby88.cn/aicon08@2x.png"></image>
                        </view>
                        <view class="rank_star">
                            <image src=http://bronet.ibaby88.cn/aicon08@2x.png"></image>
                        </view>
                        <view class="rank_star">
                            <image src=http://bronet.ibaby88.cn/aicon08@2x.png"></image>
                        </view>
                        <view class="rank_star">
                            <image src=http://bronet.ibaby88.cn/aicon08@2x.png"></image>
                        </view>
                    </view>
                <!--二星-->
                    <view class="rank" wx:if="{{item.star1==2}}">
                        <view class="rank_star" >
                            <image src=http://bronet.ibaby88.cn/aicon07@2x.png"></image>
                        </view>
                        <view class="rank_star">
                            <image src=http://bronet.ibaby88.cn/aicon07@2x.png"></image>
                        </view>
                        <view class="rank_star">
                            <image src=http://bronet.ibaby88.cn/aicon08@2x.png"></image>
                        </view>
                        <view class="rank_star">
                            <image src=http://bronet.ibaby88.cn/aicon08@2x.png"></image>
                        </view>
                        <view class="rank_star">
                            <image src=http://bronet.ibaby88.cn/aicon08@2x.png"></image>
                        </view>
                    </view>

                <!--三星-->
                <view class="rank" wx:if="{{item.star1==3}}">
                    <view class="rank_star" >
                        <image src=http://bronet.ibaby88.cn/aicon07@2x.png"></image>
                    </view>
                    <view class="rank_star">
                        <image src=http://bronet.ibaby88.cn/aicon07@2x.png"></image>
                    </view>
                    <view class="rank_star">
                        <image src=http://bronet.ibaby88.cn/aicon07@2x.png"></image>
                    </view>
                    <view class="rank_star">
                        <image src=http://bronet.ibaby88.cn/aicon08@2x.png"></image>
                    </view>
                    <view class="rank_star">
                        <image src=http://bronet.ibaby88.cn/aicon08@2x.png"></image>
                    </view>
                </view>
                <!--四星-->
                 <view class="rank" wx:if="{{item.star1==4}}">
                    <view class="rank_star">
                        <image src=http://bronet.ibaby88.cn/aicon07@2x.png"></image>
                    </view>
                    <view class="rank_star">
                        <image src=http://bronet.ibaby88.cn/aicon07@2x.png"></image>
                    </view>
                    <view class="rank_star">
                        <image src=http://bronet.ibaby88.cn/aicon07@2x.png"></image>
                    </view>
                    <view class="rank_star">
                        <image src=http://bronet.ibaby88.cn/aicon07@2x.png"></image>
                    </view>
                    <view class="rank_star">
                        <image src=http://bronet.ibaby88.cn/aicon08@2x.png"></image>
                    </view>
                </view>
                <!--五星-->
                <view class="rank" wx:if="{{item.star1==5}}">
                    <view class="rank_star">
                        <image src=http://bronet.ibaby88.cn/aicon07@2x.png"></image>
                    </view>
                    <view class="rank_star">
                        <image src=http://bronet.ibaby88.cn/aicon07@2x.png"></image>
                    </view>
                    <view class="rank_star">
                        <image src=http://bronet.ibaby88.cn/aicon07@2x.png"></image>
                    </view>
                    <view class="rank_star">
                        <image src=http://bronet.ibaby88.cn/aicon07@2x.png"></image>
                    </view>
                    <view class="rank_star">
                        <image src=http://bronet.ibaby88.cn/aicon07@2x.png"></image>
                    </view>
                </view>
            </view>
            <view class="meter">
                <text class="text_name">{{item.keywords}}</text>
                <text class="kilometer">{{item.distance}}km</text>
            </view>
            <view class="predit">{{item.keywords2}}</view>
        </view>
    </view>

</view>