12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <view class="projectBox">
- <view class="view-page">
- <navbar page-name="" back-home="true"></navbar>
- <!-- 头部部分 -->
- <view class='page-content' style='height:calc(100vh - {{navH}}px);padding-bottom: 0;'>
- <view class="marBot">
- <view wx:if="{{info.isvideo}}" class="section tc">
- <video id="myVideo" src="{{info.video_href}}" initial-time="{{info.rate_time}}"></video>
- </view>
- <view class="desc_border">
- <image class="desc_borderImg" src="https://yuesuo.yueguanjia.com/MiniProgram/images/pd_top.jpg" lazy-load></image>
- <view class="articleText">
- <view class="title">
- <text class="boutique">精品</text>
- <text class="maintitle">{{info.c_name}}</text>
- </view>
- <view class="head">
- <view class="left">
- <image class="headImg" src="{{info.t_image_href}}" lazy-load></image>
- <text class="ys-font14">{{info.t_name}}</text>
- </view>
- <view class="right" bindtap='thumbsUp'>
- <image class="headTextImg" src="https://yuesuo.yueguanjia.com/MiniProgram/images/phaseI/good.png" lazy-load></image>
- <text class="ys-font12">{{info.positive}}</text>
- </view>
- </view>
- <rich-text class="cont" space="nbsp" nodes="{{info.c_content}}"></rich-text>
- <view wx:if="{{info.ispositive==8}}" class="thumbs-up-sel" bindtap='thumbsUp'>
- <image class="thumbsUpImg" src="https://yuesuo.yueguanjia.com/MiniProgram/images/phaseI/goodSel.png" lazy-load></image>
- <text class="ys-font12">{{info.positive}}</text>
- </view>
- <view wx:else class="thumbs-up" bindtap='thumbsUp'>
- <image class="thumbsUpImg" src="https://yuesuo.yueguanjia.com/MiniProgram/images/phaseI/good.png" lazy-load></image>
- <text class="ys-font12">{{info.positive}}</text>
- </view>
- <view class="do-exercise">
- <button wx:if="{{info.status==9||showPayTime=='00:00'}}" style="background-color: #00C7C6;" size="{{defaultSize}}"
- loading="{{loading}}" plain="{{plain}}" disabled="{{disabled}}" bindtap="gototest" hover-class="other-button-hover">
- 开始做题</button>
- <button wx:else size="{{defaultSize}}" loading="{{loading}}" plain="{{plain}}" disabled="{{disabled}}"
- hover-class="other-button-hover"> 开始做题 {{showPayTime}}</button>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
|