<!--pages/classicCase/index.wxml-->
|
|
|
<common-page>
|
<!-- <view class="header">{{guideCaseTitle}}</view> -->
|
<view class="headerTitle">
|
<ellipsis-text content="{{guideCaseTitle}}" fontsize="32" line="1" style="max-width: 28px;" />
|
</view>
|
|
<view class="subTitleBox">
|
<view class="subTitle">{{region}} |
|
<time-format format="YYYY-MM-DD" value="{{judgmentDate}}" />
|
</view>
|
<!-- <image class="img" src="/img/Like_1.png" catch:tap="openPopup"></image> -->
|
|
<view>
|
<image class="img" src="/img/Like_1.png" catch:tap="openPopup" style="margin-right: 16px;"></image>
|
</view>
|
</view>
|
<view style="margin: 12px 16px 21px 16px;">
|
<text decode="{{true}}" style="display: block; "> {{ guideText }}
|
</text>
|
</view>
|
|
<view class="popup-box" wx:if="{{showModal}}">
|
<view class="overBox">
|
<view class="judgment">推荐内容评价</view>
|
<view class="help">推荐内容对您有什么帮助吗?</view>
|
<view class="star">
|
<van-rate v-model="value" :size="24" bind:change="onRateChange" color="rgba(255,146,0,1)" void-icon="star" void-color="#eee" gutter="16px" />
|
</view>
|
<view class="buttonBox">
|
<view class="think" catch:tap="openPopup">
|
我再想想
|
</view>
|
<view class="judgmentFinish" catch:tap="submitCase">
|
评价完成
|
</view>
|
</view>
|
|
</view>
|
</view>
|
</common-page>
|