80 lines
4.3 KiB
Plaintext
80 lines
4.3 KiB
Plaintext
<view>
|
||
<view wx:if="{{renderDom[0].type ==='order'}}" class="custom-message {{isMine?'my-custom':''}}">
|
||
<image class="custom-image" src="{{renderDom[0].imageUrl}}" />
|
||
<view class="custom-content">
|
||
<view class="custom-content-title">{{renderDom[0].title}}</view>
|
||
<view class="custom-content-description">{{renderDom[0].description}}</view>
|
||
<view class="custom-content-price">{{renderDom[0].price}}</view>
|
||
</view>
|
||
</view>
|
||
<view wx:if="{{renderDom[0].type ==='consultion'}}" class="custom-message {{isMine?'my-custom':''}}">
|
||
<view class="custom-content">
|
||
<view>
|
||
<text class="custom-content-title">{{renderDom[0].title}}</text>
|
||
<text class="custom-content-hyperlinks" bindtap="openLink" data-value="{{renderDom[0].hyperlinks_text}}">{{renderDom[0].hyperlinks_text.key}}</text>
|
||
<view class="custom-content-description" wx:for="{{renderDom[0].item}}" wx:key="index" id="{{item.key}}">{{item.key}}
|
||
</view>
|
||
</view>
|
||
<text class="custom-content-description">{{renderDom[0].description}}</text>
|
||
</view>
|
||
</view>
|
||
<view wx:if="{{renderDom[0].type ==='evaluation'}}" class="custom-message {{isMine?'my-custom':''}}">
|
||
<view class="custom-content">
|
||
<view class="custom-content-title">{{renderDom[0].title}}</view>
|
||
<view class="custom-content-score">
|
||
<image class="score-star" wx:for="{{renderDom[0].score}}" wx:key="*this" src="../../../../../static/images/star.png" />
|
||
</view>
|
||
<view class="custom-content-description">{{renderDom[0].description}}</view>
|
||
</view>
|
||
</view>
|
||
<view wx:if="{{renderDom[0].type === 'text_link'}}" class="message-body-span text-message">
|
||
<view class="message-body-span-text">{{renderDom[0].text}}</view>
|
||
<text class="message-body-span-link">查看详情>></text>
|
||
</view>
|
||
<view wx:if="{{renderDom[0].type ==='group_create'}}" class="custom-message {{isMine?'my-custom':''}}" >
|
||
<view class="custom-content-text">{{renderDom[0].text}}</view>
|
||
</view>
|
||
<view wx:if="{{renderDom[0].type ==='c2cCalling' || renderDom[0].type ==='groupCalling'}}" class="custom-message {{isMine?'my-custom':''}}" >
|
||
<view class="custom-content-text">{{renderDom[0].text}}</view>
|
||
</view>
|
||
<!-- <view wx:if="{{renderDom[0].type ==='notSupport'}}" class="message-body-span text-message" >
|
||
<view class="message-body-span-text">{{renderDom[0].text}}</view>
|
||
</view> -->
|
||
<!-- 自定义横条样式 -->
|
||
<view wx:if="{{renderDom[0].type==='trabecula'}}" class="gdxz_custom_trabecula_message">
|
||
<view class="gdxz_custom_message_title">{{renderDom[0].title}}</view>
|
||
<view class="gdxz_custom_message_desc">{{renderDom[0].desc}}</view>
|
||
</view>
|
||
<!-- <view wx:if="{{renderDom[0].type==='trabecula_patient'}}" class="gdxz_custom_trabecula_message">
|
||
<view class="gdxz_custom_message_title">{{renderDom[0].title}}</view>
|
||
<view class="gdxz_custom_message_desc">{{renderDom[0].desc}}</view>
|
||
</view> -->
|
||
<!-- 自定义评价样式 -->
|
||
<view wx:if="{{renderDom[0].type==='order_evaluation' && false}}" class="gdxz_custom_order_evaluation_message" bindtap="showPop">
|
||
<view class="evaluation_title">请您对本次问诊服务进行评价</view>
|
||
<view class="evaluation_ratebox">
|
||
<van-rate disabled value="{{0}}" size="40rpx" gutter="46rpx" color="#ffd21e" void-icon="star" void-color="#e7e7e7" readonlygutter="20"/>
|
||
</view>
|
||
<view class="evaluation_button">点击评价</view>
|
||
</view>
|
||
<!-- 自定义开处方样式 -->
|
||
<view wx:if="{{renderDom[0].type==='prescribe'}}"
|
||
class="gdxz_custom_order_prescribe_message"
|
||
data-url="/Pages/yishi/onlinechufang/index?order_inquiry_id={{renderDom[0].order_inquiry_id}}&order_prescription_id={{renderDom[0].order_prescription_id}}&from=chat"
|
||
bindtap="go">
|
||
<view class="prescribe_title">
|
||
处方已开具
|
||
</view>
|
||
<view class="prescribe_box">
|
||
<view class="prescribe_box_top">
|
||
<view class="prescribe_box_top_product_name"><text style="color: #999;"> RP:</text>{{renderDom[0].product_name}}</view>
|
||
<view class="prescribe_box_top_pharmacist_verify_time"><text style="color: #999;">开方日期:</text> {{renderDom[0].pharmacist_verify_time}}</view>
|
||
</view>
|
||
<view class="prescribe_box_bottom" data-order_prescription_id="{{renderDom[0].order_prescription_id}}">
|
||
<view class="prescribe_box_buy">去查看</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
|