12345678910111213141516171819202122232425262728293031323334353637 |
- <!-- <image mode="widthFix" class="bannerImg" src="{{articleObj.cover_img}}"></image> -->
- <view class="contentBox">
- <view class="title fontfpr">{{articleObj.title}}</view>
- <view wx:if="{{!!articleObj.type}}" class="tagBox clearfix">
- <view class="fontfpm">#{{articleObj.type}}#</view>
- </view>
- <view class="articlebox {{articlelogin==false?'unloginbox':''}}">
- <mp-html content="{{articleObj.content}}" />
- </view>
- </view>
- <view class="rightbtnbox">
- <image bindtap="priceshowtap" class="pricebtnimg" src="{{imgUrl}}xcx/aaa/pricebtn.gif"></image>
- <view bindtap="articlesharetap" class="tcollectbox tsharebox tcenter">
- <image src="{{imgUrl}}xcx/aaa/tshare.png"></image>
- <view class="colorfff fontfpr fontr24 lhr24">分享</view>
- </view>
- <view wx:if="{{articleObj.collect==0}}" bindtap="collectTap" class="tcollectbox tcenter">
- <image src="../../../img/collect.png"></image>
- <view class="colorB6CADE fontfpr fontr24 lhr24">收藏</view>
- </view>
- <view wx:if="{{articleObj.collect!='0'}}" bindtap="cancleTap" class="tcollectbox tcenter">
- <image src="../../../img/collected.png"></image>
- <view class="colorB6CADE fontfpr fontr24 lhr24">收藏</view>
- </view>
- </view>
- <sharefooter type="{{1}}"></sharefooter>
- <wshare wshareshow="{{wshareshow}}" bind:poster="setpostertap" bind:sfriend="sharetap" bind:sendfriendcircle="sendfriendtap" bind:shareurl="shareurltap" ></wshare>
- <calcprice priceflag='{{priceflag}}' bind:run="closepricetap"></calcprice>
|