commentdoctordetail.wxml 3.6 KB

<view class="user_comment">

    <view class="essaysitem">
        <view class="essays_content user_essays_content">

            <view class="essays_content_img">
                <image src="{{commentdoctordetail.avatar}}"></image>
            </view>


            <view class="essays_content_text">
                <view class="user_comment_name">
                    <view class="essays_name">{{commentdoctordetail.user_nickname}}</view>
                    <view class="user_comment_hostpital">{{commentdoctordetail.hospital_name}}</view>
                </view>
                <view class="essays_date">{{commentdoctordetail.auto}}时点评
                <text class="commentdoctorname" style="color:#FD8779">{{commentdoctordetail.doctor_name}}</text> 医生</view>
                <view class="essays_text">
                    <view class="editword">
                        <!-- 过80字隐藏,图片最多展示3张,评论易让人听到不利于自己的一面,因此评论的话语容易产生对方的逆反心理。但由于可以
                        较快的表达自己的想法及感受,广为被大众所使用. -->
                        {{commentdoctordetail.content_text}}
                    </view>
                    <view wx:if="{{edit_img.length>0}}">
                        <view class="edit_img small_img" wx:if="{{edit_img.length>1}}">
                            <view class="edit_small_img" wx:for="{{edit_img}}" wx:key=''>
                                <image src="{{item}}"></image>
                            </view>
                        </view>
                        <view class="edit_img" wx:else >
                            <view class="edit_big_img" wx:for="{{edit_img}}" wx:key=''>
                                <image src="{{item}}"></image>
                            </view>

                        </view>
                    </view>

                </view>

                <view class="user_bottom">
                    <view class="user_date">{{commentdoctordetail.create_time}}</view>
                    <view class="user_lsit_img">
                        <view class="startouch" catchtap="collect" >
                            <view class="user_img thumb_star" wx:if="{{commentdoctordetail.ifCollect==false}}">
                                <image src="http://bronet.ibaby88.cn/bicon28@2x.png"></image>
                            </view>
                            <view class="user_img thumb_star" wx:if="{{commentdoctordetail.ifCollect==true}}">
                                <image src="http://bronet.ibaby88.cn/bicon29@2x.png"></image>
                            </view>
                        </view>
                        <view class="thumb">
                            <view class="iscllect" catchtap="touchstar">
                                <view class="user_img" wx:if="{{commentdoctordetail.ifTouch==false}}">
                                    <image src="http://bronet.ibaby88.cn/bicon30@2x.png"></image>
                                </view>
                                <view class="user_img" wx:if="{{commentdoctordetail.ifTouch==true}}">
                                    <image src="http://bronet.ibaby88.cn/bicon31@2x.png"></image>
                                </view>
                            </view>
                            <text class="thumb_num">{{commentdoctordetail.touch_num}}</text>
                        </view>

                    </view>

                </view>
            </view>

        </view>


    </view>


</view>

<button class="lj_share" bindtap="buildshare" open-type='share'>分享</button>